
function hovermenu(idf) 
{
	var stylem=trouvestyle(idf); /*objet "style" du bouton"*/
	if(stylem) 
	{
		stylem.backgroundColor='#d96'
		stylem.borderBottomColor='#cca';
		stylem.borderLeftColor='black';
		stylem.borderTopColor='black';
   }
}   

function restauremenu(idf) {
	var stylem=trouvestyle(idf); /*objet "style" du bouton"*/
	if(stylem) 
	{
		stylem.backgroundColor='#578'
		stylem.borderBottomColor='black';
		stylem.borderLeftColor='#cca';
		stylem.borderTopColor='#cca';
	}
}
   
function trouvestyle(idf) 
{ 
    if (document.getElementById) 
    {
      return document.getElementById(idf).style;
    } 
    else if (document.all) 
    {
      return document.all[idf].style;
    } 
    else if (document.layers) 
    {
      return document.layers[idf];
    } 
    else 
    { 
		return null 
	}
}
