$(function() {
    // cache les sous-menus au chargement de la page
    var sMenus = $('ul.sMenu');
    sMenus.filter(':not(.open)').hide();
    // Affiche ou cache les sous-menus lors du click sur le lien adéquat :
    $('span.trigger').each(function() {
        var txt = $(this).text();
        $(this)
        .replaceWith($('<a href="#" title="">' + txt + '</a>')
            .click(function()
            {
                if ($(this).next('ul.sMenu:visible').length == 0)
                {
                    sMenus.filter(':visible').slideUp(250);
                    $(this).next('ul.sMenu').slideToggle(250);
                }
                else
                {
                    $(this).next('ul.sMenu').slideToggle(250);
                }
                return false;
            })
        )
    })
    /* ILLUSTRATIONS */
    $('#illustration ul.cycle').cycle({ timeout: 10000, speed: 1500, delay: -5000, pause: true });

})

