$(document).ready(function() {
	$("#urlapForm").validate( {
		submitHandler : function(form) {
			$(form).ajaxSubmit(function(data) {
				var jsonData  = eval('(' + data + ')');;
				if(jsonData["success"] != "true")
				{
					$("#captcha").attr("src", "reloadcaptcha.php?reload="+Math.random());
					$("#urlapForm #captchakod").clearFields();
				}
				else
				{
					$("#urlapForm").clearForm();
				}
				$("#messageBody").text(jsonData["message"]);
				$.blockUI( {
					message : $("#message"),
					css: {
						top:  ($(window).height() - 250) /2 + 'px', 
						left: ($(window).width() - 250) /2 + 'px', 
						width: '250px',
						cursor: 'default'
					}
				});
			});
		}
	});
});
