<!--
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
     home1 = new Image(114, 118);
     home1.src = "../images/bt_home_mo.gif";
     areas1 = new Image(114, 118);
     areas1.src = "../images/bt_areas_mo.gif";       
     high1 = new Image(114, 118);
     high1.src = "../images/bt_highlights_mo.gif";       
     key1 = new Image(114, 118);
     key1.src = "../images/bt_keypeople_mo.gif";       
     our1 = new Image(114, 118);
     our1.src = "../images/bt_ouroffices_mo.gif";
     kini1 = new Image(114, 118);
     kini1.src = "../images/bt_kini_mo.gif";

  // MouseOff
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     home0 = new Image(114, 118);
     home0.src = "../images/bt_home.gif";
     areas0 = new Image(114, 118);
     areas0.src = "../images/bt_areas.gif";       
     high0 = new Image(114, 118);
     high0.src = "../images/bt_highlights.gif";       
     key0 = new Image(114, 118);
     key0.src = "../images/bt_keypeople.gif";       
     our0 = new Image(114, 118);
     our0.src = "../images/bt_ouroffices.gif";
     kini0 = new Image(114, 118);
     kini0.src = "../images/bt_kini.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;
          }
}

// -->

