$(function(){
	$("#refreshimg").click(function(){
		$.post('http://www.achieverspoint.com/jquery_call/newsession.php');
		$("#captchaimage").load('http://www.achieverspoint.com/jquery_call/image_req.php');
		return false;
	});
	
	$("#captchaform").validate({
		rules: {
			captcha: {
				required: true,
				remote: "http://www.achieverspoint.com/jquery_call/process.php"
			}
		},
		messages: {
			captcha: "Correct captcha is required. Click the captcha to generate a new one"	
		},
		/*submitHandler: function() {
			alert("Correct captcha!");
		},*/
		submitHandler: function() {
			
		},
		success: function(label) {
			
		},
		onkeyup: false
	});
	
});






