<!--

//Toggle Show / Hide the DIV (div_ID = numbers or 'text')
function showhide(div_ID) {						
 var el = document.getElementById(div_ID);
 el.style.display = (el.style.display != 'none' ? 'none' : '' );
}

//-->

//Toggle Show / Hide the DIV (div_ID = numbers or 'text')
function toggle(div_ID) {						
 var el = document.getElementById(div_ID);
 el.style.display = (el.style.display != 'none' ? 'none' : '' );
}

//-->

//menu function for on hover
<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>