<!--
// Code for dropdown menu
// as seen on http://bombedout.com

startList = function() {
	if (document.all||document.getElementById) {
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			if (i!=6){
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+="over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace("over", "");					
					}
				}
			}else{
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+="over";
						navRoot.className+="over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace("over", "");
						navRoot.className=navRoot.className.replace("over", "");
					}
				}				
			}
		}
 	}
}
window.onload=startList;

// -->
