$(".pictip").live('mouseover', function(e){
/* CONFIG */
var xOffset = 20;
var yOffset = 5;
/* END CONFIG */
this.t = this.title;
this.title = ""; 
$("body").append("<p id='pictip'>"+ this.t +"</p>");
$("#pictip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn(250, function() { 

});
$(this).mousemove(function(e){
$("#pictip")
.css("top",(e.pageY - yOffset) + "px")
.css("left",(e.pageX + xOffset) + "px")
});
});
$(".pictip").live('mouseout', function(e) {
this.title = this.t;
$(this).die("mousemove", "mouseout");
$("#pictip").remove();

$(this).click(function(e){
$("#pictip")
.css("top",(e.pageY - yOffset) + "px")
.css("left",(e.pageX + xOffset) + "px")
});
});
$(".pictip").live('click', function(e) {
this.title = this.t;
$(this).die("mouseclick");
      $("#pictip").remove();

}); 