$(document).ready(function() {
	$('#comment_form').hide();
	$('#show_comments').click(function(){
		$('#comment_form').show('slow');
		$('#show_comments').hide();
		return false;
	});
});
