$(document).ready(function() { 
 $("div.mehrtext").hide();
    $('a.toggle').click(function() { 
      $("div.mehrtext").toggle("slow"); 
      if($(this).html() == 'weiterlesen +') { $(this).html("Text schließen -"); } else { $(this).html('weiterlesen +');} 
    }); 
    }); 

    $(window).load(function () {
      $("div.Subnavi").toggle("slow"); 
    });
$(window).load(function () {
      $("div.mehrtextfly").toggle("slow");
    });

