$(document).ready(function(){
	$("#community").hide();  
	$("#community-tab a").click(function(){
		$("#community").slideToggle("slow")
		$("#about").hide("slow");
		$("#bereavement").hide("slow");
	});
	$("#about").hide();  
	$("#about-tab a").click(function(){
		$("#about").slideToggle("slow")
		$("#community").hide("slow");
		$("#bereavement").hide("slow");
	});
	$("#bereavement").hide();  
	$("#bereavement-tab a").click(function(){
		$("#bereavement").slideToggle("slow")
		$("#community").hide("slow");
		$("#about").hide("slow");
	});
	
});









