<!--hide from old browsers
/********************************************************************************************************
Preloading images: we create an image object, then we give it a gif or jpeg source file.
This file will be loaded into the cache of the browser, which will enable its instant display when it is requested.
The default directory of the images is "images/". Modify the file path if necessary.
********************************************************************************************************/
if (document.images) {
	var Homeoff = new Image();
	Homeoff.src = "images/menuhome.gif";
	var Homeon = new Image();
	Homeon.src =  "images/menuhome2.gif";
	var Corporateoff = new Image();
	Corporateoff.src = "images/menucorporate.gif";
	var Corporateon = new Image();
	Corporateon.src =  "images/menucorporate2.gif";
	var Equipmentoff = new Image();
	Equipmentoff.src = "images/menuequipment.gif";
	var Equipmenton = new Image();
	Equipmenton.src =  "images/menuequipment2.gif";
	var Clientsoff = new Image();
	Clientsoff.src = "images/menuclient.gif";
	var Clientson = new Image();
	Clientson.src =  "images/menuclient2.gif";
	var Projectsoff = new Image();
	Projectsoff.src = "images/menuprojects.gif";
	var Projectson = new Image();
	Projectson.src =  "images/menuprojects2.gif";
	var Productsoff = new Image();
	Productsoff.src = "images/menuproducts.gif";
	var Productson = new Image();
	Productson.src =  "images/menuproducts2.gif";
	var Marineoff = new Image();
	Marineoff.src = "images/menumarine.gif";
	var Marineon = new Image();
	Marineon.src =  "images/menumarine2.gif";
	var Foundationsoff = new Image();
	Foundationsoff.src = "images/menufoundations.gif";
	var Foundationson = new Image();
	Foundationson.src =  "images/menufoundations2.gif";
	var Bridgesoff = new Image();
	Bridgesoff.src = "images/menubridges.gif";
	var Bridgeson = new Image();
	Bridgeson.src =  "images/menubridges2.gif";
	var Buildingsoff = new Image();
	Buildingsoff.src = "images/menubuildings.gif";
	var Buildingson = new Image();
	Buildingson.src =  "images/menubuildings2.gif";
	var Contactoff = new Image();
	Contactoff.src = "images/menucontact.gif";
	var Contacton = new Image();
	Contacton.src =  "images/menucontact2.gif";
}

/********************************************************************************************************
Rollover functions
********************************************************************************************************/
function getOff(nom)
	{
	if (document.images) {
		document.images[nom].src = eval(nom + 'off').src;
	}
}
function getOn(nom)
	{
	if (document.images) {
		document.images[nom].src = eval(nom + 'on').src;
	}
}
function getDown(nom)
	{
	if (document.images) {
		document.images[nom].src = eval(nom + 'down').src;
	}
}

//-->