function submitComment(){
		
		//alert($("#comment_form").length);
		
	if($("#userComment").val() == ''){

		$("#commentError").css("display","block");	
	
	}else{
	
		if($("#commentEmail").val() == ''){
			$("#commentEmail").addClass("error");
			$("#commentError").css("display","block");			
		}else{
			if($("#commentName").val() == ''){
				$("#commentName").addClass("error");
				$("#commentError").css("display","block");	
			}else{
				$.ajax({
				  type: 'POST',
				  url: $("#comment_form").attr("action"),
				  data: $("#comment_form").serialize()
				});
			}	
		}

	}	
}



function showReplyFrm(el){
	$('.replyForm').each(function(){
		$(this).hide();
	});	
	
	$("#"+el).show();
}




