
function init(){
	if($("commentsTitle")){
		Element.setStyle("commentlist", {display:"none"});
		Event.observe($("commentsTitle"), "click", toggleComment, false);
	}
}


function toggleComment(){
	Effect.toggle($("commentlist"),'blind');
}

Event.observe(window,'load',init);