
// IE-Compatibility code for main menu
function MenuCompat()
{
	if (!(document.all && document.getElementById))
		return
	navRoot = document.getElementById("layoutTopMenu");
	for (i=0; i<navRoot.childNodes.length; i++)
	{
		node = navRoot.childNodes[i];
		if (node.nodeName != "LI")
			continue;
		node.onmouseover = function() {this.className += " ieHover";};
		node.onmouseout = function() {this.className = this.className.replace(" ieHover", "");};
	}
};
Onload(MenuCompat);

