// This file contains the script (linked in the page head) for the drop-down menu.
// Please DO NOT EDIT this script.

// The navRoot call (document.getElementById) must equal the ID tag of the UL used in the menu.
// In this script, the Element is called "frepmenu".

function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("frepmenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}