$(document).ready(function(){

	$("form.sendform").ajaxStart(function(){
	   $(this).animate({ 
			opacity: 0.4									
		}, 250);													   				   
	 });
	 $("form.sendform").ajaxStop(function(){
	   $(this).animate({ 
			opacity: 1
		}, 250);	
	 });	
  
	$("form#Formular input#submit").click(function() {
      var fields = $("form#Formular :input").serialize();
    
     $.ajax({
       type: "POST",
       url: "http://vistamedia.cz/alpha/colinsyacht/core/exec/sendform-rpc.php",
       data: fields,
       dataType: "html",
       success: function(data){
        if (data == "") {
          $("form#Formular").load("http://vistamedia.cz/alpha/colinsyacht/theme/inc/sendform-uspech-html.php");
          window.location.hash = "#dekujeme";                    
        }
        else { // jsou chyby
         $("form#Formular .sendform-chyby").empty();
         $("form#Formular .sendform-chyby").html(data);
        }
       }
     });

    return false;
	});   		 
});	