$(document).ready(function(){

    $("#popup_sections").hide();

    // diaporamas des actus
    if($("div#photos div.panel").length > 1) {
        $('div#photos').galleryView({
            panel_width: 310,
            panel_height: 200,
            frame_width: 20,
            frame_height: 20,
            transition_speed: 150,
            transition_interval:3000,
            nav_theme: 'light',
            background_color:'transparent',
            border: 'none',
            pause_on_hover: true,
            overlay_height: 0,
            overlay_position: 'bottom',
            overlay_opacity: 0.50,
            show_filmstrip: false,
            show_panels: false,
            show_captions: false
        });
    }

    // diaporamas des images jointes aux articles (pour "Equipement")
    $('div#photos_article').galleryView({
        panel_width: 480,
        panel_height: 360,
        frame_width: 20,
        frame_height: 20,
        transition_speed: 150,
        transition_interval:3000,
        nav_theme: 'light',
        background_color:'transparent',
        border: 'none',
        pause_on_hover: true,
        overlay_height: 40,
        overlay_position: 'bottom',
        overlay_opacity: 0.70,
        show_filmstrip: false,
        show_panels: false,
        show_captions: false
    });

    // lightbox section
    $().ceebox();
    $(".ico-3").click(function() {
        $.fn.ceebox.popup($("#popup_sections").html(),{
            borderWidth : "3px",
            borderColor : "#0590B7",
            width : "1020",
            height : "540",
            overlayColor : "#000000",
            zIndex:"10000"
        });
    })
    
});
