function doSomething(x) {
	if (x=="nav_contact") c="current_contact"; 
	else if (x=="nav_home") c="current_home";
	else c="current";
	var y=document.getElementById('nav').className;
	if (y)	document.getElementById(y).className="nav";
	document.getElementById(x).className=c;
	document.getElementById('nav').className=x;
}

function gotoSermon() {
  var x=document.getElementById("sermonLists")
  if(x.selectedIndex==0) y=1;
  if(x.selectedIndex==1) window.location="/mcms_page_sermonlist_series.php?nav=p-8527";
  if(x.selectedIndex==2) window.location="/mcms_page_sermonlist_category.php?nav=p-8524";
  if(x.selectedIndex==3) window.location="/mcms_page_sermonlist_month.php?nav=p-8525";
  if(x.selectedIndex==4) window.location="/mcms_page_sermonlist_preacher.php?nav=p-8526";
}