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 gotoSermon() {
  var x=document.getElementById("sermonLists")
  if(x.selectedIndex==0) y=1;
  //if(x.selectedIndex==1) window.location="/multi-media/sermon-archives/sermon-archives-series/";
  if(x.selectedIndex==1) window.location="/multi-media/sermon-archives/sermon-archives-category/";
  if(x.selectedIndex==2) window.location="/multi-media/sermon-archives/sermon-archives-date/";
  if(x.selectedIndex==3) window.location="/multi-media/sermon-archives/sermon-archives-speaker/";
}