function initPage()
{
	var navRoot = document.getElementById("horiz-menu");
	var lis = navRoot.getElementsByTagName("li");
	for (var i=0; i<lis.length; i++)
	{
		if ((lis[i].parentNode.id == "horiz-menu"))
		{
			lis[i].onmouseover = function()
			{
				if (window.opera) {
				var navfooter = document.getElementById("footer");
				navfooter.style.overflow = "visible";				
				}
				this.className = "hover";
			}
			lis[i].onmouseout = function()
			{
				if (window.opera) {
				var navfooter = document.getElementById("footer");
				navfooter.style.overflow = "hidden";				
				}
				this.className = "";
			}
		}
	}
}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);

