startList = function() {
	if (document.all&&document.getElementById) {
		Container = document.getElementById("menu");
		navRoot = Container.childNodes[3];
		
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
				
			node.onmouseover=function() {
					TICKER_PAUSED = true;
					this.className+="over ";
					// alert (this.className);
			}		
			node.onmouseout=function() {
					TICKER_PAUSED = false;
					this.className=this.className.replace("over", "");
					// alert (this.className);
			}
		}
	}
}
startList();
