$(document).ready(function(){
    jQuery('.lightbox').not('.noLightbox').lightBox({
        overlayBgColor: '#000',
        overlayOpacity: 0.9,
        containerResizeSpeed: 350,
        txtImage: 'Image',
        txtOf: 'of'
    });
    
    animateGallery();
    
    
    /**
     * @desc Gallery Animieren
     */
    function animateGallery(){
        var gallery = $('#gallery');
        
        gallery.find('li').first().clone().appendTo(gallery.find('ul'));
        gallery.find('li').first().fadeOut(2500, function(){
            $(this).remove();
            animateGallery();
        });
        markListElements(gallery);
    }
    
    function markListElements(gallery){
        gallery.find('li').each(function(index){
            $(this).attr('id', 'images_'+index).css({
                'z-index': 100-10*index
            });
        });
    }
});

