jQuery(document).ready(function(){xOffset=10;
yOffset=20;
jQuery(".c2cToolTip").hover(function(a){this.t=this.title;
this.title="";
jQuery("body").append("<p id='c2cHoverText'>"+this.t+"</p>");
jQuery("#c2cHoverText").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px").fadeIn("fast")
},function(){this.title=this.t;
jQuery("#c2cHoverText").remove()
});
jQuery(".c2cToolTip").mousemove(function(a){jQuery("#c2cHoverText").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px")
})
});
