var post_comment=null;var post_comment_fm=null;var name_input=null;var show_comment_fm=function(){$("#post_comment").show("fast",function(){$("#name").focus();if(!$("#comment").is(".ui-resizable")){$("#comment").resizable({maxWidth:535,minHeight:100,handles:"s"})}})};var hide_comment_fm=function(){$("#post_comment").hide("slow",function(){$("#comments-container").css({display:"block"});Blog.util.renderComments($("#post_comment_fm").find("#postid").val(),null,null)})};var submit_comment_fm=function(){$("#post_comment_fm").submit()};var enlargeTextarea=function(){$("#comment").parent().animate({height:"+=200px"},800);$("#comment").animate({height:"+=200px"},800)};$(function(){$("#post_comment_fm").validate({errorClass:"error",errorElement:"span",rules:{email:{required:true,email:true},name:"required",comment:"required"},messages:{name:" ",email:" ",comment:"<br>oops, you should comment!"},submitHandler:function(A){Blog.msg.alert("Posting comment...");$(A).ajaxSubmit({url:"action/main/comments/save/",success:function(B,C){if(B.success){Blog.msg.success()}else{Blog.msg.error()}hide_comment_fm()},dataType:"json"})}})})