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;
}

addEvent(window, 'load', sermonjump);
function sermonjump() {
	var x = document.getElementById('sermonLists');	
	if(x) {
		x.onchange = function() {
			if(this.selectedIndex == 1) window.location = '/mcms_page_sermonlist_sort.php?groupby=series';
			if(this.selectedIndex == 2) window.location = '/mcms_page_sermonlist_sort.php?groupby=category';
			if(this.selectedIndex == 3) window.location = '/mcms_page_sermonlist_sort.php?groupby=month';
			if(this.selectedIndex == 4) window.location = '/mcms_page_sermonlist_sort.php?groupby=preacher';
		}
	}
}