function paperIn(){
$("#content").css("top", window.innerHeight);
$("#content").css("display", "block");
$("#content").animate({top: "100px"}, 1000);
}

function paperOut($self){
$("#content").animate({top: window.innerHeight}, 300, "", function(){loadPage($self);});
}

function loadPage($self){
window.location.href = $self.attr('href');
}
