$(function(){
	$("#refreshimg").click(function(){
		$.post('/includes/captcha/newsession.php');
		$("#captchaimage").load('/includes/captcha/image_req.php');
		return false;
	});
	
	$("#post_comment_form").validate({
		rules: {
			captcha: {
				required: true,
				remote: "/includes/captcha/process.php"
			}
		},
		messages: {
			captcha: "Correct captcha is required."	
		},
		submitHandler: function() {
			
			$.post("/includes/captcha/add_comment.php", {
					post_id: $("#post_id").val(),
					cname: $("#cname").val(),
					cemail: $("#cemail").val(),
					ccomment: $("#ccomment").val()

			},function(data) {

				jQuery.facebox(data);
				$("#cname").val('');
				$("#cemail").val('');
				$("#ccomment").val('');
				var post_id =  $("#post_id").val();
				getComments(post_id);	

			});
			
			
		},
		success: function(label) {
			captcha: "Correct!"	
			//label.addClass("valid").text("Valid captcha!")
		},
		onkeyup: false
	});
	
});
