$(window).load(function() {
	if(window.location.hash != "") {
		var hash = window.location.hash;
		$(hash).fadeIn('slow');
		$(hash + '-link').addClass('current-bio');
		window.scrollTo(0, 0);
	}
	else {
		$('#bio').fadeIn('slow');
		$('#bio-link').addClass('current-bio');
	}
	$('#biography-nav a').click(function() {
		var page = $(this).attr('rel');
		$('#biography-nav a').removeClass('current-bio');
		window.location.hash = page;
		$('.bio_content').hide();
		$('#' + page).fadeIn('slow');
		$('#' + page + "-link").addClass('current-bio');
	});
});
