<!-- hide script from old browsers
//Image Flipper for Menu
//PreLoad Graphics
{

//These are the large images
OFF= new Image();
OFF.src = "graphics/all_off.gif";
ON1 = new Image();
ON1.src = "graphics/over1.gif";
ON2 = new Image();
ON2.src = "graphics/over2.gif";
ON3 = new Image();
ON3.src = "graphics/over3.gif";
ON4 = new Image();
ON4.src = "graphics/over4.gif";
ON5 = new Image();
ON5.src = "graphics/over5.gif";


}

//This is the function that calls for
//the change in the buttons


function imageChange(imageID,imageName,MenuName,MenuH,MenuW){
	document.images[imageID].src = eval(imageName + ".src");

	if (MenuName!="false") {
		window.FW_showMenu(MenuName,MenuH,MenuW);
	}
}


function changeout(imageID,imageName,MenuBool) {

document.images[imageID].src = eval(imageName + ".src");
if ([MenuBool]=='True'){	
FW_startTimeout();
}
}

-->

