// Core.js
$().ready(function() {
	$('#send-btn').click(function() {
		   $("#send-info").html('Идет отправка сообщения...');
				      
		   $.post("ajax/sendmail.php", { name: $("#name").val(), phone: $("#phone").val(), email: $("#email").val(),message: $("#message").val()  },
		   function(data){
			 $('#send-info').html(data).fadeIn();
		   });
	});
})
