$("#contact_form").submit(function() {
    $.post('mail.php', {name: $('#name').val(), email: $('#email').val(),betreff: $('#betreff').val(), nachricht: $('#nachricht').val(), senden: 'yes'},
      function(data) {
        $("#formResponse").html(data).fadeIn('slow'); /* fading in the thank you message */
      }, 'text'); $("#formResponse").slideDown('800');
    return false;
});
