fctFocMenu=function()
{var menuID=document.getElementById("menu");var listeLi=menuID.getElementsByTagName("li");for(var i=0;i<listeLi.length;i++)
{listeLi[i].onmouseover=function()
{this.className+=" fctFocMenu";}
listeLi[i].onmouseout=function()
{this.className=this.className.replace(new RegExp(" fctFocMenu\\b"),"");}}}
function addLoadListener(func)
{if(window.addEventListener)
{window.addEventListener("load",func,false);}
else if(document.addEventListener)
{document.addEventListener("load",func,false);}
else if(window.attachEvent)
{window.attachEvent("onload",func);}}
if(window.attachEvent)window.attachEvent("onload",fctFocMenu);
