// fix for IE drop down menu

startList = function() {
	if (document.all&&document.getElementById) {
		dropRoot = document.getElementById("drop");
		for (i=0; i<dropRoot.childNodes.length; i++) {
			node = dropRoot.childNodes[i];
			if (node.nodeName=="DD") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;