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"){    
  golfcity_on = new Image;
  golfcity_on.src = "/img/fr/inv_golf_city_on.gif";
  
  jetcity_on = new Image;
  jetcity_on.src = "/img/fr/inv_jetta_city_on.gif";
  
  rabbit_on = new Image;
  rabbit_on.src = "/img/fr/inv_rabbit_on.gif";
  
  jetta_on = new Image;
  jetta_on.src = "/img/fr/inv_jetta_on.gif";
  
  jettatdi_on = new Image;
  jettatdi_on.src = "/img/fr/inv_jetta_wagon_tdi_on.gif";
  
  passatcc_on = new Image;
  passatcc_on.src = "/img/fr/inv_passat_cc_on.gif";
  
  passat_on = new Image;
  passat_on.src = "/img/fr/inv_passat_on.gif";
  
  passatwag_on = new Image;
  passatwag_on.src = "/img/fr/inv_passat_fam_on.gif";
  
  eos_on = new Image;
  eos_on.src = "/img/fr/inv_eos_on.gif";
  
  beetle_on = new Image;
  beetle_on.src = "/img/fr/inv_beattle_on.gif";
  
  beetlecon_on = new Image;
  beetlecon_on.src = "/img/fr/inv_beattle_dec_on.gif";
  
  touareg_on = new Image;
  touareg_on.src = "/img/fr/inv_touareg_on.gif";
  
  touaregtdi_on = new Image;
  touaregtdi_on.src = "/img/fr/inv_touareg_tdi_on.gif";
  
  gti_on = new Image;
  gti_on.src = "/img/fr/inv_gti_on.gif";
  
  routan_on = new Image;
  routan_on.src = "/img/fr/inv_routan_on.gif";
  
  tiguan_on = new Image;
  tiguan_on.src = "/img/fr/inv_tiguan_on.gif";
  
  golfcity_off = new Image;
  golfcity_off.src = "/img/fr/inv_golf_city_off.gif";
  
  jetcity_off = new Image;
  jetcity_off.src = "/img/fr/inv_jetta_city_off.gif";
  
  rabbit_off = new Image;
  rabbit_off.src = "/img/fr/inv_rabbit_off.gif";
  
  jetta_off = new Image;
  jetta_off.src = "/img/fr/inv_jetta_off.gif";
  
  jettatdi_off = new Image;
  jettatdi_off.src = "/img/fr/inv_jetta_wagon_tdi_off.gif";
  
  passatcc_off = new Image;
  passatcc_off.src = "/img/fr/inv_passat_cc_off.gif";
  
  passat_off = new Image;
  passat_off.src = "/img/fr/inv_passat_off.gif";
  
  passatwag_off = new Image;
  passatwag_off.src = "/img/fr/inv_passat_fam_off.gif";
  
  eos_off = new Image;
  eos_off.src = "/img/fr/inv_eos_off.gif";
  
  beetle_off = new Image;
  beetle_off.src = "/img/fr/inv_beattle_off.gif";
  
  beetlecon_off = new Image;
  beetlecon_off.src = "/img/fr/inv_beattle_dec_off.gif";
  
  touareg_off = new Image;
  touareg_off.src = "/img/fr/inv_touareg_off.gif";
  
  touaregtdi_off = new Image;
  touaregtdi_off.src = "/img/fr/inv_touareg_tdi_off.gif";
  
  gti_off = new Image;
  gti_off.src = "/img/fr/inv_gti_off.gif";
  
  tiguan_off = new Image;
  tiguan_off.src = "/img/fr/inv_tiguan_off.gif";
  
  routan_off = new Image;
  routan_off.src = "/img/fr/inv_routan_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;
  }
}