$(document).ready(function(){
  $('a[rel="senden"]').click(function(){
    $("div.senden").toggle();
    return false;
  });

  $('a[rel="senden-top"]').click(function(){
    $('html, body').animate({scrollTop:185}, 'slow'); 
    $("div.senden").toggle();
    return false;
  });


  $('a[rel="themen"]').click(function(){
    $("div.themen").toggle("slow");
    return false;
  });  


  $('div.themen').click(function(){
    $('div.themen').hide("slow");
  });
});

