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