$(function(){
	$("#refreshimg").click(function(){
		$.post('/include/js/jquery/plugin/jquery.validator/newsession.php');
		$("#captchaimage").load('/include/js/jquery/plugin/jquery.validator/image_req.php');
		return false;
	});
	
	$("#captchaform").validate({
		rules: {
			captcha: {
				required: true,
				remote: "/include/js/jquery/plugin/jquery.validator/process.php"
			}
		},
		messages: {
			captcha: "Immettere le lettere visualizzate. Cliccare sull'immagine per generarne una nuova"	
		},
		submitHandler: function() {
			//alert("Correct captcha!");
			return true;
		},
		success: function(label) {
			label.addClass("valid").text("Valid captcha!")
		},
		onkeyup: false
	});
	
});

