    $(document).ready(function() {
    $('.toggler').click(function() {
      //$(this).next('div.extrabox').slideToggle('slow');
	  $(this).prev().slideToggle('slow');
      if($(this).html() == '« weniger') { $(this).html('mehr &raquo;'); } else { $(this).html('« weniger');}
    });
    });