// JavaScript Document
$(function() {
	$("#frm_ContactUs").validate();
	$("#phone").mask("(999)999-9999");
	// matches US ZIP code allow either five digits or nine digits with an optional '-' between
	jQuery.validator.addMethod("zipcode", function(zip){zip = zip.replace(/^\s+/, "");zip = zip.replace(/\s+$/, "");if(zip.length == 0){return true;}if(zip.match(/^\d{5}([- ]?\d{4})?$/)) {return true;}return false;}, "Please specify a valid US ZIP code");
});
