$(document).ready(function(){
	$('body').append('<div id="ToolTipDiv"></div>');
	$('.tooltip').css('display', 'none');
	$('[tooltip]').css('cursor', 'help').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});
			}).css('color', 'white');
			var theRel = $(this).attr('rel');
			$('.tooltip').each(function(){
				if($(this).attr('rel') == theRel){
					info = $(this).html();
				}
			});
			$("#ToolTipDiv").html(info).stop(true,true).fadeIn("fast");
		}, function(){
			$("#ToolTipDiv").stop(true,true).fadeOut("fast");
			$(this).css('color', '#a5aab2');
		});
	});
});
