var jshover = function()
{
	var menuDiv = document.getElementById("horizontal-multilevel-menu")
	if (!menuDiv)
		return;

	var sfEls = menuDiv.getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) 
	{
		sfEls[i].onmouseover=function()
		{
			this.className+=" jshover";
		}
		sfEls[i].onmouseout=function() 
		{
			this.className=this.className.replace(new RegExp(" jshover\\b"), "");
		}
	}
}

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

function openw(wt,ht){w=open('', 'childwindow', 'width=5,height=5,directories=0,resizable=1,status=0,toolbar=0,menubar=0,scrollbars=0,location=0');w.self.moveTo(screen.availWidth/2-wt/2,screen.availHeight/2-ht/2);w.self.resizeTo(wt,ht);w.self.focus()};

