<!-- // Hide Script from old Browsers

if (document.images) {  // If the image object exists
      // Preload images
        off = new Array(6)
        on = new Array(6)

    on[1] = new Image();
    on[1].src = "images/Btn_About_On.gif";
    on[2] = new Image();
    on[2].src = "images/Btn_Products_On.gif";
    on[3] = new Image();
    on[3].src = "images/Btn_Ordering_On.gif";
    on[4] = new Image();
    on[4].src = "images/Btn_Testimonials_On.gif";
    on[5] = new Image();
    on[5].src = "images/Btn_Contact_On.gif";
    on[6] = new Image();
    on[6].src = "images/Btn_Resources_On.gif";

    off[1] = new Image();
    off[1].src = "images/Btn_About_Off.gif";
    off[2] = new Image();
    off[2].src = "images/Btn_Products_Off.gif";
    off[3] = new Image();
    off[3].src = "images/Btn_Ordering_Off.gif";
    off[4] = new Image();
    off[4].src = "images/Btn_Testimonials_Off.gif";
    off[5] = new Image();
    off[5].src = "images/Btn_Contact_Off.gif";
    off[6] = new Image();
    off[6].src = "images/Btn_Resources_Off.gif";

    }

    function imageOn(imageName,num) {
        if (document.images) { // If the image object exists
          // Change images on the page
          document[imageName].src = on[num].src;
        }
    }

    function imageOff(imageName,num) {
        if (document.images) { // If the image object exists
          // Change images on the page
          document[imageName].src = off[num].src;
        }
    }

// end hiding script -->


