<!--
//rollovers...

if(document.images) {
     
		
		tophomeoff = new Image();
		tophomeoff.src = "../images/buttons/tophome_off.gif";
		tophomeon = new Image();
		tophomeon.src = "../images/buttons/tophome_on.gif";
				
		topaboutusoff = new Image();
		topaboutusoff.src = "../images/buttons/topaboutus_off.gif";
		topaboutuson = new Image();
   	        topaboutuson.src = "../images/buttons/topaboutus_on.gif";
				
		topgalleryoff = new Image();
		topgalleryoff.src = "../images/buttons/topgallery_off.gif";
		topgalleryon = new Image();
		topgalleryon.src = "../images/buttons/topgallery_on.gif";
		
                toploginoff = new Image();
		toploginoff.src = "../images/buttons/toplogin_off.gif";
		toploginon = new Image();
		toploginon.src = "../images/buttons/toplogin_on.gif";
		  		
                topcontactusoff = new Image();
		topcontactusoff.src = "../images/buttons/topcontactus_off.gif";
		topcontactuson = new Image();
		topcontactuson.src = "../images/buttons/topcontactus_on.gif";

                homeoff = new Image();
		homeoff.src = "../images/buttons/home_off.gif";
		homeon = new Image();
		homeon.src = "../images/buttons/home_on.gif";
				
		aboutusoff = new Image();
		aboutusoff.src = "../images/buttons/aboutus_off.gif";
		aboutuson = new Image();
   	        aboutuson.src = "../images/buttons/aboutus_on.gif";
				
		galleryoff = new Image();
		galleryoff.src = "../images/buttons/gallery_off.gif";
		galleryon = new Image();
		galleryon.src = "../images/buttons/gallery_on.gif";
		
                loginoff = new Image();
		loginoff.src = "../images/buttons/login_off.gif";
		loginon = new Image();
		loginon.src = "../images/buttons/login_on.gif";
		  		
                contactusoff = new Image();
		contactusoff.src = "../images/buttons/contactus_off.gif";
		contactuson = new Image();
		contactuson.src = "../images/buttons/contactus_on.gif";

                quoteoff = new Image();
		quoteoff.src = "../images/buttons/quote_off.gif";
		quoteon = new Image();
		quoteon.src = "../images/buttons/quote_on.gif";

}

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