
<!-- hide script from old browsers
//Image Flipper for Menu
//PreLoad Graphics
{

//These are the large graphics
OFF1= new Image();
OFF1.src = "graphics/menu/upholstery_off.gif";
ON1 = new Image();
ON1.src = "graphics/menu/upholstery_on.gif";
OFF2 = new Image();
OFF2.src = "graphics/menu/headboards_off.gif";
ON2 = new Image();
ON2.src = "graphics/menu/headboards_on.gif";
OFF3 = new Image();
OFF3.src = "graphics/menu/fabrics_off.gif";
ON3 = new Image();
ON3.src = "graphics/menu/fabrics_on.gif";
OFF4 = new Image();
OFF4.src = "graphics/menu/environment_off.gif";
ON4 = new Image();
ON4.src = "graphics/menu/environment_on.gif";
OFF5 = new Image();
OFF5.src = "graphics/menu/classes_off.gif";
ON5 = new Image();
ON5.src = "graphics/menu/classes_on.gif";
OFF6 = new Image();
OFF6.src = "graphics/menu/aboutus_off.gif";
ON6 = new Image();
ON6.src = "graphics/menu/aboutus_on.gif";
OFF7 = new Image();
OFF7.src = "graphics/menu/contact_off.gif";
ON7 = new Image();
ON7.src = "graphics/menu/contact_on.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();
}
}

-->
