$('.expandMe').click(function() {
	if ($('#' + this.title).is(":hidden")) {
      $('#' + this.title).slideDown("slow");
      $(this).html('&laquo; verberg');
    } else {
      $('#' + this.title).slideUp("slow");
      $(this).html('meer &raquo;');
    }
});
