DY=window.DY||{};
$(document).ready(function(){
//    if($.fancybox){
//        $("a[rel='lightbox']").fancybox();
//    }
/*
    //gestione menu
    DY.larghezzaCompleta=$('#menu').width();
    DY.numeroBottoni=$('.btnMenu').length;
    DY.larghezaBottoniTotale=0;
    $('.btnMenu').each(function(){
        DY.larghezaBottoniTotale+=$(this).outerWidth(true);
    })
    DY.paddingBottoni=Math.floor((DY.larghezzaCompleta-(DY.larghezaBottoniTotale))/(DY.numeroBottoni-1)/2);
    $('.btnMenu').each(function(index){

        if(index==0){
            $(this).css({
                'paddingLeft':DY.paddingBottoni+'px'
            });
        }else if (index==(DY.numeroBottoni-1)){
            $(this).css({
                'paddingRight':DY.paddingBottoni+'px'
                });
        }else{
            $(this).css({
                'paddingLeft':DY.paddingBottoni+'px',
                'paddingRight':DY.paddingBottoni+'px'
            });
        }
    });
//fine gestione menu
*/

$('#cicloImage div').cycle({
     delay:  2000,
    speed:  800
});
});


