(function($){
 $.fn.ftip = function() {
    return this.each(function() {
    	var tooltip_id = $(this).attr('class').replace('tipper ', '');
		$(this).mouseover(function(e){
			var f_pageY = e.pageY + 5;
			var f_pageX = e.pageX + 10;
			$('#' + tooltip_id).fadeIn("fast");
		});
		
		$(this).mouseleave(function(){
			$('#' + tooltip_id).fadeOut("fast");
		});
    });
 };
})(jQuery);

