$().ready(function(){
	   $("#register_form1").validate({
		rules: {			
			primaryemail : {				
				required: true,
				email: true
			},
			chk_policy: "required",
			parentname: "required",
			date_frame: "required"
		},
		messages: {				
			primaryemail: "Please enter the valid email",
			chk_policy: "You must agree to the terms listed herein to submit this application",
			parentname: "Please enter the name",
			date_frame: "Please enter the date"
		}				   
	 });
	 
	 $("#register_form2").validate({
		rules: {
			primaryemail: {
				required: true,
				email: true
			},
			chk_policy: "required",
			parentname: "required",
			date_frame: "required"
		},
		messages: {
			primaryemail: "Please enter the valid email",
			chk_policy: "You must agree to the terms listed herein to submit this application",
			parentname: "Please enter the name",
			date_frame: "Please enter the date"
		}				   
	 });  
	 
	 $("#sdc_register_form").validate({
		rules: {
			primaryemail: {
				required: true,
				email: true
			},
			chk_policy: "required",
			parentname: "required",
			date_frame: "required"
		},
		messages: {
			primaryemail: "Please enter the valid email",
			chk_policy: "You must agree to the terms listed herein to submit this application",
			parentname: "Please enter the name",
			date_frame: "Please enter the date"
		}				   
	 });  
});