$(document).ready(function() {
	$(".aboutNav").click(function(){
		 $.scrollTo("#home", {duration: 800, axis:"y"});
	});
	
	$(".recentWorkNav").click(function() {
		$.scrollTo("#workhome", {duration: 800, axis:"y"});
	});
	
	$(".infoNav").click(function(){
		 $.scrollTo("#footer", {duration: 800, axis:"y"});
	});
 });
