    xOffset = -5;
    yOffset = 10;

    $(".tooltip").live('mouseover',function(e){
        this.t = this.title;
        this.title = "";
        $("body").append("<p id='tooltip'>"+ this.t +"</p>");
        $("#tooltip")
                .css({
                    "top":(e.pageY - xOffset) + "px",
                    "left":(e.pageX + yOffset) + "px",
                    position: "absolute"
                })
                .fadeIn("fast");
    });

    $(".tooltip").live('click', function(){
        $("#tooltip").remove();
    });

	$(".tooltip").live('mouseout',function(){
		this.title = this.t;
		$("#tooltip").remove();
    });


    $(".tooltip").live('mousemove', function(e){
        $("#tooltip")
            .css({
                "top":(e.pageY - xOffset) + "px",
                "left": (e.pageX + yOffset) + "px"
            });
    });
   
    
    
