<!-- Beginning of JavaScript
   browser = navigator.appName;
   ver = parseInt(navigator.appVersion);  
   active = ((browser == "Netscape") && (ver >= 3)) || ((browser == "Microsoft Internet Explorer") && (ver >= 4));        
   if (active) 
      {
      button01on = new Image;
      button01on.src = "images/aboutus_on.gif";
      button01off = new Image;
      button01off.src = "images/aboutus_off.gif";
		  
      button02on = new Image;
      button02on.src = "images/howour_on.gif";
      button02off = new Image;
      button02off.src = "images/howour_off.gif";
		  
      button03on = new Image;
      button03on.src = "images/getstarted_on.gif";
      button03off = new Image;
      button03off.src = "images/getstarted_off.gif";
		  
      button04on = new Image;
      button04on.src = "images/onlineorder_on.gif";
      button04off = new Image;
      button04off.src = "images/onlineorder_off.gif";
		  
      button05on = new Image;
      button05on.src = "images/mailorder_on.gif";
      button05off = new Image;
      button05off.src = "images/mailorder_off.gif";
		  
      button06on = new Image;
      button06on.src = "images/retailbutch_on.gif";
      button06off = new Image;
      button06off.src = "images/retailbutch_off.gif";
		  
      button07on = new Image;
      button07on.src = "images/links_on.gif";
      button07off = new Image;
      button07off.src = "images/links_off.gif";
		  
      button08on = new Image;
      button08on.src = "images/contactus_on.gif";
      button08off = new Image;
      button08off.src = "images/contactus_off.gif";
      }
   function Mover(BName,active) 
      {
      if (active) 
         { 
         document.images[BName].src = "images/" +  BName + "_on.gif" 
         }
      else 
         { 
         document.images[BName].src = "images/" + BName + "_off.gif" 
         }
     }
 // ------->  