<!--



function loadUp()

{

	startList();

	

}



startList = function() 

{

	navRoot = new Array(4)

	if (document.all&&document.getElementById) 

	{

		navRoot[0] = document.getElementById("nav2");

		navRoot[1] = document.getElementById("nav3");

		navRoot[2] = document.getElementById("nav4");

		navRoot[3] = document.getElementById("nav5");

		for(a=0; a < 4; a++)

		{

			for (i=0; i<navRoot[a].childNodes.length; i++) 

			{

				node = navRoot[a].childNodes[i];

				if (node.nodeName=="LI") 

				{

					node.onmouseover=function() 

					{

						this.className+=" over";

 			 		}

  					node.onmouseout=function() 

  					{

  						this.className=this.className.replace(" over", "");

   					}

   				}

  			}

  		}

 	}

}





//-->