jQuery(document).ready(function($){
	var $paneTarget = $(window);
	
	$('#select-esp').click(function(){
		$paneTarget.stop().scrollTo('#menu.esp', 800 );
	});
	
	$('#select-eng').click(function(){
		$paneTarget.stop().scrollTo('#menu.eng', 800 );
	});
	
	// Indicadores Economicos
	$('#valores').load('cochilco.php #precios_tabla', function() {
		$('#valores tr:last, #valores th:eq(1), #valores td:eq(1), #valores th:last, #valores td:eq(4)').remove();
		var $valores = $('#valores').html();
		$('.valores_metales').html($valores);
	});
});
