$(document).ready(function(){
   expandToggle();
});
function expandToggle(){
    $(".target").hide();
    $(".trigger").click(function(){
       if ($(this).hasClass("open")){
           $(this).next(".target").slideToggle(400, function(){
                 $(this).prev(".trigger").toggleClass("open");
           });
       }   else {
           $(this).toggleClass("open");
           $(this).next(".target").slideToggle(400);
       }
   });
}
