CommentaryForm = {
	response: function(e) {
		var el = e.memo.el;
		if (el.hasClassName('commentary-form')) {
			var nc = $('no-comments');
			nc && nc.remove();
		}
		el.reset();
		this.highlight.defer();
	},
	highlight: function() {
		$$('.commentary-list').first().select('.commentary').last().highlight({
			endcolor: '#E8E8E8'
		});
	}
};

//document.observe('quicklink:response', CommentaryForm.response.bind(CommentaryForm));

