LoanPrescreen_class = function() {
	this.init();

}

LoanPrescreen_class.prototype.init = function() {
	this.events();
}

LoanPrescreen_class.prototype.events = function(){

}


$(document).ready(function() {
    $("#loan-match").validity(function() {
    	var loanMatch =  $("#loan-match");
	   	$('input[name="business-name"]',loanMatch)
	    .require();
	    
	     $('input[name="business-phone"]',loanMatch)
	   // .match('phone')
	    .require();
	    
	    $('input[name="email"]',loanMatch)
	    .match('email')
	    .require();
	    
	     $('input[name="business-address"]',loanMatch)
	    .require();
	    
	     $('input[name="business-city"]',loanMatch)
	    .require();
	    
	     $('input[name="business-state"]',loanMatch)
	    .require();
	    
	    $('input[name="business-zipcode"]', loanMatch)
	   	.match('zip')
	    .require();
	    
	     $('input[name="first-name"]',loanMatch)
	    .require();
	    
	      $('input[name="last-name"]',loanMatch)
	    .require();
    });
   
 });





