// JavaScript Document

             
	if (document.images) {

        b0on = new Image();
		b0on.src = "images/nav_home_on.gif";
		b0off = new Image();
		b0off.src = "images/nav_home.gif";

        b1on = new Image();
		b1on.src = "images/nav_products_on.gif";
		b1off = new Image();
		b1off.src = "images/nav_products.gif";

        b2on = new Image();
		b2on.src = "images/nav_catalog_on.gif";
		b2off = new Image();
		b2off.src = "images/nav_catalog.gif";


        b3on = new Image();
		b3on.src = "images/nav_contact_on.gif";
		b3off = new Image();
		b3off.src = "images/nav_contact.gif";

        b4on = new Image();
		b4on.src = "images/nav_faq_on.gif";
		b4off = new Image();
		b4off.src = "images/nav_faq.gif";

        b5on = new Image();
		b5on.src = "images/nav_links_on.gif";
		b5off = new Image();
		b5off.src = "images/nav_links.gif";


	}

     function imgover(imgName) {
             if (document.images) {
             imgOn = eval(imgName + "on.src");
             document [imgName].src = imgOn;
             }
     }

     function imgidle(imgName) {
             if (document.images) {
             imgOff = eval(imgName + "off.src");
             document [imgName].src = imgOff;
             }
     }
