/* accepts a classname and moves the BG */
function setActiveNavItem(cName) { 
	var navLinks = document.getElementById("nav").getElementsByTagName("a");
	for (var i=0; i<navLinks.length; i++) {
		if(navLinks[i].className == cName) {
			navLinks[i].style.backgroundPosition = "0 0";
		}
	}
}


/* suckerfish javascript for IE5/6 support */
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);


function goToHome(){
	window.location = "/index.htm"
}