var tip;
$(document).ready(function(){
	$('a.tt').mouseover(function(e) {
		tip = $(this).attr('title');	
		$(this).attr('title','');
		$(this).children().attr("alt","");
		$("body").append('<div id="tt"><span>' + tip + '</span></div>');		
		$('div#tt').fadeIn("slow");
	}).mousemove(function(e) {
		$('div#tt').css('top', e.pageY - 0);
		$('div#tt').css('left', e.pageX + 20 );
	}).mouseout(function() {
		$(this).attr('title',tip);
		$(this).children().attr("alt","");
		$("div#tt").remove();
	});
});
