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