$(document).ready(function(){

 $(".accordion h6:first").addClass("active");
 //$(".accordion div:first").hide();
 $(".accordion div:not(:first)").hide();

 $(".accordion h6").click(function(){
 $(this).next("div").slideToggle("slow")
 .siblings("div:visible").slideUp("slow");
 $(this).toggleClass("active");
 $(this).siblings("h6").removeClass("active");
  });

});
