<!--
if (document.images) {

        home_on = new Image(); home_on.src = "../images/buttons/home_on.gif";
        home_off = new Image(); home_off.src = "../images/buttons/home_off.gif";
        product_on = new Image(); product_on.src = "../images/buttons/product_on.gif";
        product_off = new Image(); product_off.src = "../images/buttons/product_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";
        order_on = new Image(); order_on.src = "../images/buttons/order_on.gif";
        order_off = new Image(); order_off.src = "../images/buttons/order_off.gif";
        register_on = new Image(); register_on.src = "../images/buttons/register_on.gif";
        register_off = new Image(); register_off.src = "../images/buttons/register_off.gif";
        login_on = new Image(); login_on.src = "../images/buttons/login_on.gif";
        login_off = new Image(); login_off.src = "../images/buttons/login_off.gif";
        itinerary_on = new Image(); itinerary_on.src = "../images/buttons/itinerary_on.gif";
        itinerary_off = new Image(); itinerary_off.src = "../images/buttons/itinerary_off.gif";
        report_on = new Image(); report_on.src = "../images/buttons/report_on.gif";
        report_off = new Image(); report_off.src = "../images/buttons/report_off.gif";
        lost_on = new Image(); lost_on.src = "../images/buttons/lost_on.gif";
        lost_off = new Image(); lost_off.src = "../images/buttons/lost_off.gif";
        policies_on = new Image(); policies_on.src = "../images/buttons/policies_on.gif";
        policies_off = new Image(); policies_off.src = "../images/buttons/policies_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");
                }
        }
      //-->
