// rollovers

if (document.images) {  //Active images
	cipon = new Image();
	cipon.src = "/images/ind_CIP_on.gif";
	
	processon = new Image();
	processon.src = "/images/ind_Process_on.gif";
	
	componentson = new Image();
	componentson.src = "/images/ind_Components_on.gif";
	
	herculeson = new Image();
	herculeson.src = "/images/ind_Hercules_on.gif";
	
	abouton = new Image();
	abouton.src = "/images/ind_about_on.gif";
	
	contacton = new Image();
	contacton.src = "/images/ind_contact_on.gif";
	
	spanishon = new Image();
	spanishon.src = "/images/ind_spanish_on.gif";
	////////////////////////////////////////////
	cipoff = new Image();
	cipoff.src = "/images/ind_CIP.gif";
	
	processoff = new Image();
	processoff.src = "/images/ind_Process.gif";
	
	componentsoff = new Image();
	componentsoff.src = "/images/ind_Components.gif";
	
	herculesoff = new Image();
	herculesoff.src = "/images/ind_Hercules.gif";
	
	aboutoff = new Image();
	aboutoff.src = "/images/ind_about.gif";
	
	contactoff = new Image();
	contactoff.src = "/images/ind_contact.gif";
	
	spanishoff = new Image();
	spanishoff.src = "/images/ind_spanish.gif";
}
	
	//Function to 'activate images
	function imgOn(imgName) {
		if (document.images) {
				document[imgName].src=eval(imgName + "on.src");
		}
	}
	
	//Function to 'deactivate images
	function imgOff(imgName) {
		if (document.images) {
				document[imgName].src=eval(imgName + "off.src");
		}
	}