/*  MAIN MENU for IE6  */
var bsAgent = navigator.userAgent.toLowerCase();
var bsOpera = (bsAgent.indexOf('opera') != -1);
var bsIE = (bsAgent.indexOf('msie') != -1) && !bsOpera;

function mainMenu()
{
	if (bsIE && (parseInt(navigator.appVersion) < 5))
	{
		var navRoot = document.getElementById("menu-main_menu");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{ this.className+=" hover"; }
				node.onmouseout=function()
				{ this.className=this.className.replace(" hover", ""); }
			}
		}
	}
}

window.onload = function() {
	mainMenu();
}
