$(document).ready(function(){
	
	$(".accordion2 h2:first").addClass("active");
	$(".accordion2 p:not(:first)").hide();

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

});
