$(function(){
	$('#reply_div form').ajaxForm({
		success: function(data) {
			$('#reply_div').before(data.comment);
			$('#reply_div').hide();
		},
		fail: function(xmlhttp, ts) {
			alert("AJAX Failed: "+xmlhttp.responseText);
		}
	});
	$('a.comment_reply').click(function(){
		// show form
		$('#reply_div').appendTo($(this).parent().parent()).show();
		$('#reply_div textarea').val('');
		$('#reply_div input[name=parent_id]').val($(this).attr('href').substring(1));
		return false;
	});
});


