var Hover = function() 
{
	var itemList = document.getElementById( "Menu" ).getElementsByTagName( "LI" );
	for ( var index = 0; index < itemList.length; index++ ) 
	{
		itemList[ index ].onmouseover = function() { this.className += " Hover"; }
		itemList[ index ].onmouseout = function() { this.className = this.className.replace( " Hover", "" ); }
	}
}
if ( window.attachEvent ) window.attachEvent( "onload", Hover );

