// JavaScript Document
//This file contains the main function for the main content slider script on the portland faith center page
$(document).ready(function(){

	$(".btn-slide3").click(function(){
		$("#panel3").slideToggle("slow");
		$(this).toggleClass("active3"); return false;
	});
	
	 
});
