browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
   if (browserVer >= 3) version = "n3";
   else version = "n2"
   if (version == "n3") 
{

//top nav
   hdr_btn_clienton = new Image();
   hdr_btn_clienton.src = "/images/hdr_btn_client_on.gif";
   hdr_btn_clientoff = new Image();
   hdr_btn_clientoff.src = "/images/hdr_btn_client_off.gif";
 
   hdr_btn_companyon = new Image();
   hdr_btn_companyon.src = "/images/hdr_btn_company_s_on.gif";
   hdr_btn_companyoff = new Image();
   hdr_btn_companyoff.src = "/images/hdr_btn_company_on.gif"; 
   
   hdr_btn_contacton = new Image();
   hdr_btn_contacton.src = "/images/hdr_btn_contact_on.gif";
   hdr_btn_contactoff = new Image();
   hdr_btn_contactoff.src = "/images/hdr_btn_contact_off.gif";    

   hdr_btn_div00on = new Image();
   hdr_btn_div00on.src = "/images/hdr_btn_div_on.gif";
   hdr_btn_div00off = new Image();
   hdr_btn_div00off.src = "/images/hdr_btn_div_off.gif";
   
   hdr_btn_div01on = new Image();
   hdr_btn_div01on.src = "/images/hdr_btn_div_on.gif";
   hdr_btn_div01off = new Image();
   hdr_btn_div01off.src = "/images/hdr_btn_div_off.gif";  
   
   hdr_btn_div02on = new Image();
   hdr_btn_div02on.src = "/images/hdr_btn_div_on.gif";
   hdr_btn_div02off = new Image();
   hdr_btn_div02off.src = "/images/hdr_btn_div_off.gif";
   
   hdr_btn_div03on = new Image();
   hdr_btn_div03on.src = "/images/hdr_btn_div_on.gif";
   hdr_btn_div03off = new Image();
   hdr_btn_div03off.src = "/images/hdr_btn_div_off.gif";

   hdr_btn_serviceson = new Image();
   hdr_btn_serviceson.src = "/images/hdr_btn_services_on.gif";
   hdr_btn_servicesoff = new Image();
   hdr_btn_servicesoff.src = "/images/hdr_btn_services_off.gif";
   
   hdr_btn_siteon = new Image();
   hdr_btn_siteon.src = "/images/hdr_btn_site_on.gif";
   hdr_btn_siteoff = new Image();
   hdr_btn_siteoff.src = "/images/hdr_btn_site_off.gif"; 
   
 // end top nav
}

function img_act(imgName)  {
  imgOn = eval(imgName + "on.src");
   document [imgName].src = imgOn;
}
function img_inact(imgName)   {
   imgOff = eval(imgName + "off.src");
   document [imgName].src = imgOff;
}