$(document).ready(function(){
	$("form.form").bind("keyup", blah).bind("click", blah).bind("focus", blah);
	$(".formwarning").remove();
	$("form.form input[type='text']:first").focus();
	function blah() {
		$(this).prepend('<input type="hidden" name="_Verify" value="ok" />');
		$(this).attr("action", "Education_incursion_contact_confirmation.asp");
		$(this).find("input:submit").attr("disabled", false);
		$(this).unbind("keyup", blah).unbind("click", blah).unbind("focus", blah);
	}
});