        <!--
                if (document.images) {
        // Active Images                                       
            img1on = new Image();
            img1on.src = "../img/aboutus_menu_on.png";
            img2on = new Image();
            img2on.src = "../img/commercial_menu_on.png";
            img3on = new Image();
            img3on.src = "../img/restoration_menu_on.png";
            img4on = new Image();
            img4on.src = "../img/warranty_menu_on.png";
            img5on = new Image();
            img5on.src = "../img/employment_menu_on.png";
            img6on = new Image();
            img6on.src = "../img/contact_menu_on.png";
			img7on = new Image();
			img7on.src = "../img/1on.png";
			img8on = new Image();
			img8on.src = "../img/2on.png";
			img9on = new Image();
			img9on.src = "../img/3on.png";
                                                                             
            img1off = new Image();
            img1off.src = "../img/aboutus_menu.png";
            img2off = new Image();
            img2off.src = "../img/commercial_menu.png";
            img3off = new Image();                    
            img3off.src = "../img/restoration_menu.png";
            img4off = new Image();
            img4off.src = "../img/warranty_menu.png";
            img5off = new Image();
            img5off.src = "../img/employment_menu.png";
            img6off = new Image();
            img6off.src = "../img/contact_menu.png";
			img7off = new Image();
			img7off.src = "../img/1.png";
			img8off = new Image();
			img8off.src = "../img/2.png";
			img9off = new Image();
			img9off.src = "../img/3.png";

        }
        
        // Function to 'activate' images.
        function imgOn(imgName) {
                if (document.images) {
                    document[imgName].src = eval(imgName + "on.src");
                }
        }
        
        // Function to 'deactivate' images.
        function imgOff(imgName) {
                if (document.images) {
                    document[imgName].src = eval(imgName + "off.src");
                }
        }
		// -->