
/*rollover function*/
function swapImage(img, bOn)
{
	img.src  = bOn ? img.src.replace(".gif", "_over.gif") : img.src.replace("_over.gif", ".gif");
	
}
/*
<img src="menu1.gif" onmouseover="swapImage(this, true; onmouseout="swapImage(this, false);">
																			  */
