jQuery(document).ready(function() {
  jQuery(".inhoud").hide();
  //toggle the componenet with class msg_body
  jQuery(".hoofd").click(function()
  {
    jQuery(this).next(".inhoud").slideToggle(100);
  });
});
