
function send()
{
	var data = $("#contacts").serialize();
	$.ajax({
		url: 'send_contacts.php',
		type: 'post',
		data: data,
		success: function message(response) {
			if (response.match('Information has been sent')) {
				$("#contacts")[0].reset();
			}
			alert(response);
		}
	})
}


