/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
   leerCotizaciones();
   //leerClima();
   
});
function mostrarCotiz(value) {
    llenarCotizaciones(value);
}

function llenarCotizaciones(str_cotiz) {

    var arr_cotiz = str_cotiz.split("|");
    var i = 0;

    for (i=0;i<arr_cotiz.length;i++) {
        llenarCotiz(arr_cotiz[i],i+1);
    }

}

function llenarCotiz(cot, index) {

    var arr_cot = cot.split("-");

    $("#compra"+index).html(arr_cot[1]);
    $("#venta"+index).html(arr_cot[2]);

}

function mostrarTiempo(value) {
    llenarTiempos(value);
}

function llenarTiempos(str_tiempo) {

    var arr_tiempo = str_tiempo.split("|");
    var i = 0;

    for (i=0;i<arr_tiempo.length;i++) {
        llenarTiempo(arr_tiempo[i],i+1);
    }

}

function llenarTiempo(t, index) {

    var arr_t = t.split("-");

    $("#minima"+index).html(arr_t[1]);
    $("#maxima"+index).html(arr_t[2]);
    $("#detalle"+index).html(arr_t[3]);

}

