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

function commentStepStart(){
	$(".commentstepform").unbind();
	$(".commentstepform").ajaxForm({
		method:"POST",
		success:function(data){
			var data = eval(data);
			showTopMessage(data.response);
			$.post(data.refresh,'geth=1&parent='+data.parent,function(data){
				data = eval(data);
				//document.getElementById("commentstep").innerHTML = data;
				$("#"+data.parent).html(data.html);
				});
			$('input[@type="text"]').attr('value','');
			$('textarea').attr('value','');
			
			
			
		}	,
		beforeSubmit:function(){
		 	 
			showOverlay();
		}
	
	
	});
}
