$(document).ready(function(){

	$('a[href=#show_comments]').click(function(){
		$('div.comments').show();
		$(this).hide();
	});
	
	$('#flash_header').show();
	
	
});