function navigation( elmtId ) {

    $( elmtId+" .submenu" ).fadeOut(0);
    $( elmtId+" .menu-item" ).hover(
    function () {
        if ( $(this).find(".submenu:animated").length == 0 ) {
            $(this).find(".submenu").fadeIn(300);
            $(this).find('a').addClass( 'selected' );
      }
    },
    function () {
      $(this).find(".submenu").fadeOut(100);
      $(this).find('a').removeClass( 'selected' );
    }
    );
}

$(document).ready(function() {
    navigation( '#mainNav' );

    /* Ajout de la fancybox */
    $("a.contentimage").fancybox({
                'titleShow'     : false,
                'transitionIn'  : 'elastic',
                'transitionOut' : 'elastic'
            });
});
