<!--
if (document.images) {

        custom_off = new Image(); custom_off.src = "../images/buttons/custom_off.gif";
        custom_on = new Image(); custom_on.src = "../images/buttons/custom_on.gif";
        lost_off = new Image(); lost_off.src = "../images/buttons/lost_off.gif";
        lost_on = new Image(); lost_on.src = "../images/buttons/lost_on.gif";
        info_on = new Image(); info_on.src = "../images/buttons/info_on.gif";
        info_off = new Image(); info_off.src = "../images/buttons/info_off.gif";
        faq_on = new Image(); faq_on.src = "../images/buttons/faq_on.gif";
        faq_off = new Image(); faq_off.src = "../images/buttons/faq_off.gif";
        catalog_on = new Image(); catalog_on.src = "../images/buttons/catalog_on.gif";
        catalog_off = new Image(); catalog_off.src = "../images/buttons/catalog_off.gif";
        contact_on = new Image(); contact_on.src = "../images/buttons/contact_on.gif";
        contact_off = new Image(); contact_off.src = "../images/buttons/contact_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");
                }
        }
      //-->
