$(document).ready(function(){

	$(".tx-gbsimplereferencelist-pi1 h4:first");
	$(".tx-gbsimplereferencelist-pi1 .toogler").hide();
	
	$(".tx-bzdstaffdirectory-pi1 h4:first");
	$(".tx-bzdstaffdirectory-pi1 .toogler").hide();

	$(".tx-gbsimplereferencelist-pi1 h4").click(function(){
		$(this).next(".toogler").slideToggle("slow")
		.siblings(".toogler:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h4").removeClass("active");
	});
	
	$(".tx-bzdstaffdirectory-pi1 h4").click(function(){
		$(this).next(".toogler").slideToggle("slow")
		.siblings(".toogler:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h4").removeClass("active");
	});	
	

});