$(function(){
	var end = (new Date()).addDays(90).asString();
	$('.date-pick').datePicker({dateFormat: 'dd/mm/yyyy',endDate:end});

	$("#refreshimg").click(function(){
		//$.post('newsession.php');
		$("#realimage").attr('src','/formlib/captcha.php?'+Date.now());
		return false;
	});
	
	$("#test").validate({
		rules: {
			captcha: {
				required: true,
				remote: "/formlib/captcha.php"
			}
		},
		messages: {
			captcha: "Correct captcha is required. Click the captcha to generate a new one"	
		},
		success: function(label) {
         //$("#test").submit();
			//alert("Correct captcha!" + label);
			//$("label[for='captcha']").addClass("valid").text("Valid captcha!"); 
			//label.addClass("valid").text("Valid captcha!")
		},
		onkeyup: false
	});
	
});
