<!--
  browsok = (((navigator.appName == "Netscape")
  && (parseInt(navigator.appVersion) >= 3))
  || ((navigator.appName == "Microsoft Internet Explorer")
  && (parseInt(navigator.appVersion)>=3)));
  if(browsok){
    // MouseOn   
    // Note: the WWW is for the WIDTH, HHH is for the HEIGHT
 
       menu_play1 = new Image(169, 19);
       menu_play1.src = "images/holiday_menu_play_on.gif";
       menu_chapter1 = new Image(204, 19);
       menu_chapter1.src = "images/holiday_menu_chapter_on.gif";
       menu_special1 = new Image(400, 29);
       menu_special1.src = "images/holiday_menu_special_on.gif";


    // MouseOff

       menu_play0 = new Image(169, 19);
       menu_play0.src = "images/holiday_menu_play_off.gif";
       menu_chapter0 = new Image(204, 19);
       menu_chapter0.src = "images/holiday_menu_chapter_off.gif";
       menu_special0 = new Image(400, 29);
       menu_special0.src = "images/holiday_menu_special_off.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;
            }
  }
  // -->