startList = function() {
	if (document.getElementById) {
		navRoot = document.getElementById("adminheader");
		if (navRoot) {
		for (x=0; x<navRoot.childNodes.length; x++) {
			node = navRoot.childNodes[x];
			if (node.nodeName.toLowerCase()=="div") {

						node.onmouseover = function() {
							if ( this.className != "over" || this.className != "") 
								this.className = this.className + " over";
							else
								this.className="over";
						}
						node.onmouseout = function() {
							if ( this.className == "over" )
								this.className="";
							else {
								var classes = new Array();
								classes = this.className.split(' ');
								classes.splice(classes.length-1,1);
								this.className = classes.join(' ');
							}
						}

/*

				for (y=0; y<navRoot.childNodes[x].childNodes.length; y++) {
					subnode = navRoot.childNodes[x].childNodes[y];
					if (subnode.nodeName.toLowerCase()=="li") {

						subnode.onmouseover = function() {
							if ( this.className != "over" || this.className != "") 
								this.className = this.className + " over";
							else
								this.className="over";
						}
						subnode.onmouseout = function() {
							if ( this.className == "over" )
								this.className="";
							else {
								var classes = new Array();
								classes = this.className.split(' ');
								classes.splice(classes.length-1,1);
								this.className = classes.join(' ');
							}
						}

					}
				}
*/


			}
		}
		}
	}
}

//if (window.attachEvent)	window.attachEvent("onload", startList)
//else window.onload=startList;

