$().ready(function() {
	$('#writeComment').click(function() {
	  $('#comments').slideDown('slow');
	});
	$('#hideComment').click(function() {
	  $('#comments').slideUp('slow');
	});
});