$(document).ready(function(){
    
    $('.slides').cycle({fx: 'fade'});
    var a = $("a[rel=fancybox]");
    if(a.children().size() > 0){
        $("a[rel=fancybox]").fancybox({
            'transitionIn':'none',
            'transitionOut':'none',
            'titlePosition':'over',
            'cyclic':true,
            'centerOnScroll' : true,
            'titleFormat':function(title, currentArray, currentIndex, currentOpts) {
                return '<span id="fancybox-title-over">' + title + ' <br/> Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' </span>';
            }
         });
    }

});

