jQuery(document).ready(function(){ 
    //Menu déroulant
    function menuover(){ jQuery(this).children('ul.level_2').fadeIn('fast'); }
    function menuout(){ jQuery(this).children('ul.level_2').hide(); }
    var menuconfig = { over: menuover,out: menuout, timeout: 500 };
    jQuery('#header .mod_navigation ul.level_1 li').hoverIntent(menuconfig);
    //Slide accroches acceuil
    //jQuery('#slide-accroche-article div.liste-accroche').scrollable({ items:'.ce_teaser',circular : true,next : 'a.next',prev: 'a.previous',speed: 2000 }).autoscroll({ autoplay: true, autopause: true, interval: 6000 });
    //Lightbox
    jQuery('a[rel!=""]').colorbox();
    //Menu déroulants
    jQuery('div.widget select.select').sSelect();
});

