// CONTACT: FORM VALIDATION
// --------------------------------------------------
$(document).ready(function() {
	// SUCCESS AJAX CALL, replace "success: false," by:     success : function() { callSuccessFunction() }, 
	$("#schoolcontact").validationEngine()

	/* $("#formID").bind("submit", function(caller){ 	// Example use of the option returnIsValid
	alert($("#formID").validationEngine({returnIsValid:true}))
	
	return false
	}) */
	
	//$.validationEngine.buildPrompt("#date","This is an example","error")	 		 // Exterior prompt build example
	//$.validationEngine.closePrompt("#date") 										 // input prompt close example
	//$.validationEngine.closePrompt(".formError",true) 							// CLOSE ALL OPEN PROMPTS
});
