$(function(){

	$.post(
		'/aplicaciones/getTrees.php'
		, function (xml){
			$(xml).find('digito').each(function(index, value){

				$('#cont' + index).attr('src', 'http://www.earthsiembraelfuturo.org/images/' + $(value).text() + '.png');
			});
		}
	);
	
});