//Open and close the comments box

window.addEvent('domready', function() {
	$$('.comments_toggle').each(function(el) {
		var href = el.get('href');
		href = href.substr(href.lastIndexOf('#') + 1);
		$(href).set('slide').slide('hide');
		//Togles the comment-box in and out
		el.addEvent('click', function(e){
			e.stop();
			$(href).slide('toggle');
		});
	});
});