/**
 * @author webmaster
 */

jQuery(document).ready(function(){
	
	jQuery('#quote_form').validate({
  		errorLabelContainer : "#error_list",
  		wrapper: 'li',
  		messages: {
         fname: "Please specify your first name.",
  			 lname: "Please specify your last name.",
  			 email: {
           required: "Please enter an email address.",
           email: "Your email address must be in the format of name@domain.com."
         },
  			 phone: "Please enter a phone number.",
  			 num_windows: "Please enter the number of windows.",
  			 sach_size_w: "Please enter the approximate width, in inches, of the window sash.",
  			 sach_size_h: "Please enter the approximate height, in inches, of the window sash.",
  			 year_built: "Please enter the approximate year the building was built."			 
       }
	});
	
	
	

})



