$(document).ready(function(){
   $(function() {
        $('.gallery a').lightBox();
    });
    
   $("#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;
   });
   $("#catalogform").submit(function(){ // Catalogform
   var str = $(this).serialize();
   $.ajax({
   type: "POST",
   url: "catalogform.php",
   data: str,
   success: function(msg){
   $("#catalognote").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 Kataloge werden Ihnen in K&uuml;rze zugesandt. Vielen Dank!</div>';
         $("#catalogfields").hide();
      }
      else
      {
         result = msg;
      }
      $(this).html(result);
   });
   }
   });
   return false;
   });
});


// Video
function Video () {
 document.getElementById('video').style.visibility = 'visible';
 document.getElementById('videobutton').style.visibility = 'hidden';
}
