// Suckerfish JScript Code for IE's inability to recognise :hover pseudo class

function menu()
{

	// Detect whether the browser is win ie >= 5

	if (document.all&&document.getElementById&&window.print)
	{
		navRoot = document.getElementById("menu_ul");

		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className = "over " + this.className;
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace("over ", "");
				}
			}
		}
	 }
}

if (window.attachEvent)
	window.attachEvent('onload',menu);