﻿var tooltip = function() {

	$("a.tooltip").hover(function(e) {
		this.t = this.title;
		this.title = "";

		$("<div />")
			.attr("id", "tooltip")
			.text(this.t)
			.css({
				top: (e.pageY - $("#tooltip").height() - 30),
				left: (e.pageX - ($("#tooltip").width() / 2))
			})
			.appendTo("body")
			.fadeIn("fast");
	}, function() {
		this.title = this.t;
		$("#tooltip").remove();
	});

	$("a.tooltip").mousemove(function(e) {
		$("#tooltip").css({
			top: (e.pageY - $("#tooltip").height() - 30),
			left: (e.pageX - ($("#tooltip").width() / 2))
		});
	});
};

$(document).ready(function() {
	tooltip();
});
