$(document).ready(function(){
   $("a.smoothkriteria").toggle(function(){
     $(".kriteria").animate({ height: 'show', opacity: 'show' }, 'slow');
   },function(){
     $(".kriteria").animate({ height: 'hide', opacity: 'hide' }, 'slow');
   });
 });

 //show und hide vertauscht, weil das Element zu beginn ausgeklappt ist
 $(document).ready(function(){
   $("a.smoothmanu").toggle(function(){
     $(".manu").animate({ height: 'hide', opacity: 'hide' }, 'slow');
   },function(){
     $(".manu").animate({ height: 'show', opacity: 'show' }, 'slow');
   });
 });
