<!--
  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
 
       main1 = new Image(140, 18);
       main1.src = "images/side_main_on.gif";
       intro1 = new Image(140, 18);
       intro1.src = "images/side_intro_on.gif";
       chapter1 = new Image(140, 18);
       chapter1.src = "images/side_chapter_on.gif";
       special1 = new Image(140, 18);
       special1.src = "images/side_special_on.gif";
       forums1 = new Image(140, 18);
       forums1.src = "images/side_forums_on.gif";
       links1 = new Image(140, 18);
       links1.src = "images/side_links_on.gif";
       starwars1 = new Image(140, 18);
       starwars1.src = "images/side_starwars_on.gif";
       chefelf1 = new Image(140, 18);
       chefelf1.src = "images/side_chefelf_on.gif";
       lne1 = new Image(140, 18);
       lne1.src = "images/side_lne_on.gif";


    // MouseOff

       main0 = new Image(140, 18);
       main0.src = "images/side_main_off.gif";
       intro0 = new Image(140, 18);
       intro0.src = "images/side_intro_off.gif";
       chapter0 = new Image(140, 18);
       chapter0.src = "images/side_chapter_off.gif";
       special0 = new Image(140, 18);
       special0.src = "images/side_special_off.gif";
       forums0 = new Image(140, 18);
       forums0.src = "images/side_forums_off.gif";
       links0 = new Image(140, 18);
       links0.src = "images/side_links_off.gif";
       starwars0 = new Image(140, 18);
       starwars0.src = "images/side_starwars_off.gif";
       chefelf0 = new Image(140, 18);
       chefelf0.src = "images/side_chefelf_off.gif";
       lne0 = new Image(140, 18);
       lne0.src = "images/side_lne_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;
            }
  }
  // -->