window.onload = function() {$('#bg img, .story').hide().fadeIn(1500);};

$(function() {


$('li').css('cursor','pointer').hover(function(){

$(this).find('h1').stop().css({display:'block'}).animate({top:-32,opacity:1},450,'easeOutQuart')
}, function() {
$(this).find('h1').stop().animate({top:-22,opacity:0},450,'easeOutQuart',function(){$(this).css({display:'none'})})

});


});







