$(document).ready(function() {
  $("div.persoon_tekst").show();
  $("div.persoon_kop").click(function() {
    $(this).next("div.persoon_tekst").slideToggle(300);
  });
});