$(document).ready(function() {
	$("#send_new_message").click(function() {
		var message = {"receiver_uid": $("#receiver_uid").val(), "message": $("#new_message").val()};
		jQuery.post("/send_message_to_user", message, function(data) {
			location.href = location.href;
		}, 'json');
	});
});

