$().ready(function() {
	$('#writeComment').click(function() {
	  $('#comments').slideDown('slow');
	});
	$('#hideComment').click(function() {
	  $('#comments').slideUp('slow');
	});
	$('#site').corner("round 7px")
	$('#footer').corner("round 7px")
});