<!--
if (document.images) {

        ehome_on = new Image(); ehome_on.src = "../images/buttons/ehome_on.jpg";
        ehome_off = new Image(); ehome_off.src = "../images/buttons/ehome_off.jpg";
        emplc_on = new Image(); emplc_on.src = "../images/buttons/emplc_on.jpg";
        emplc_off = new Image(); emplc_off.src = "../images/buttons/emplc_off.jpg";
        staff_on = new Image(); staff_on.src = "../images/buttons/staff_on.jpg";
        staff_off = new Image(); staff_off.src = "../images/buttons/staff_off.jpg";
        faq_on = new Image(); faq_on.src = "../images/buttons/faq_on.jpg";
        faq_off = new Image(); faq_off.src = "../images/buttons/faq_off.jpg";
        test_on = new Image(); test_on.src = "../images/buttons/test_on.jpg";
        test_off = new Image(); test_off.src = "../images/buttons/test_off.jpg";
        uevents_on = new Image(); uevents_on.src = "../images/buttons/uevents_on.jpg";
        uevents_off = new Image(); uevents_off.src = "../images/buttons/uevents_off.jpg";
        locations_on = new Image(); locations_on.src = "../images/buttons/locations_on.jpg";
        locations_off = new Image(); locations_off.src = "../images/buttons/locations_off.jpg";
        contact_on = new Image(); contact_on.src = "../images/buttons/contact_on.jpg";
        contact_off = new Image(); contact_off.src = "../images/buttons/contact_off.jpg";
		
        }

        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");
                }
        }
      //-->
        

