
$(document).ready(function(){
	
	$(".accordion div:first").addClass("active");
	$(".accordion p:not(:first)").hide();

	$(".accordion div").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("div").removeClass("active");
	});

});
