sfHover = function()
{
	var elements = document.getElementById("Menu").getElementsByTagName("LI");
	
	for (var i = 0; i < elements.length; i++)
	{
		if(this.className == "Last")
			break;
			
		elements[i].onmouseover=function()
		{
			this.className+=" sfhover";
		}
		elements[i].onmouseout=function()
		{
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

if (window.attachEvent)
	window.attachEvent("onload", sfHover);
