window.onload = function(){
	
	var menu = document.getElementById("menu")
	if(menu){
		var liSet = menu.getElementsByTagName('LI');				
		for(var i = 0; i < liSet.length; i++){										
			liSet[i].onmouseover = function(){
				this.oldClassName = this.className;
				this.className = this.oldClassName + " over";}				
			liSet[i].onmouseout = function(){
				this.className = this.oldClassName;}}}
	
}

goto = function(url)
{
	window.location = url;
	return false;
}
