    $(document).ready(function() {
        // Hover me at the top
        $("#center-right").hover(function() {
            if ($(".hover", this).css("display") == "block") { return false; }
            os = $(this).offset();
            $("span.hover", this).css({top: os.top+"px", left: os.left+150+"px"}).animate({top: os.top-100+"px", opacity: "show"}, 500);
        },
        function() {
            os = $(this).offset();
            $(".hover", this).animate({top: os.top+"px", opacity: "hide"}, 500);
        });
    });
