<!-- 
var active = "none";
var current = " ";
browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
        if (browser) {
            distron = new Image();
            distron.src = "../images/global/sidemenu/distr_over.gif";
  			distroff = new Image();
            distroff.src = "../images/global/sidemenu/distr.gif";
			
			ringcon = new Image();
            ringcon.src = "../images/global/sidemenu/ringc_over.gif";
  			ringcoff = new Image();
            ringcoff.src = "../images/global/sidemenu/ringc.gif";
			
			semicon = new Image();
            semicon.src = "../images/global/sidemenu/semic_over.gif";
  			semicoff = new Image();
            semicoff.src = "../images/global/sidemenu/semic.gif";
			
			induson = new Image();
            induson.src = "../images/global/sidemenu/indus_over.gif";
  			indusoff = new Image();
            indusoff.src = "../images/global/sidemenu/indus.gif";
			
			wateron = new Image();
            wateron.src = "../images/global/sidemenu/water_over.gif";
  			wateroff = new Image();
            wateroff.src = "../images/global/sidemenu/water.gif";
			
			poweron = new Image();
            poweron.src = "../images/global/sidemenu/power_over.gif";
  			poweroff = new Image();
            poweroff.src = "../images/global/sidemenu/power.gif";
			
			acon = new Image();
            acon.src = "../images/global/sidemenu/ac_over.gif";
  			acoff = new Image();
            acoff.src = "../images/global/sidemenu/ac.gif";
			
			homeon = new Image();
            homeon.src = "../images/global/home_over.jpg";
  			homeoff = new Image();
            homeoff.src = "../images/global/home.jpg";
			
			abouton = new Image();
            abouton.src = "../images/global/about_over.jpg";
  			aboutoff = new Image();
            aboutoff.src = "../images/global/about.jpg";
			
			productson = new Image();
            productson.src = "../images/global/products_over.jpg";
  			productsoff = new Image();
            productsoff.src = "../images/global/products.jpg";
			
			sitemapon = new Image();
            sitemapon.src = "../images/global/sitemap_over.jpg";
  			sitemapoff = new Image();
            sitemapoff.src = "../images/global/sitemap.jpg";
			
			contacton = new Image();
            contacton.src = "../images/global/contact_over.jpg";
  			contactoff = new Image();
            contactoff.src = "../images/global/contact.jpg";
			
			faqon = new Image();
            faqon.src = "../images/global/faq_over.jpg";
  			faqoff = new Image();
            faqoff.src = "../images/global/faq.jpg";
			
             }

function imgOn(imgName) {
        if (browser) {
                if (active != imgName) {
                        document [imgName].src = eval(imgName + "on.src");
                }
        }
}

function imgOff(imgName) {
        if (browser) {
                if (active != imgName) {
                        document [imgName].src = eval(imgName + "off.src");
                }
        }
}

// -->
