$('#nav li a').click(function(e) {
	e.preventDefault();
	var hash = $(this).attr('href');
	$.scrollTo(hash, 1500, {easing:'easeInOutExpo'}, function() { window.location.hash = hash; });
});
