Réponse acceptée !
menuTexte=new Array();
menuLink=new Array();
menuTexte[0]= 'Composition du bureau';
menuLink[0]= 'juniors.php';
menuTexte[1]= 'Informations';
menuLink[1]= 'infos.php';
menuhz = 1 //1:menu horizontal 0:menu vertical
bgcolor ='white'; //Couleur arrière
bgcolor2='#969696'; //Couleur arrière surbrillance
bgcolor3='white'; //Couleur bordure
bgcolor4='#ffffff'; //Couleur texte
image1 ='menu/gauche.jpg';
image2 ='menu/onglet.jpg';
image3 ='menu/droite.JPG';
image4 ='menu/onglet2.jpg';
largeur = 760
hauteur = 18
i = 0
taille1= 3
taille2= 4
cellule1=new Array();
cellule2=new Array();
cellule3=new Array();
document.write('<style>');
document.write('.ejsmenu {color:'+bgcolor4+'; cursor:hand;}') //default
document.write('</style>')
document.write('<TABLE bgcolor=white BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH='+(menuhz?largeur:largeur) +' HEIGHT='+hauteur+'><TR><TD><TABLE CELLPADING=0 CELLSPACING=0 BORDER=0 WIDTH=100% HEIGHT=100%>'+(menuhz?'<tr>':''))
for(pass=0;pass<menuTexte.length;pass+=1) {
document.write((menuhz?"":"<tr>")+"<td id=\"cellule1["+pass+"]\" width=\""+taille1+"\" background=\""+image1+"\"></td><TD id=\"cellule2["+pass+"]\" background=\""+image2+"\" ALIGN=center onMouseDown='location.href=\""+menuLink[pass]+"\"' onmouseover='select("+pass+")' on mouseout='unselect("+pass+")' ><FONT SIZE=2 FACE=Verdana><B>"+menuTexte[pass]+"</B></FONT></TD><td id=\"cellule3["+pass+"]\" width=\""+taille2+"\" background=\""+image3+"\"></td>")
}
document.write('</tr></TABLE></TD></TR></TABLE>')
</SCRIPT><SCRIPT>
function select(id)
{
document.getElementById("cellule1["+id+"]").style.background="url(onglet2.jpg)";
document.getElementById("cellule2["+id+"]").style.background="url(onglet2.jpg)";
document.getElementById("cellule3["+id+"]").style.background="url(onglet2.jpg)";
}
function unselect(id)
{
document.getElementById("cellule1["+id+"]").style.background=bgcolor;
document.getElementById("cellule2["+id+"]").style.background=bgcolor;
document.getElementById("cellule3["+id+"]").style.background=bgcolor;
}


Stfou