   <!--
   browsok = (((navigator.appName == "Netscape")
   && (parseInt(navigator.appVersion) >= 3))
   || ((navigator.appName == "Microsoft Internet Explorer")
   && (parseInt(navigator.appVersion) >= 3)));
   if(browsok){
     // MouseOn   
     // Note: the 108 is for the WIDTH, 34 is for the HEIGHT
		menufaqs1 = new Image(223, 65);
        menufaqs1.src = "menu_faqson.gif";
        menurecipes1 = new Image(116, 65);
        menurecipes1.src = "menu_recipeson.gif";
        menulinks1 = new Image(97, 65);
        menulinks1.src = "menu_linkson.gif";
        menuorder1 = new Image(99, 65);
        menuorder1.src = "menu_orderon.gif";
  

     // MouseOff
     // Note: the 230 is for the WIDTH, 19 is for the HEIGHT
		menufaqs0 = new Image(223, 65);
        menufaqs0.src = "menu_faqs.gif";
        menurecipes0 = new Image(116, 65);
        menurecipes0.src = "menu_recipes.gif";
        menulinks0 = new Image(97, 65);
        menulinks0.src = "menu_links.gif";
        menuorder0 = new Image(99, 65);
        menuorder0.src = "menu_order.gif";
 
  

}
   function BNB_mouseon(n){
        if(browsok){
             imageON = eval(n + "1.src");
             document [n].src = imageON;
             }
   }
   function BNB_mouseoff(n){
        if(browsok){
   imageOFF = eval(n + "0.src");
        document [n].src = imageOFF;
             }
   }
   // -->