sfHover = function() {
	//var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	var sfEls = document.getElementById("nav").childNodes;
	for (var i=0; i<sfEls.length; i++) {
		//temp = sfEls[i].firstChild.firstChild.data.toLowerCase();
		sfEls[i].onmouseover=function() {
			temp = this.firstChild.firstChild.data.toLowerCase();
			this.className+=" " + temp + "hover";
		}
		sfEls[i].onmouseout=function() {
			temp = this.firstChild.firstChild.data.toLowerCase();
			this.className=this.className.replace(new RegExp(" " + temp + "hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function swapBackground(which) {
	$("#bground").attr("src","images/juhr/juhr_m" + which + ".png")
}

function resetBackground() {
	$("#bground").attr("src","images/juhr/juhr.png")
}
