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

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

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

});
