startList = function() 
{
	if (document.all)
	{
		var tags = document.getElementsByTagName("LI");
		for (i=0; i< tags.length; i++) 
		{
			node = tags[i];
			node.onmouseover = function() 
			{
				this.className += " over";
			}
			node.onmouseout=function() 
			{
				this.className=this.className.replace(" over", "");
			}
		}
	}
}

SafeAddOnload(startList);