startList = function() {
	var theMenu;
	var counter;
	var theNode;
	
	if(document.all && document.getElementById)
	{
	theMenu = document.getElementById('menu');
	for (counter=0; counter<theMenu.childNodes.length; counter++)
	{
		theNode = theMenu.childNodes.item(counter);
		theNode.onmouseover = function(){
			this.className += " over";
		}
		
		theNode.onmouseout = function() {
			this.className = this.className.substr(0, this.className.indexOf(" over") - 1);
		}
	}
	}
}
window.onload=startList;
