//---------------------------------------------
$(document).ready(function () {

    //AUTOBOX
    $('.jsautobox').autobox();

    $(".JSimageBox").livequery(function(){
        $(this).pryImageBox({
            typeOut : true
        });
    });
    $(".JSimageBoxIn").livequery(function(){
        $(this).pryImageBox({
            typeOut : false
        });
    });

    //NYROMODAL
    $('.nyroModalPop').nyroModal({
        addImageDivTitle: false
    });

    
    //PINTA
    //$('.Nav li').eq(2).addClass("Active");



    //PRENDE
    $('.Nav>ul>li').mouseover(function(){
        numpos = $('.Nav>ul>li').index($(this));
        $('.Desplegable>div').hide();
        $('.Desplegable>div').eq(numpos).show(200);
    })
    //APAGA
    $('body').mousemove(function(event) {
        valorY = event.pageY
        if (valorY > 420){
            $('.Desplegable>div').hide();
        }
        if (valorY < 100){
            $('.Desplegable>div').hide();
        }
    });
    
    $( ".datepicker" ).datepicker({ changeYear: true, yearRange: '1930:<?=date("Y");?>' });
        
      
});

	
//---------------------------------------------


