//

function reply(cid) {
	$('#replyto' + cid).after($('#commentform'));
	$('#replyto_id').val(cid);
	$('#respond').click(function() {
		$('#replyto_id').val(0);
		$(this).after($('#commentform'));
	});
	return false;
}