//---------------- javascripts pour menu -------------------------

window.onload=montre;

//================================================================
function montre(id)
 { var i, d = document.getElementById(id);
   for (i=1;i<=10;i++) 
     { if (document.getElementById('smenu'+i)) 
        { document.getElementById('smenu'+i).style.display='none';
     }  } 
   if(d)
    { d.style.display='block';
 }  }
 
//================================================================
//----------- fond des GRANDES cellules du menu ------------------
function v(what)
 {
  what.style.backgroundColor='FFC300';
 }

//================================================================
function t(what)
 {
  what.style.backgroundColor='';
 }

//================================================================
//----------- fond des PETITES cellules du menu ------------------
function m(what)
 {what.style.backgroundColor='FFCF8C';
 }
function n(what)
 {what.style.backgroundColor='';
 }
 
