/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var currency_base="MXN";
var currencies={
    dollar:{
        code:"USD",
        name:"Dolar"
    },
    euro:{
        code:"EUR",
        name:"Euro"
    }
};
$(document).ready(function(){    
    //$.ajaxSetup({async:false});   
    $.each(currencies, function(){ 
        $.getJSON("php/exchange.php", "from="+this.code +"&to="+currency_base+"&name="+this.name, function(data){                      
            var res="<tr><td>"+data.name+"</td><td>"+data.result+"</td></tr>";
            $("#tbl_exchange").append($(res));
        })                
    })
    $("#span_exchange-date").text(""+new Date().format("yyyy-mm-dd HH")+":00");
    $('#tbl_exchange tr:even').removeClass("ui-priority-secondary");
    $('#tbl_exchange tr:odd').addClass("ui-priority-secondary");
//$.ajaxSetup({async:true})
    
})



