
if (document.images) {

            toc1on = new Image();   toc1on.src = "images/buttons/home_on.gif";
            toc1off = new Image();  toc1off.src = "images/buttons/home_off.gif";

            toc2on = new Image();   toc2on.src = "images/buttons/compliance_on.gif";
            toc2off = new Image();  toc2off.src = "images/buttons/compliance_off.gif";

            toc3on = new Image();   toc3on.src = "images/buttons/msds_documents_on.gif";
            toc3off = new Image();  toc3off.src = "images/buttons/msds_documents_off.gif";

            toc4on = new Image();   toc4on.src = "images/buttons/conferences_on.gif";
            toc4off = new Image();  toc4off.src = "images/buttons/conferences_off.gif";
         
            toc5on = new Image();   toc5on.src = "images/buttons/catalog_on.gif";
            toc5off = new Image();  toc5off.src = "images/buttons/catalog_off.gif";
         
            toc6on = new Image();   toc6on.src = "images/buttons/specials_on.gif";
            toc6off = new Image();  toc6off.src = "images/buttons/specials_off.gif";
            
            toc7on = new Image();   toc7on.src = "images/buttons/about_us_on.gif";
            toc7off = new Image();  toc7off.src = "images/buttons/about_us_off.gif";

            toc8on = new Image();   toc8on.src = "images/buttons/contact_us_on.gif";
            toc8off = new Image();  toc8off.src = "images/buttons/contact_us_off.gif";

            toc9on = new Image();   toc9on.src = "images/buttons/links_on.gif";
            toc9off = new Image();  toc9off.src = "images/buttons/links_off.gif";

            toc10on = new Image();   toc10on.src = "images/buttons/epedigree_on.gif";
            toc10off = new Image();  toc10off.src = "images/buttons/epedigree_off.gif";

            toc11on = new Image();   toc11on.src = "images/buttons/careers_on.gif";
            toc11off = new Image();  toc11off.src = "images/buttons/careers_off.gif";

            toc12on = new Image();   toc12on.src = "images/buttons/order_online_on.gif";
            toc12off = new Image();  toc12off.src = "images/buttons/order_online_off.gif";

            }

    function img_act(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "on.src");       
            }
    }

    function img_inact(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "off.src");        
            }
    }
