var gTimeoutDelai = 3000; /* 3000 */
var gTimeoutFonction = 'CacherTout()';
var gTimeoutId = 0;
function CacherTout(){
  if(gTimeoutId != 0){
	clearTimeout(gTimeoutId);
  }
  window.document.getElementById('smFormationPro').style.display = 'none';
  window.document.getElementById('smFormationPublic').style.display = 'none';
  window.document.getElementById('smServices').style.display = 'none';
}

function MontrerMenu(id){
  CacherTout();
  window.document.getElementById(id).style.display = 'block';
  gTimeoutId = setTimeout(gTimeoutFonction, gTimeoutDelai);
}
function ResetTimeout(){
  clearTimeout(gTimeoutId);
  gTimeoutId = setTimeout(gTimeoutFonction, gTimeoutDelai);
}
