$(function(){	$("table tbody tr:even td").addClass("even");	$("table tbody tr:odd td").addClass("odd");			var options = {         beforeSubmit:  validateForm,  // pre-submit callback         success:       showResponse,  // post-submit callback          // other available options:         //url:       url         // override for form's 'action' attribute         //type:      type        // 'get' or 'post', override for form's 'method' attribute         //dataType:  null        // 'xml', 'script', or 'json' (expected server response type)         clearForm: true ,       // clear all form fields after successful submit         resetForm: true        // reset the form after successful submit          // $.ajax options can be used here too, for example:         //timeout:   3000     };      // bind form using 'ajaxForm'     $(".ajaxSubmit").ajaxForm(options);		function validateForm() {		$(".validate-me input").each(function(){			if($(this).attr("class") == "required" && $(this).val() == ""){				$(this).addClass("error-validation");				$(this).after(" This field is required");				return_value = false;			}			else {				$(this).removeClass("error-validation");			}		});	}	function showResponse(responseText) {		$("#response").fadeIn("slow", function() {			$("#response").html(responseText);									   		});	}		$(".round").corners("bottom");			$("#footer a").each(function(){		$(this).attr("href",$(this).attr("href").replace("12351351351","@swiftproperties.net").replace("eqfdad","mailto:"));					 	});	});