function readyPromoForm() {
	$(".promo_submit").click(function() {
	// validate and process form
	// first hide any error messages
	$('.error').hide();
	
	var name = $("input#promo_name").val();
	
	var email = $("input#promo_email").val();
	var practice = $("input#promo_practice").val();
	var phone = $("input#promo_phone_1").val()+$("input#promo_phone_2").val();
	var promo_code = $("input#promo_code").val();
	
	var dataString = 'name='+ name + '&email=' + email + '&phone=' + phone + '&practice=' +practice + '&promo_code=' +promo_code;
	//alert (dataString);return false;
	
	$.ajax({
	type: "POST",
	url: "promo_action.php",
	data: dataString,
	success: function() {
	$('#flashcontent_modal').html("<div id='message'></div>");
	$('#message').html("<h2>Promo Code Submitted!</h2>")
	.append("<p>We will contact you shortly with the promotion information you requested. <br /><a class=\"light\" style=\"cursor:pointer\" onclick=\"closePromoWindow()\">Close</a></p>")
	.hide()
	.fadeIn(1500);
	}
	});
	return false;
	});
}

function closePromoWindow() {
	$('#loading_window').jqm().jqmHide();
}