$(document).ready(function(){
	
	// If on load you want a person showing automatically enter the number in both .eq()
	// Example is if you want the first person to being showing you put .eq(0) in both lines
	$(".adminDirectory h4").eq().addClass("active");
	$(".adminDirectory p").eq().show();

	$(".adminDirectory h4").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h4").removeClass("active");
	});

});
