function sfHover() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(" over", "");
		}
	}
}
// Moved into page so the menu will work before page is fully loaded
//if (window.attachEvent) window.attachEvent("onload", sfHover);
function ie_menu() {
	//sneeking a click to activate flash fix in here
	fls = document.getElementsByTagName("object");
	for (var a = 0; a < fls.length; a++){fls[a].outerHTML = fls[a].outerHTML;}
}
