$(document).ready(function() { $("#balloon").css({top:300}, 100); $("#tweet_container").hide(300); $("#bird").hover( function(){ $("#tweet_container").show(300); } ); $("#tweet_container").hover( function(){ $("#tweet_container").show(300); }, function(){ $("#tweet_container").show(300).hide(300); } ); $(".tree").hover( function(){ $(this).animate({margin:3}, 300); }, function(){ $(this).animate({margin:0}, 200); } ); $(".cloud").hover( function(){ $(this).animate({margin:5}, 300); $("#balloon").animate({top:20}, 12000); }, function(){ $(this).animate({margin:0}, 300); } ); $("#balloon").click( function(){ $(this).animate({top:300}, 2000); } ); $("#plane").hover( function(){ $(this).animate({right:185}, 300); }, function(){ $(this).animate({right:175}, 1000); } ); $("#snail").click( function(){ $(this).animate({left:245}, 18000); } ); $("#hogs").click( function(){ $(this).animate({left:900}, 9000); } ); });