/* 
  ------------------------------------
  ------------------------------------
*/
function VIES_PopMenu()
{
 if (navigator.appVersion.indexOf("MSIE") == -1)
 {
 	return;
 }
 var j,jj,g,lg,r=/\s*vieshover/,nn='',c,cs='vieshover',bv='menu_bar';
 for(j=0;j<10;j++)
 {
  g=document.getElementById(bv+nn);
  if(g)
  {
   lg=g.getElementsByTagName("DIV");
   if(lg)
   {
    for(jj=0;jj<lg.length;jj++)
    {
     lg[jj].onmouseover=function()
     {
     	//alert("coucou");
      c=this.className;
      cl=(c)?c+' '+cs:cs;
      this.className=cl;
     };
     lg[jj].onmouseout=function()
     {
      c=this.className;
      this.className=(c)?c.replace(r,''):'';
     };
    }
   }
  }
  nn=j+1;
 }
}

