function mostrar_legenda(id){
	var i=1;
		for (i=1;  i<=117 ;   i++) {
		
			if (i != id){
			document.getElementById('legenda_'+i).style.display='none'
				  $(document.getElementById('legenda_'+i)).animate({
					opacity: 0,
				  }, 100, function() {
					// Animation complete.
				  });
			}
			else {
			document.getElementById('legenda_'+id).style.display='block'
			
			 $(document.getElementById('legenda_'+id)).animate({
   				 opacity: 1,
				  }, 600, function() {
					// Animation complete.
				  });
			}
		}
}

function esconder_legenda(){
	var i=1;
		for (i=1;  i<=117 ;   i++) {
			
			 $(document.getElementById('legenda_'+i)).animate({
  				  opacity: 0,
			  }, 100, function() {
				// Animation complete.
			  });
			document.getElementById('legenda_'+i).style.display='none'
			
		}
}
