$(document).ready(function(){

	/*COTAÇÕES DE MOEDAS*/
	var dolarComercialCompra = $('#indicadores table tbody tr:nth-child(2) td:nth-child(2)').html();
	$('#coluna-cotacoes .cotacoes ul li.dolar-comercial .compra strong').html(dolarComercialCompra);

	var dolarComercialVenda = $('#indicadores table tbody tr:nth-child(2) td:nth-child(3)').html();
	$('#coluna-cotacoes .cotacoes ul li.dolar-comercial .venda strong').html(dolarComercialVenda);

	var dolarParaleloCompra = $('#indicadores table tbody tr:nth-child(3) td:nth-child(2)').html();
	$('#coluna-cotacoes .cotacoes ul li.dolar-paralelo .compra strong').html(dolarParaleloCompra);

	var dolarParaleloVenda = $('#indicadores table tbody tr:nth-child(3) td:nth-child(3)').html();
	$('#coluna-cotacoes .cotacoes ul li.dolar-paralelo .venda strong').html(dolarParaleloVenda);

	var euroDolarCompra = $('#indicadores table tbody tr:nth-child(4) td:nth-child(2)').html();
	$('#coluna-cotacoes .cotacoes ul li.euro-dolar .compra strong').html(euroDolarCompra);

	var euroDolarVenda = $('#indicadores table tbody tr:nth-child(4) td:nth-child(3)').html();
	$('#coluna-cotacoes .cotacoes ul li.euro-dolar .venda strong').html(euroDolarVenda);

	var euroRealCompra = $('#indicadores table tbody tr:nth-child(5) td:nth-child(2)').html();
	$('#coluna-cotacoes .cotacoes ul li.euro-real .compra strong').html(euroRealCompra);

	var euroRealVenda = $('#indicadores table tbody tr:nth-child(5) td:nth-child(3)').html();
	$('#coluna-cotacoes .cotacoes ul li.euro-real .venda strong').html(euroRealVenda);

	$('#indicadores').remove();

});


