<!--
browsok = (((navigator.appName == "Netscape")
&& (parseInt(navigator.appVersion) >= 3))
|| ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion)>=3)));
if(browsok){
  // MouseOn   
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     first1 = new Image(99, 24);
     first1.src = "http://www.oufoundation.org/ouf2/images/maps1.gif";
     second1 = new Image(96, 24);
     second1.src = "http://www.oufoundation.org/ouf2/images/home1.gif";
     third1 = new Image(68, 24);
     third1.src = "http://www.oufoundation.org/ouf2/images/contact1.gif";
      
  // MouseOff
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     first0 = new Image(99, 24);
     first0.src = "http://www.oufoundation.org/ouf2/images/maps.gif";
     second0 = new Image(96, 24);
     second0.src = "http://www.oufoundation.org/ouf2/images/home.gif";
     third0 = new Image(68, 24);
     third0.src = "http://www.oufoundation.org/ouf2/images/contactus.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;
          }
}
// -->
