(function($) {
	this.tooltipsForAll = function(){            
		xOffsetTooltip = 0;
	    yOffsetTooltip = -5;     
	    $("[data-content-tooltips]").hover(function(e){
				$("body").append("<div id='tooltipsForAll'>"+ $(this).attr("data-content-tooltips") +"</div>");
				$('#tooltipsForAll').css("top",(e.pageY - yOffsetTooltip) + "px").css("left",(e.pageX - ($("#tooltipsForAll").width()/2)) + "px").fadeIn("fast"); 
		    },
		    function(){
		        $("#tooltipsForAll").remove();
		    }
	    ).mousemove(function(e){
	    	if ($("#tooltipsForAll").length>0) $("#tooltipsForAll").css("top",(e.pageY - yOffsetTooltip) + "px").css("left",(e.pageX - ($("#tooltipsForAll").width()/2)) + "px");
	    	else $(this).hover();
	    });                     
	};
})(jQuery);
