browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if ((browserName == "Netscape" && browserVer >= 3)||
  (browserName == "Microsoft Internet Explorer" && browserVer >=4)) version = "n3";
else version = "x";

if (version == "n3"){

/* Top menu 1 ON */  
  new_on = new Image;
  new_on.src = "/img/en/top_menu_02_on.gif";
  
  used_on = new Image;
  used_on.src = "/img/en/top_menu_03_on.gif";
  
  price_on = new Image;
  price_on.src = "/img/en/top_menu_04_on.gif";
  
  specials_on = new Image;
  specials_on.src = "/img/en/top_menu_05_on.gif";
  
  service_on = new Image;
  service_on.src = "/img/en/top_menu_06_on.gif";
  
  parts_on = new Image;
  parts_on.src = "/img/en/top_menu_07_on.gif";
  
  bodyshop_on = new Image;
  bodyshop_on.src = "/img/en/top_menu_07b_on.gif";
  
/* Top menu 2 ON */  
  
  requests_on = new Image;
  requests_on.src = "/img/en/top_menu_10_on.gif";
  
  compare_on = new Image;
  compare_on.src = "/img/en/top_menu_11_on.gif";
  
  events_on = new Image;
  events_on.src = "/img/en/top_menu_12_on.gif";
  
  team_on = new Image;
  team_on.src = "/img/en/top_menu_13_on.gif";
  
  policy_on = new Image;
  policy_on.src = "/img/en/top_menu_14_on.gif";
  
  contact_on = new Image;
  contact_on.src = "/img/en/top_menu_15_on.gif";
  

/* Top menu 1 OFF */  
  new_off = new Image;
  new_off.src = "/img/en/top_menu_02_off.gif";
  
  used_off = new Image;
  used_off.src = "/img/en/top_menu_03_off.gif";
  
  price_off = new Image;
  price_off.src = "/img/en/top_menu_04_off.gif";
  
  specials_off = new Image;
  specials_off.src = "/img/en/top_menu_05_off.gif";
  
  service_off = new Image;
  service_off.src = "/img/en/top_menu_06_off.gif";
  
  parts_off = new Image;
  parts_off.src = "/img/en/top_menu_07_off.gif";
  
  bodyshop_off = new Image;
  bodyshop_off.src = "/img/en/top_menu_07b_off.gif";
  
/* Top menu 2 OFF */  
  
  requests_off = new Image;
  requests_off.src = "/img/en/top_menu_10_off.gif";
  
  compare_off = new Image;
  compare_off.src = "/img/en/top_menu_11_off.gif";
  
  events_off = new Image;
  events_off.src = "/img/en/top_menu_12_off.gif";
  
  team_off = new Image;
  team_off.src = "/img/en/top_menu_13_off.gif";
  
  policy_off = new Image;
  policy_off.src = "/img/en/top_menu_14_off.gif";
  
  contact_off = new Image;
  contact_off.src = "/img/en/top_menu_15_off.gif";
  

}

function img_act(imgName){
  if (version == "n3"){
    imgOn = eval(imgName + "_on.src");
    document [imgName].src = imgOn;
  }
}

function img_inact(imgName){
  if (version == "n3"){
    imgOff = eval(imgName + "_off.src");
    document [imgName].src = imgOff;
  }
}