this.tooltip = function() {
	$(".tooltip").hover(function(e) {
		this.t = this.title;
		this.bac = this.t;
		this.title = "";

		$("body").append("<p id='tooltip'>" + this.t + "</p>");
		$('#tooltip').css({
			'position' : 'absolute',
			'display' : 'none'
		});
		$("#tooltip").css({
			"top" : e.pageY - 30,
			"left" : e.pageX + 25
		}).fadeIn("fast");
	}, function() {
		this.title = this.bac;
		$("#tooltip").fadeOut("fast", function() {
			$("#tooltip").remove();
		});
	});
};
