   $(document).ready(function(){
   $('.info-link-headline').click(function(event){     
    $(this).next('.show-detailed-info').toggle('fast');
    $(this).toggleClass('infobox-arrow');
  });
});
