function make_menu( node ) 
{
	node.onmouseover=function() 	{ this.className+=" over"; } 
	node.onmouseout=function() { this.className=this.className.replace("over", ""); }
}


startList = function() 
{ 
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("border");
		var r = navRoot.getElementsByTagName( 'LI' );
		var out = "";
		for( x = 0; x< r.length; x++ )
			make_menu( r[x] );
	 }
}
