startList = function() 
{
	if(document.getElementById) 
	{
		if(navRoot = document.getElementById("menu"))
		{
			for (j=0; j<navRoot.childNodes.length; j++) 
			{						
				node = navRoot.childNodes[j];						
				if (node.nodeName=="LI") 
				{	
					for (i=0; i<node.childNodes.length; i++) 
					{					
						nodesub = node.childNodes[i];
						if (nodesub.nodeName=="A") 
						{																	
							nodesub.onmouseover=function() 
							{	
								if(this.className == "")
									this.className = "over";
		  					}
		  
		  					nodesub.onmouseout=function() 
		  					{
		  						if(this.className != "active")
		  							this.className = "";
		   					}	
						}
		   			}
		  		}
			}
		}
		
		if(link = document.getElementById("backlink"))
		{
			link.onmouseover=function() 
			{	
				if(this.className == "")
					this.className = "over";
		  	}
		  
			link.onmouseout=function() 
			{
				if(this.className != "active")
					this.className = "";
			}				
		}		
 	}
}
window.onload=startList;
