$(document).ready(function() 
{
	
	/*
	 * Setup the masks for the forms using the jQuery mask plugin.
	 * If this script is included, so is the mask plugin.  When setting up
	 * Zend_Form objects, the classes shown below will need to be set
	 * in order for the masks to hit the form.
	 */
	$('.phoneInput').mask("(999) 999-9999");
	
	
	
	
});