$(document).ready(function() {
    $('#spverein').tooltip({ 
        effect: 'slide',
        position: 'top center',
        offset: [-250, -250]
    });
    
    $("a[rel=group]").fancybox({
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'titlePosition' : 'over',
        'titleFormat'   : function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });
    
    $('#teamslider').crossSlide({
        sleep: 3,
        fade: 1
    }, [
        { src: 'img/pics/team01.jpg' },
        { src: 'img/pics/team02.jpg' },
        { src: 'img/pics/team03.jpg' },
        { src: 'img/pics/team04.jpg' }
    ]);
});

