//document is ready...
$(document).ready(function(){
	accordion();
	slideshow();
	toggleBio();
});

var accordion = function() {
	//hours
	$(".button.worship-schedule").click(function() { 
		var showOfficeHours = function() {
			$('#worship-panel').toggle("blind", {direction: "vertical"}, 800)	
		}

		if($('.panel:visible:not(#worship-panel)').length > 0) {
			$(".panel").filter(':visible:not(#worship-panel)')
			             .hide("blind", { direction: "vertical" }, 800, showOfficeHours);
		}else { showOfficeHours() }	
	});
		
	//contact
	$(".button.contact-us").click(function() {
		var showContactUs = function() {
			$('#contact-panel').toggle("blind", {direction: "vertical"}, 800)	
		}
		
		if($('.panel:visible:not(#contact-panel)').length > 0) {
			$(".panel").filter(':visible:not(#contact-panel)')
		             	.hide("blind", { direction: "vertical" }, 800, showContactUs);
		}else { showContactUs() }
	});	
}

var slideshow = function() {
	$('.slideshow').cycle({
		fx: 'fade',
		timeout: 8000,
		speed: 1000
	});
}

var toggleBio = function () {
	$('#staff .person .bio a').click(function () {
		//$(this).filter('.text').toggle("blind", {direction: "vertical"}, 800)
		//$(this).parent().children('.text').toggle("blind", {direction: "vertical"}, 800)
		$(this).parent().children('.text').toggle()
	});
}
