nome_arquivos[0] = 'xml/telemig_celular.xml';
nome_arquivos[1] = 'xml/telemig_part.xml';
nome_arquivos[2] = 'xml/vivo.xml';

tag_ativos="COTACOES";
campo_variacao = "variacao";

function carregarTodos(){
	cot_telecel = new Cotacao(1, 0);
	setTimeout("cot_telecel.carregar(0)", 1000);
	
	cot_telepart = new Cotacao(2, 0);
	setTimeout("cot_telepart.carregar(1)", 1250);
	
	cot_vivo = new Cotacao(3, 0);
	setTimeout("cot_vivo.carregar(2)", 1500);
}
setInterval("carregarTodos()", 60000);
carregarTodos();
