/*startList = function() {
	if (document.all&&document.getElementsByTagName) {
		navRootMaster = document.getElementsByTagName("UL");
		for (j=0; j<navRootMaster.length; j++) {
			navRoot = navRootMaster.item(j);
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI"&&i==0) {
					node.className+=" first";
				}
				if (node.nodeName=="LI"&&i==navRoot.childNodes.length-1) {
					node.className+=" last";
				}
				if (node.nodeName=="LI"&&(navigator.userAgent.indexOf("Mac")==-1||navigator.userAgent.indexOf("Mac")!=-1&&(navRoot.id=="navigation"||navRoot.id=="utilNavigation"))) {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
}
AttachEvent(window, 'load', startList);*/