$(document).ready( function() {

	/*COTAÇÕES DE MOEDAS*/
	var ul = $('<ul></ul>').appendTo('#cotacoes');
	$('#indicadores tr').each(
		function() {
			var tds = $('td', this );

			if( tds.length == 3 )
			{
				if( $(tds[0]).text().length != 1 ) {
					$('<li> '+
						'<h3>'+ $(tds[0]).text() +'</h3>' +
						'<div class="compra">' +
							'<span>Compra</span>' +
							'<strong>'+ $(tds[1]).text() +'</strong>' +
						'</div>' +
						'<div class="venda">' +
							'<span>Venda</span>' +
							'<strong>'+ $(tds[2]).text() +'</strong>' +
						'</div>' +
					'</li>').appendTo( ul );
				}
			}
		}
	);

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


	/* video de reciclagem */
	$('#coluna_auxiliar_conteudo_capa ul.links li.reciclagem a').click( function(evt){ evt.preventDefault(); } );



});


