$(document).ready(function(){
    
    //
    // FANCYBOX
    // -------- 
    //
    $('.fancybox').fancybox({
        'titlePosition'     : 'over',
        'transitionIn'      : 'fade',
        'transitionOut'     : 'fade',
        'speedIn'           : 600,
        'speedOut'          : 200
    });
    
    //
    // COLLAPSIBLE PANELS
    // ------------------
    //
    $('.panel h3 a').toggle(function(){
        
        $(this).addClass('active');
        $(this).parent().parent().find('.panelcontent').slideDown(400);
        
    }, function(){
        
        $(this).removeClass('active');
        $(this).parent().parent().find('.panelcontent').slideUp(400);
        
    });
    
    //
    // HOME SUPERSIZE
    // --------------
    //
    if($('body').hasClass('home')){
        
        $.fn.supersized.options = {  
            startwidth: 1200,  
            startheight: 851,
            vertical_center: 1,
            slideshow: 1,
            navigation: 0,
            transition: 1,
            pause_hover: 1,
            slide_counter: 1,
            slide_captions: 1,
            slide_interval: 4500  
        };
        
        // initiate supersized
        $('#supersize').supersized(); 
    }
    
    

});
