        if (document.images) {         					   // Active Images

            img1on = new Image();
            img1on.src = "http://talasonline.net/img/pages/topnav1_cs_x.gif";
            img2on = new Image();
            img2on.src = "http://talasonline.net/img/pages/topnav2_terms_x.gif";
            img3on = new Image();
            img3on.src = "http://talasonline.net/img/pages/topnav3_cart_x.gif";
			img4on = new Image();
            img4on.src = "http://talasonline.net/img/pages/topnav4_account_x.gif";
            img5on = new Image();
            img5on.src = "http://talasonline.net/img/pages/nav1_kits_on.gif";
            img6on = new Image();
            img6on.src = "http://talasonline.net/img/pages/nav1_listing_on.gif";
			img7on = new Image();
            img7on.src = "http://talasonline.net/img/pages/nav1_newsletter_on.gif";
			img8on = new Image();
            img8on.src = "http://talasonline.net/img/pages/nav1_catalog_on.gif";
			img9on = new Image();
            img9on.src = "http://talasonline.net/img/pages/topnav5_privacy_x.gif";
			img10on = new Image();
            img10on.src = "http://talasonline.net/img/pages/topnav6_home_x.gif";
			img11on = new Image();
            img11on.src = "http://talasonline.net/img/pages/nav1_products_on.gif";
			img12on = new Image();
			img12on.src = "http://talasonline.net/img/pages/topnav12_aboutus_x.gif";
			img13on = new Image();
            img13on.src = "http://talasonline.net/img/pages/nav1_blog_on.gif";


            img1off = new Image(); 	
            img1off.src = "http://talasonline.net/img/pages/topnav1_cs.gif";
            img2off = new Image(); 	
            img2off.src = "http://talasonline.net/img/pages/topnav2_terms.gif";
            img3off = new Image();
            img3off.src = "http://talasonline.net/img/pages/topnav3_cart.gif";
			img4off = new Image(); 		
            img4off.src = "http://talasonline.net/img/pages/topnav4_account.gif";
            img5off = new Image(); 	
            img5off.src = "http://talasonline.net/img/pages/nav1_kits.gif";
            img6off = new Image();
            img6off.src = "http://talasonline.net/img/pages/nav1_listing.gif";
			img7off = new Image();
            img7off.src = "http://talasonline.net/img/pages/nav1_newsletter.gif";
			img8off = new Image();
            img8off.src = "http://talasonline.net/img/pages/nav1_catalog.gif";
			img9off = new Image();
            img9off.src = "http://talasonline.net/img/pages/topnav5_privacy.gif";
			img10off = new Image();
            img10off.src = "http://talasonline.net/img/pages/topnav6_home.gif";
			img11off = new Image();
            img11off.src = "http://talasonline.net/img/pages/nav1_products.gif";
			img12off = new Image();
			img12off.src = "http://talasonline.net/img/pages/topnav12_aboutus.gif";
			img13off = new Image();
			img13off.src = "http://talasonline.net/img/pages/nav1_blog.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");
        }
}