if (document.images) { 

	homeon = new Image();      
	homeon.src = "/images/homeOver_38x25.gif";
	homeoff = new Image(); 
	homeoff.src = "/images/home_38x25.gif";

	productson = new Image();      
	productson.src = "/images/productsOver_58x25.gif";
	productsoff = new Image(); 
	productsoff.src = "/images/products_58x25.gif";

	serviceson = new Image();      
	serviceson.src = "/images/servicesOver_58x25.gif";
	servicesoff = new Image(); 
	servicesoff.src = "/images/services_58x25.gif";

	whatsNewon = new Image();      
	whatsNewon.src = "/images/whatsNewOver_83x25.gif";
	whatsNewoff = new Image(); 
	whatsNewoff.src = "/images/whatsNew_83x25.gif";

	contactUson = new Image();      
	contactUson.src = "/images/contactUsOver_76x25.gif";
	contactUsoff = new Image(); 
	contactUsoff.src = "/images/contactUs_76x25.gif";

	abouton = new Image();      
	abouton.src = "/images/aboutUsOver_55x25.gif";
	aboutoff = new Image(); 
	aboutoff.src = "/images/aboutUs_55x25.gif";

}

function imgOn(imgName) {

	if (document.images)
		document[imgName].src = eval(imgName + "on.src");
}

function imgOff(imgName) {

	if (document.images)
		document[imgName].src = eval(imgName + "off.src");
}

function show(c) { 

	if (document.getElementById && document.getElementById(c)!= null) 
		node = document.getElementById(c).style.display=''; 
	else if (document.layers && document.layers[c]!= null) 
		document.layers[c].display = ''; 
	else if (document.all) 
		document.all[c].style.display = ''; 
} 

function hide(c) { 

	if (document.getElementById && document.getElementById(c)!= null) 
		node = document.getElementById(c).style.display='none'; 
	else if (document.layers && document.layers[c]!= null) 
		document.layers[c].display = 'none'; 
	else if (document.all) 
		document.all[c].style.display = 'none'; 
}