$(document).ready(function(){
	// Move the main content off the page
	$("#content").css('left', '-3000%');
	$("#content").animate({ opacity:1}, 100);
	$("#content").animate({ left:0}, 1000, 'swing');
	
	//bind click functions to navigation
	$("#navigation a").click(function () {
		var link = $(this).attr('href');
		$("#content").animate({ left:'3000%'}, 1000, 'swing', function() {
			setTimeout($(document.location).attr('href', link), 1);
		});
		return false;
	});
});
