<!--//--><![CDATA[//><!--
// Inspired by: "Suckerfish dropdowns" by  Patrick Griffiths and Dan Webb at "A List Apart" - http://www.alistapart.com/articles/dropdowns/

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		navChild = navRoot.getElementsByTagName("li");
		l = navChild.length;
		for (i = 0; i < l; i++) {
			node = navChild[i];
			node.onmouseover = function() {
				this.className += " over";
			}
			node.onmouseout = function() {
				this.className = this.className.replace(" over", "");
			}
		}
	}
}
window.onload = startList;

//--><!]]>