//
// multimenu ie hover
//
function startMenu()
{
	if (document.all && document.getElementById)
	{
		var multimenu = document.getElementById('multi-menu')
		for (i = 0; i < multimenu.childNodes.length; i++)
		{
			var ul = multimenu.childNodes[i]
			if (ul.nodeName == 'UL')
			{
				for (j = 0; j < ul.childNodes.length; j++)
				{
					var node = ul.childNodes[j]
					if (node.nodeName == 'LI')
					{
						node.onmouseover	= function() { this.className += ' over' }
						node.onmouseout		= function() { this.className = this.className.replace(' over', '') }
					}
				}
			}
		}
	}
}

if (window.attachEvent)
{
	window.attachEvent('onload', startMenu)
}
else
{
	window.onload = startMenu
}
