
<!--
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";

if (br== "n3")  {
  

  homeon = new Image();
  homeon.src = "images/home_on.gif";

  whoon = new Image();
  whoon.src = "images/who_on.gif";
  
  otheron = new Image();
  otheron.src = "images/other_services_on.png";
  
  productson = new Image();
  productson.src = "images/our_products_on.png";

  serviceson = new Image();
  serviceson.src = "images/services_on.gif";

  benefitson = new Image();
  benefitson.src = "images/benefits_on.gif";

  contacton = new Image();
  contacton.src = "images/contact_on.gif";

  requeston = new Image();
  requeston.src = "images/request_on.gif";

  producton = new Image();
  producton.src = "images/our_products_on.png";
  
  homeoff = new Image() ;
  homeoff.src = "images/home_off.gif";

  whooff = new Image();
  whooff.src = "images/who_off.gif";
  
  otheroff = new Image();
  otheroff.src = "images/other_services_off.png";
  
  productsoff = new Image();
  productsoff.src = "images/our_products_off.png";

  servicesoff = new Image();
  servicesoff.src = "images/services_off.gif";

  benefitsoff = new Image();
  benefitsoff.src = "images/benefits_off.gif";

  contactoff = new Image();
  contactoff.src = "images/contact_off.gif";

  requestoff = new Image();
  requestoff.src = "images/request_off.gif";

  productoff = new Image();
  productoff.src = "images/our_products_off.png";
}

function turnOn(imageName) {
  if (br=="n3"){
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (br=="n3") {
    document[imageName].src = eval(imageName + "off.src");
  }
}

//-->
