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")
 {    
        Aon = new Image;
        Aon.src = "/img/fr/menu_gauche_02_on.gif";
        Bon = new Image;
        Bon.src = "/img/fr/menu_gauche_03_on.gif";
        Con = new Image;
        Con.src = "/img/fr/menu_gauche_04_on.gif";
        Don = new Image;
        Don.src = "/img/fr/menu_gauche_05_on.gif";
        Eon = new Image;
        Eon.src = "/img/fr/menu_gauche_06_on.gif";
        Fon = new Image;
        Fon.src = "/img/fr/menu_gauche_07_on.gif";
        Gon = new Image;
        Gon.src = "/img/fr/menu_gauche_08_on.gif";
        Hon = new Image;
        Hon.src = "/img/fr/menu_gauche_09_on.gif";  
        Ion = new Image;
        Ion.src = "/img/fr/menu_gauche_10_on.gif"; 
        Jon = new Image;
        Jon.src = "/img/fr/menu_gauche_11_on.gif";
       
        Aoff = new Image;
        Aoff.src = "/img/fr/menu_gauche_02_off.gif";
        Boff = new Image;
        Boff.src = "/img/fr/menu_gauche_03_off.gif";
        Coff = new Image;
        Coff.src = "/img/fr/menu_gauche_04_off.gif";
        Doff = new Image;
        Doff.src = "/img/fr/menu_gauche_05_off.gif";
        Eoff = new Image;
        Eoff.src = "/img/fr/menu_gauche_06_off.gif";
        Foff = new Image;
        Foff.src = "/img/fr/menu_gauche_07_off.gif";
        Goff = new Image;
        Goff.src = "/img/fr/menu_gauche_08_off.gif";
        Hoff = new Image;
        Hoff.src = "/img/fr/menu_gauche_09_off.gif";  
        Ioff = new Image;
        Ioff.src = "/img/fr/menu_gauche_10_off.gif";
        Joff = new Image;
        Joff.src = "/img/fr/menu_gauche_11_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;
        }
}
