
// -----------------------------------------------------------------------------
function write_fecha_hora() {
    $("#lafecha").text(get_fecha());
    var hr = get_hora();
    hr = hr.slice(0,8);
    $("#lahora").html(hr);

    $("#menutax").html($("#menutax").html());
};

// -----------------------------------------------------------------------------
$(document).ready(function() {
    write_fecha_hora();
    setInterval(write_fecha_hora, 60000);
});