jQuery(document).ready(function(){
$('.info').hover(function(){
	txt = $(this).attr('title');
	$(this).append('<div class="bubble">' + txt + '</div>');
	$(this).attr('title', '');
	$(this).css('position', 'relative');
},
function(){
	txt = $('.bubble', this).html();
	$(this).attr('title', txt);	
	$('.bubble', this).remove();
});
});

