$(document)
    .ready(
        function() {
            $('body')
            .append(
                '<div class="tip" style="display:none;width:190px;height:92px;padding:20px;position:absolute;z-index:100;background:url(img/bubble.png) no-repeat"></div>');
            $(".screen").hover(function() {
                $(".tip").html($(this).attr("alt")).css( {
                    "top" : ((($(this).offset()).top) - 135),
                    "left" : ((($(this).offset()).left) - 30),
                    "opacity" : 0,
                    "display" : "block"
                }).stop().fadeTo("50", 1);
            }, function() {
                $(".tip").stop().hide();
            });
        });

        
