/**
	LANDING

$(function() {
	$("#content blockquote span").click( function(){
		console.log("got it");
		$("span.me")
			.animate({ bottom: "-5px" }, {duration: "slow", easing: "easeOutBack"} )
			.animate({ bottom: "-200px" }, {duration: "slow", easing: "easeOutBack"} )
		;
	});
	
	$("#yu").click( function(){
		console.log("yu");
		$("#yu img")
			.animate({ left: "0", height: "100%", width: "100%" }, {duration: "slow", easing: "easeOutBounce"} )
		;
	});
	
});

*/