//CONTACT FORM
function submitForm() {
		function verify(data) {
				if (data=="1") {
					//success
					$("#contact_form").html("<strong>Thank You</strong><br>Your message has been submitted.");
				}
				else {
					//error
					alert(data);
				}
		}

		$.post("process/send_message.asp", $("#frmMessage").serialize(), function(data){ verify(data) } );		
}
