$(document).ready(function(){
   $("#contactform").submit(function(){
   var str = $(this).serialize();
   $.ajax({
   type: "POST",
   url: "contactform.php",
   data: str,
   success: function(msg){
   $("#contactnote").ajaxComplete(function(event, request, settings){
      if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
      {
         result = '<div class="notification_ok">Ihre Nachricht wurde verschickt. Vielen Dank!</div>';
         $("#contactfields").hide();
      }
      else
      {
         result = msg;
      }
      $(this).html(result);
   });
   }
   });
   return false;
   });

   $('#haftungsausschluss').hide();
   $('#haftungsausschlusss').toggle(
      function(){
         $('#haftungsausschluss').show('slow'); // Einblenden
      },
      function(){
         $('#haftungsausschluss').hide('slow'); // Ausblenden
      }
   );

   $("#portfolio div.vorne img").hover(function(){
      $(this).animate({
        opacity: 0,
      }, 500 );
    },function(){
      $(this).animate({
        opacity: 1,
      }, 500 );
    });

});