$(document).ready(function() {
	$('#sidebar li h2').hide();
	$('#comments').hide();
	
	$('#postComment').click(function() {
		$('#comments').slideToggle('slow');							  
	});
	
	$('#topOfPage a[href=#]').click(function(){
    $.scrollTo(0,'slow');
    return false;
  });
});