// jQuery
$(function(){
	// Carrega o XML da equipe
	var equipeXML = $.ajax({
		type: "GET",
		dataType: "xml",
		url: "media/xml/equipe.xml",
		success: function(xml){
			// Sorteia e coloca um item no rodapé
			var $pessoaTotal = $(xml).find('pessoa').size();
			var $pessoaIndex = Math.floor(Math.random()*$pessoaTotal);
			$(xml).find('pessoa:eq('+$pessoaIndex+')').each(function(){
				var $pessoa = $(this);
				$('#meio-container').find('#foto').html('<img src="'+$pessoa.attr('home')+'" width="449" height="500" alt="Exemplo" />')
				.end().find('#frase p').html($pessoa.find('frase').text())
				.end().find('#identificacao strong').html($pessoa.attr('nome'))
				.end().find('#identificacao span').html($pessoa.attr('cargo'));
			});
		},
		error: function(request,error) {
			console.error(error);
		}
	});
});
