$(document).ready(function(){

	$('.tootip').each( function(){
		$(this).hover(function(){
			texto = $(this).attr('title');
			//alert(texto);
			$(this).append('<div class="tooltip">' + texto + '</div>');
			$(this).attr('title','');
		}, function(){
			$(this).empty();
			$(this).attr('title', texto);
		});
	
	});

});
