<!--//--><![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("hidey");
		navRoot.onmouseover = function() {
			this.className += " over";
		}
		navRoot.onmouseout = function() {
			this.className = this.className.replace(" over", "");
		}
	}
}
window.onload = startList;

//--><!]]>