$(document).ready(function(){
	//add onclick to each nav, fade text from button to current heading
	$('#nav li').click(function(event){
		cur = $('#current h1');
		txt = $(this).text();
		cur.fadeOut('normal', function(){cur.text(txt);});
		cur.fadeIn('normal');
	});
});