
function NwsToolTip(t) {

    $(t).hover(function(e){
        $('#' + this.id + '_show')
            .css("top",  (e.pageY - 20) + "px")
            .css("left", (e.pageX + 25) + "px")
            .show();
        },
        function(){
            $('#' + this.id + '_show')
            .hide();
        }
    );

    $(t).mousemove(function(e){
         $('#' + this.id + '_show')
            .css("top",  (e.pageY - 20) + "px")
            .css("left", (e.pageX + 25) + "px");
    });

};


