// ERROR REPORTS
     window.onerror=null;
//    
// VARIABLES
     image1on = new Image(160, 21);
     image1on.src = "images/m_home_on.gif"; 
     image2on = new Image(160, 20);
     image2on.src = "images/m_products_on.gif";
     image3on = new Image(160, 20);
     image3on.src = "images/m_mission_on.gif";
     image4on = new Image(160, 20);
     image4on.src = "images/m_faq_on.gif";
     image5on = new Image(160, 20);
     image5on.src = "images/m_about_on.gif";
     image6on = new Image(160, 20);
     image6on.src = "images/m_order_on.gif";
     image7on = new Image(160, 20);
     image7on.src = "images/m_contact_on.gif";
//
     image1off = new Image(160, 21);
     image1off.src = "images/m_home_off.gif"; 
     image2off = new Image(160, 20);
     image2off.src = "images/m_products_off.gif";
     image3off = new Image(160, 20);
     image3off.src = "images/m_mission_off.gif";
     image4off = new Image(160, 20);
     image4off.src = "images/m_faq_off.gif";
     image5off = new Image(160, 20);
     image5off.src = "images/m_about_off.gif";
     image6off = new Image(160, 20);
     image6off.src = "images/m_order_off.gif";
     image7off = new Image(160, 20);
     image7off.src = "images/m_contact_off.gif";
//
// FUNCTIONS
     function imgOn(imgName)
     {
         imgon = eval(imgName + "on.src");
         document [imgName].src = imgon;
     }
//
     function imgOff(imgName)
     {
         imgoff = eval(imgName + "off.src");
         document [imgName].src = imgoff;
//
     }