(function($) {
 $.fn.phTip = function(options) {
	var opts = $.extend({},$.fn.phTip.defaults, options), tp = "#tpjqui112358", titles = '';
 	
	$("body").append('<div id="tpjqui112358" style="display:none; position:absolute; text-align:center; width:100px;"></div>');		
	
	$(this).mouseover(function(){		
		titles = $(this).attr('title');
		$(tp).html(titles);
		$(this).attr('title', '');
		$(tp).attr('style','display:none; position:absolute; text-align:center; width:100px;');
		$(tp).css(opts.styles);
		$(tp).show().fadeTo("fast",50);		
	}).mousemove(function(e){
		$(tp).css({
			top:e.pageY+22,
			left:e.pageX+10
	});
	}).mouseout(function(){
		$(tp).hide();
		$(this).attr('title', titles);
	}).click(function(){
		$(tp).hide();
		$(this).attr('title', titles);
	});
 }
 
 $.fn.phTip.defaults = {
	zindex: 100000,
	styles: {}
 }

})(jQuery);