<!-- Hide from other browsers

bname = navigator.appName;
bvers = parseInt(navigator.appVersion);
imgloaded = new Boolean(false);
version = "";


function load_images() {
   
   //Only works for IE 4 and Netscape 3 & 4
   if ((bname == "Netscape" && bvers >= 3) 
   ||  (bname == "Microsoft Internet Explorer" && bvers > 3)) {

      version = "OK";
      menu1_on = new Image(); menu1_on.src = "../images/menu/menu1b.jpg";
      menu2_on = new Image(); menu2_on.src = "../images/menu/menu2b.jpg";
      menu3_on = new Image(); menu3_on.src = "../images/menu/menu3b.jpg";
      menu4_on = new Image(); menu4_on.src = "../images/menu/menu4b.jpg";
      menu5_on = new Image(); menu5_on.src = "../images/menu/menu5b.jpg";
      menu6_on = new Image(); menu6_on.src = "../images/menu/menu6b.jpg";
      menu7_on = new Image(); menu7_on.src = "../images/menu/menu7b.jpg";
    
   
      menu_current = new Image();
      
      imgloaded = eval(true);

   }
   else{
      version = "Some other sorry browser";
   }
}

function menu_on(iname) {
   if (version == "OK" && imgloaded) {
      imgOn = eval(iname + "_on.src");
      menu_current.src = document[iname].src;
      document[iname].src = imgOn;
   }
}

function menu_off(iname) {
   if (version == "OK" && imgloaded) {
      if (menu_current.src != "") {
         document[iname].src = menu_current.src;
      }
   }
}

// -->

