$(document).ready(function () {
	$("#msgfield").focus();
	
	var email = ''; //Don't leave email in plain view of spambots
	$("#goawayspambot").html("e-m" + "ail <a href='mail" + email + "to:contact" + "@bes" + "ms.com" + email + "'>contact" + email +"@besms" + ".com</a> or");
	$("#sfax").html("866"+"-746-7580");
	$("#sphone").html("908-" +"376-9101");
	$("#smail").html("228 Park Ave. S "+"#15025"+", New York, NY 10003");
	
	$("#submitbutton").click(function () { 
		$(this).val("Sending..."); 
		var jdata = $("#msgform").serializeArray();
		
		$.post("/ajax/contact", jdata, function(response){
			$("#sendresult").text(response);
			$("#submitbutton").val("Sent"); 
		});
		
	});
});