$(document).ready(function(){
	$('#menu-extra a').mouseover( function() {
		$('.legenda').html($(this).attr('title'));
	});

	$('#menu-extra a').mouseout( function() {
		$('.legenda').html('');
		
	});
	
});
