$(document).ready(function(){
	$('body').append('<div id="ToolTipDiv"></div>');
	$('[tooltip]').next().css('display', 'none').end().each(function(){
		$(this).hover(function(e){
			$(this).mousemove(function(e){
				var tipY = e.pageY + 16;
				var tipX = e.pageX + 16;
				$("#ToolTipDiv").css({'top': tipY, 'left': tipX});
			});
			var info = $(this).next().html();
			$("#ToolTipDiv").html(info).stop(true,true).fadeIn("fast");
		}, function(){
			$("#ToolTipDiv").stop(true,true).fadeOut("fast");
		});
	});
});
