// AJAX contact form
$(function(){
	$("#ajax-contact-form").submit(function(){
        
        if($("#name").val()=="" || $("#email").val()=="" || $("#your-message").val()=="")
            {
                alert("Riempire tutti i campi");
                return false;
            }
	var result= "";
	var str = $(this).serialize();
	
	   $.ajax({
	   type: "POST",
	   url: "./mail.php",
	   data: str,
	   success: function(msg){
		
	//$("#note").ajaxComplete(function(event, request, settings){
	
	if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
	{
    //    alert("Il messaggio è stato inviato");
	//result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
	result="Il messaggio è stato inviato"
  //  $("#ajax-contact-form").hide();
	}
	else
	{
	result = msg;
	}
	document.contactForm.reset();
	//$(this).html(result);
    alert(result);
	
	//});
	
	}
	
	 });
	
	return false;
	
	});

});

