jQuery(document).ready(function() {
	
	// Expand Panel
	jQuery("#BCCopen").click(function(){
		jQuery("div#BCCpanel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	jQuery("#BCCclose").click(function(){
		jQuery("div#BCCpanel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	jQuery("#BCCtoggle a").click(function () {
		jQuery("#BCCtoggle a").toggle();
	});		
		
});


// This is for sermonbrowser!
jQuery(document).ready(function() {
		var filter_visible = false;
		jQuery('#mainfilter').hide();
		jQuery('#mainfilter2').hide();
		jQuery('#show_hide_filter').html('<span><img src="http://www.bexleyheathcommunitychurch.co.uk/images/filter14x14.png" alt="Show filter" style="vertical-align:top;padding-right:5px;"  /> Show filter</span>');
		jQuery('#show_hide_filter').addClass('nodlpodcastbutton');
		jQuery('#show_hide_filter').click(function() {
			jQuery('#mainfilter2:visible').slideUp('slow');
			jQuery('#mainfilter2:hidden').slideDown('slow');
			jQuery('#mainfilter:visible').slideUp('slow');
			jQuery('#mainfilter:hidden').slideDown('slow');
			if (filter_visible) {
				jQuery('#show_hide_filter').html('<span><img src="http://www.bexleyheathcommunitychurch.co.uk/images/filter14x14.png" alt="Show filter" style="vertical-align:top;padding-right:5px;"  /> Show filter</span>');
				jQuery('#show_hide_filter').addClass('nodlpodcastbutton');
				filter_visible = false;
			} else {
			
				jQuery('#show_hide_filter').html('<span><img src="http://www.bexleyheathcommunitychurch.co.uk/images/hidefilter14x14.png" alt="Hide filter" style="vertical-align:top;padding-right:5px;"  /> Hide filter</span>');
				jQuery('#show_hide_filter').addClass('nodlpodcastbutton');
			
				filter_visible = true;
			}
			return false;
		});
		jQuery('.podcastcustom').hide();
	});
