document.observe("dom:loaded", function(){
	$$('div.add-a-comment').each(function(el, i){
		new PostComment(el.select('a.toggler')[0], el);
	});
});

