/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {
    $(".pwdname").click(function(){
        var pwd = $(this).next().html();
        $(".input").fadeIn(300);
        $("#overlay").fadeIn(300);
    });
    $(".close").click(function(){
        $(".input").fadeOut(300);
        $("#overlay").fadeOut(300);
    });

    $("#rec").click(function(){
        mimasterpwd = $("#masterpwd").attr("value");
        $("#masterpwd").attr("value", "");
        $(".input").fadeOut(300);
        $("#overlay").fadeOut(300);
        setTimeout(olvidar, 10 * 60 * 1000);
    });
});

function cargarTarifas(){
    document.getElementById('detalleReserva').innerHTML= "A";
}