var base="http://lakeviewind.thomasnet.com/ImgCustom/1001/"

        if (document.images) {
            homeon = new Image();             homeon.src = base + "topnav_home_on.gif";
			quoteon = new Image();            quoteon.src = base + "topnav_quote_on.gif";
			contacton = new Image();          contacton.src = base + "topnav_contactus_on.gif";
			testimonialson = new Image();     testimonialson.src = base + "topnav_testimonials_on.gif";
			qualityon = new Image();          qualityon.src = base + "topnav_quality_on.gif";
			marketson = new Image();          marketson.src = base + "topnav_markets_on.gif";
			abouton = new Image();            abouton.src = base + "topnav_aboutus_on.gif";
			catalogon = new Image();          catalogon.src = base + "topnav_catalog_on.gif";
            
            homeoff = new Image();            homeoff.src = base + "topnav_home_off.gif";
			quoteoff = new Image();           quoteoff.src = base + "topnav_quote_off.gif";
			contactoff = new Image();         contactoff.src = base + "topnav_contactus_off.gif";
			testimonialsoff = new Image();    testimonialsoff.src = base + "topnav_testimonials.gif";
			qualityoff = new Image();         qualityoff.src = base + "topnav_quality_off.gif";
			marketsoff = new Image();         marketsoff.src = base + "topnav_markets_off.gif";
			aboutoff = new Image();           aboutoff.src = base + "topnav_aboutus_off.gif";
			catalogoff = new Image();         catalogoff.src = base + "topnav_catalog_off.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");        
            }
            
    }
