

function mouseover(el, status) {
	if (status) { el.className = 'rowHover'; }
	else { el.className = ''; }
}




function swapImage(theImage, status) {
	var theSource = theImage.getAttribute('src');
	if (status) { var theNewSource = theSource.replace ('_off.jpg', '_on.jpg'); }
	else { var theNewSource = theSource.replace ('_on.jpg', '_off.jpg'); }
	theImage.src = theNewSource;
}



