

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("utilnav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
  				}
  				node.onmouseout=function() {
  					this.className=this.className.replace(" over", "");
   				}
   			}
  		}
 	}
}
window.onload=startList;

function login()	{ 
	 window.location = "http://www.downtownrising.com/secure/";
	}


/* previous login function (for login box on page)
	function login()
{ 
	if(navigator.appName == "Microsoft Internet Explorer")
	{
		 window.location = "http://downtownrising.com/secure/";
	}
	else
}
	{
		var pass = document.login.pass.value;
		rurl='http://downtown:'+pass+'@downtownrising.com/secure/';
		window.location=rurl;
	}
	*/