$j(document).ready(function($j) {

	$j("#comments").hide();

	$j("#comment_control").click(function () {
		$j("#comments").slideToggle();
	});

});