//droplist
function startList() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("droplist");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i]; {
				node.onmouseover = function() {
					this.className += " over";
				}
				node.onmouseout = function() {
					var out = true;
					if (window.event) {
						var element = window.event.toElement;
						while (element) {
							out &= element != this;
							element = element.parentNode;
						}
					}
					if (out) {
						this.className=document.getElementById('sublevel').className.replace(" over", " ");
					}
				}
			}
		}
	}
}
