function Menu(Variable)
{
TabMenu=new Array();
TabMenu2=new Array();
TabMenu=Variable.id.split("&");
Nom=TabMenu[0];
Niveau=TabMenu[1]*1;
Parent=TabMenu[2];
Objet=document.getElementById(Nom);
ListeMenu=document.body.getElementsByTagName("DIV");
for (el in ListeMenu)  
{
alert(el);
if (el.id) (el.id.indexOf("Menu")!=-1)
	{
	alert(el);
	TabMenu2=el.id.split("&")
	el.style.visibility=TabMenu2[2]==Nom?"visible":"hidden";
	}
}
}

function emulHover(){
  NAV = navigator.appVersion;
  if (NAV.indexOf("MSIE")>0){
    IE5 = (NAV.substr(NAV.indexOf('MSIE')+5,1) == '5')?true:false;
    MN  = document.getElementById('Menu0');
    LI  = MN.getElementsByTagName('li');
	DD = MN.getElementsByTagName('dd');

    if(IE5) MN.style.left = '-16px'
    
    for(i in LI)
	{
      LI[i].onmouseover = function()
	  {
        this.style.backgroundColor = "#5DA06E";
        UL    = this.getElementsByTagName('UL');
        NAV   = navigator.appVersion
        IEpos = (NAV.substr(NAV.indexOf('MSIE')+5,1) == '5')?'180px':'208px';
        if(UL[0])
		{
          UL[0].style.display = 'block';
          UL[0].style.left    = IEpos;
		  UL[0].style.top = 1;
        }
      }
      LI[i].onmouseout = function()
	  {
        this.style.backgroundColor = "#0E6C80";
        this.className = 'ieLI';
        UL = this.getElementsByTagName('UL');
        if(UL[0]) UL[0].style.display = 'none';
      }
    }
    for(i in DD)
	{
      DD[i].onmouseover = function()
	  {
        this.style.backgroundColor = "#5DA06E";
        UL    = this.getElementsByTagName('UL');
        NAV   = navigator.appVersion
		if(UL[0])
		{
          UL[0].style.display = 'block';
          UL[0].style.left    = -1;
		  UL[0].style.top = 27;
        }
      }
      DD[i].onmouseout = function()
	  {
        this.style.backgroundColor = "#0E6C80";
        UL = this.getElementsByTagName('UL');
        if(UL[0]) UL[0].style.display = 'none';
      }
    }	
  }
}
