jQuery(document).ready(function(){
    
    $("a[rel^='prettyPhoto']").prettyPhoto({
        theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
    });

    $(".datepicker").datepicker({
        dateFormat: 'dd-mm-yy'
    });
    verificarFlechas();
});

var indiceApuntado = 0;
var indiceMax = 0;

function moverPasador(direccion) {
    if(direccion == 'der' && indiceApuntado < indiceMax) indiceApuntado++;
    else if(direccion == 'izq' && indiceApuntado > 0) indiceApuntado--;
    var destino = indiceApuntado * 141;
    $("#pasador").stop(true, false);
    $("#pasador").animate({
        left: "-"+destino+"px"
    }, 600, "swing", verificarFlechas);
}

function verificarFlechas() {
    if(indiceApuntado == 0) $("#fle-izq").fadeOut('slow');
    else $("#fle-izq").fadeIn('slow');
    
    if(indiceApuntado == indiceMax) $("#fle-der").fadeOut('slow');
    else $("#fle-der").fadeIn('slow');
}
