$(function(){
	$('#send-btn').unbind('click').click( function(){
		var formElements = $("form input, form textarea").serialize();
		$('#loading-responce').html( '' );		
		$('#send-status .loading').show();
		$.ajax({
			type: "POST",
			url: rootpath+'messages/send',
			data: formElements,
			success: function(wynik){
				$('#send-status .loading').hide();
				$('#loading-responce').html( wynik );
			}
		});
		
	});
});
