// JavaScript Document
$(document).ready(function(){
        $('#gallery').galleryView({
            show_panels: true,
            show_filmstrip: false,
            
            panel_width: 715,
            panel_height: 398,
            frame_width: 60,
            frame_height: 40,
            
            start_frame: 1,
            filmstrip_size: 3,
            transition_speed: 1000,
            transition_interval: 8000,
            
            overlay_opacity: 0.8,
            frame_opacity: 0.3,
            
            pointer_size: 8,
            
            nav_theme: 'dark',
            easing: 'swing',
            
            filmstrip_position: 'bottom',
            overlay_position: 'bottom',
            
            panel_scale: 'crop',
            frame_scale: 'crop',
            
            frame_gap: 20,
            
            show_captions: false,
            fade_panels: true,
            pause_on_hover: false
        });
    });
