$(document).ready(function(){
	$('#content-container').css('margin-top', '0');
	$('#finalround').hide();
	$('h2 a').click( function() {
	window.scrollTo(0,0);
	var subpage = $(this).attr('id');
			switch(subpage) {
				case 'firstClick':
					$('#finalround').hide();
					$('#firstround').show();
					break;    
				case 'finalClick':
					$('#firstround').hide();
					$('#finalround').show();
					break;    
				default:
					$('#finalround').hide();
					$('#firstround').show();
	
	 		}
			return false;
	});

});
