$(document)
    .ready(function() {
    
        $("div#section div.slideshow")
            .slideshow({
                width: 300,
                height: 220,
                animationSpeed: 600,
                autoPlay: false,
                autoPlayInterval: 5000,
                caption: true,
                nextPrev: true,
                counter: false,
                pagination: true
            })
        ;
        
        $("div#section div.accordion")
            .accordion({
                showFirstItem: true,
                animationSpeed: 600
            })
        ;
        
        $("div#section.tabs")
            .tabs({
                showFirstTabContent: true
            })
        ;
        
        $("div#section div.tab-content div.slideshow div.items div.item a")
            .each(function(){
                
                $(this)
                    .attr('data-lightbox',''+ $(this).parents('div.tab-content').attr('id') +'')
                    .lightbox({
                        animationSpeed: 600
                    })
                ;
                
            })
        ;
        
        
    }
);
