$(document).ready(function(){commentStepStart()});

function commentStepStart(){
  $(".commentstepform").unbind();
  $(".commentstepform").ajaxForm({
    method:"POST",
    success:function(data){
      $(".commentstepform").find('.button').show();
      var data = eval(data);
      if (data.status == 1)
        $(".commentstepform").find('input[type=text]').val('')
      showTopMessage(data.response);
      $.post(data.refresh,'geth=1&parent='+data.parent,function(data){
        data = eval(data);
        $("#comments-"+data.parent).html(data.html);
      });
      $('input[@type="text"]').attr('value','');
      $('textarea').attr('value','');
      $(".commentstepform").find('button').click(function(){return true});
    }	,
    beforeSubmit:function(){
      $(".commentstepform").find('.button').hide();
      showOverlay();
    }
  });
}

