//dropdowns
startList4 = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("awardboxsub");
		for (b=0; b<navRoot.childNodes.length; b++) {
			node = navRoot.childNodes[b];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList4;