 function resize(){
   var haut = (document.body.clientHeight);
   document.getElementById("content").style.height=(haut-70);
   var larg = (document.body.clientWidth);
   document.getElementById("content").style.width=(larg-210);
   document.getElementById("content").style.marginRight=0;
 }
 var timer = null;
 var objOut = null;
 
 function mouseOut(obj){
   var elmt = document.getElementById(obj+"Item");
   if(elmt)elmt.style.display = "none";
   timer = null;
 }
 
 function menuOut(obj){
   objOut = obj;
   if (timer==null){
     //temps en millisecondes à partir duquel le sous-menu disparaît
     //quand le curseur n'est plus sur les sous-menus
     timer = setTimeout("mouseOut(objOut)","400");
   }
 }
 
 function menuOver(obj){
   var elmt;
   clearTimeout(timer);
   timer = null;
   elmt = document.getElementById(obj+"Item");
   if(elmt)elmt.style.display = "block";
   if (objOut!=obj && objOut!=null){
     mouseOut(objOut);
   }
 }

