<!--
//rollovers...

if(document.images) {
     
		
		aboutusoff = new Image();
		aboutusoff.src = "images/buttons/aboutus_off.gif";
		aboutuson = new Image();
		aboutuson.src = "images/buttons/aboutus_on.gif";
				
		productsoff = new Image();
		productsoff.src = "images/buttons/products_off.gif";
		productson = new Image();
      productson.src = "images/buttons/products_on.gif";

      shopsoff = new Image();
		shopsoff.src = "images/buttons/shops_off.gif";
		shopson = new Image();
      shopson.src = "images/buttons/shops_on.gif";
				
		wholesaleoff = new Image();
		wholesaleoff.src = "images/buttons/wholesale_off.gif";
		wholesaleon = new Image();
		wholesaleon.src = "images/buttons/wholesale_on.gif";
		
      contractoff = new Image();
		contractoff.src = "images/buttons/contract_off.gif";
		contracton = new Image();
		contracton.src = "images/buttons/contract_on.gif";

      peopleoff = new Image();
		peopleoff.src = "images/buttons/people_off.gif";
		peopleon = new Image();
		peopleon.src = "images/buttons/people_on.gif";
		
	 vacanciesoff = new Image();
		vacanciesoff.src = "images/buttons/vacancies_off.gif";
		vacancieson = new Image();
		vacancieson.src = "images/buttons/vacancies_on.gif";

		  		
      contactusoff = new Image();
		contactusoff.src = "images/buttons/contactus_off.gif";
		contactuson = new Image();
		contactuson.src = "images/buttons/contactus_on.gif";

}

function onoff(imgName,state) {
        if(document.images) {               
		document.images[imgName].src = eval(imgName+state+".src");
        }
}         
//-->