// Function modified from:
// http://www.alistapart.com/articles/horizdropdowns



function IE_menu_fix()
{
	if (document.all && document.getElementById)
	{
		var menu = document.getElementById("menu").getElementsByTagName("LI");

		for (i = 0; i < menu.length; i++)
		{
			menu[i].onmouseover=function()
			{
				this.className = "li_hover";
				if ((subs = this.getElementsByTagName("UL")).length)
					subs[0].className = "ul_hover";
			}

			menu[i].onmouseout=function()
			{
				this.className = "";
				if ((subs = this.getElementsByTagName("UL")).length)
					subs[0].className = "";
			}
		}
	}
}

window.onload=IE_menu_fix;

