IeHover=function()
{
	var lol=document.getElementById("menu").getElementsByTagName("li");
	for(var i=0;i<lol.length;i++)
	{
		lol[i].onmouseover=function()
		{
			this.className+="hover";
		}
		lol[i].onmouseout=function()
		{
			this.className=this.className.replace(new RegExp("hover\\b"),"");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IeHover);