$(document).ready(function() {

	$('#sidebar_contact_submit').click(function() {
		$.post("/users/ajax_contact/", $("#sidebar_contact_form").serialize(), function(data) {
			$("#sidebar_contact_us").fadeOut('slow', function() {
				$("#sidebar_contact_us").html('<h4 class="squishy_h4">Thank You!</h4><p>One of our agents will get back to you as soon as possible.');
				$("#sidebar_contact_us").fadeIn('slow');
			});
		});	
		return false;
	});

});
