function menu (id) 
{ 
this.highlighted ='';

// on regle les problemes liés au premier élement à afficher automatiquement

allTD = document.getElementById("tableau_menu").getElementsByTagName("td");

for(i=0;i<allTD.length;i++)
{
allTD[i].style.background = 'transparent';
allTD[i].style.color = 'black';
}

this.id=id; 

document.getElementById(this.id).style.background = '#e70000';
document.getElementById(this.id).style.color = '#ffffff';

} 

