<!--button rollover script*/-->
      function HMC_SwapImage(imgId,imgSrc) {
         if((document.images)&&(document.images[imgId])) {
            document.images[imgId].src=imgSrc;
         }
      }
      if(window.event + "" == "undefined") event = null;
      function HM_f_PopUp(menuName,e){
         var imgName,imgSrc;
         if(menuName=="hm_m_home") {
            imgName="home";
            imgSrc="images/home-red.gif";
         } 
         else if (menuName=="hm_m_products") {
            imgName="products";
            imgSrc="images/products-red.gif";
         } 
         else if (menuName=="hm_m_custom") {
            imgName="custom";
            imgSrc="images/custom-red.gif";
         }
		 else if (menuName=="hm_m_contact") {
            imgName="contact";
            imgSrc="images/contact-red.gif";
         }
		 HMC_SwapImage(imgName,imgSrc);
         return false;
      };
      function HM_f_PopDown(menuName){
         var imgName,imgSrc;
         if(menuName=="hm_m_home") {
            imgName="home";
            imgSrc="images/home-white.gif";
         } 
         else if (menuName=="hm_m_products") {
            imgName="products";
            imgSrc="images/products-white.gif";
         } 
         else if (menuName=="hm_m_custom") {
            imgName="custom";
            imgSrc="images/custom-white.gif";
         }
		 else if (menuName=="hm_m_contact") {
            imgName="contact";
            imgSrc="images/contact-white.gif";
         }
		 HMC_SwapImage(imgName,imgSrc);
         return false
      };
      