function toggle_comments() {
	var content = $('article_comment_panel');
	Effect.toggle(content, 'blind', {
		duration:0.5,
		queue:{scope:'menus', position:'end', limit: 3},
		afterUpdate:function(obj) {
			eq_col();
		}
	});
}

function scroll_to_comment() {
  $('article_commentry_title').scrollTo();
}

Event.observe(window, 'load', function() { 
//	toggle_comments();
	$('article_commentry_title').observe('click', toggle_comments);
	$('comment_on_this_story').observe('click', toggle_comments);
	$('comment_on_this_story').observe('click', scroll_to_comment);
	$('article_commentry_title').observe('click', toggle_comments);
}); // End of function
