this.tooltip = function() {
    this.x = 10; // x distance from mouse
    this.y = 0; // y distance from mouse       

    $(".box img").unbind().hover(
        function(e) {
            this.title = '';
            $(this).top = (e.pageY + y); 
            $(this).left = (e.pageX + x);
            $('body').append('<p id="tooltip">' + $(this).parent().parent().find('p.description').text() + '</p>');

            $('p#tooltip').css("top", this.top + "px").css("left", this.left + "px").fadeIn("slow");

        },
        function() {
            this.title = this.t;
            $("p#tooltip").fadeOut("slow").remove();
        }
    ).mousemove(
        function(e) {
            this.top = (e.pageY + y);
            this.left = (e.pageX + x);

            $("p#tooltip").css("top", this.top + "px").css("left", this.left + "px");
        }
    );

};

jQuery(document).ready(function($) { tooltip(); }) 
