$(function () {
  $("div.expand > h6").click(function () {
    $(this).toggleClass("clicked");
    $(this).next().slideToggle(200);
  });
});

