    $(document).ready(function() {
        $("#hover-top").hover(function() {
            if ($(".hover", this).css("display") == "block") { return false; }
            os = $(this).offset();
            $("div.hover", this).css({
              top:  os.top+"px",
              left: os.left+5+"px"
            }).animate({
              top: os.top-100+"px",
              opacity: "show"
            }, 750);
        },
        function() {
            os = $(this).offset();
            $(".hover", this).animate({top: os.top+"px", opacity: "hide"}, 500);
        });
    });
