nome_arquivos[0] = 'xml/cotacoes.xml';
nome_arquivos[1] = 'xml/soja_fut.xml';

tag_ativos="COTACOES";
campo_variacao = "variacao";

function carregarTodos(){
	cot_cotacoes = new Cotacao(1, 0);
	setTimeout("cot_cotacoes.carregar(0)", 1000);
	
	cot_sojafut = new Cotacao(2, 0);
	setTimeout("cot_sojafut.carregar(1)", 2000);
	
}
setInterval("carregarTodos()", 60000);
carregarTodos();