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

    $(".accordions h4").click(function(){

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