$(function(){
	$("#refreshimg").click(function(){
		$.post('newsession.php');
		$("#captchaimage").load('image_req.php');
		return false;
	});
	
	$("#kontakt").validate({
		rules: {
			captcha: {
				required: true,
				remote: "include/obrazek/process.php"
			}
		},
		messages: {
			captcha: "<br><center>To pole jest wymagane.</center>"	
		},
		//submitHandler: function() {
			//alert("Correct captcha!");
		//},
		success: function(label) {
			label.addClass("valid").text(" ")
		},
		onkeyup: false
	});

	
});

