(function($){
 $.fn.ftip = function() {
    return this.each(function() {
    	var tooltip_id = $(this).attr('class').replace('tipper ', '');
		$(this).mouseover(function(e){
			$('#' + tooltip_id).fadeIn("slow").css({
				'position' : 'absolute'
			});
		});
		
		$(this).mouseleave(function(){
			$('#' + tooltip_id).fadeOut("slow");
		});
    });
 };
})(jQuery);
