//dynamic top navigation
function gotoSermon() {
  var x=document.getElementById("sermonLists")
  if(x.selectedIndex==0) y=1;
  if(x.selectedIndex==1) window.location="/spiritual-life/messages/sermon-series/";
  if(x.selectedIndex==2) window.location="/spiritual-life/messages/sermon-category/";
  if(x.selectedIndex==3) window.location="/spiritual-life/messages/sermon-months/";
  if(x.selectedIndex==4) window.location="/spiritual-life/messages/sermon-preachers/";
}

$(document).ready(function(){
	//nav dropdowns
	$('#nav').superfish({
		delay: 500,
		autoArrows: false,
		dropShadows: true
	  });
	  
	$('#footer .ql-footer ul li:last-child, #nav li:last-child, #nav li li:last-child').addClass('last');
	$('#nav li:first-child, #nav li li:first-child').addClass('first');
	
	$('#search_term').removeClass('clearClick').addClass('clickClear');
	 $('.clickClear').focus(function() {
	    startText = $(this).val();
	    $(this).val('').addClass('focus');
	 });

	$('.login .thickbox, #comments .thickbox').colorbox({iframe:true,width:400, height:250});
	$('.rsvp .thickbox, #subnav .thickbox').colorbox({iframe:true,width:450, height:600});
	$('#options .thickbox,.section .thickbox').colorbox({iframe:true,width:500, height:570});
	
}); //@end doc ready

