﻿$(document).ready(function () {
    $('.imgDropMenu').css("display", "block"); //On affiche la fleche drop down que si javascript est activé
    $(".imgDropMenu").hover(function () { //lorsque la souris passe sur l'image de drop down
        $(this).parent().find('#SubMenuProduits').slideDown('slow'); //Affiche le sous menu en déroulant
        $(this).parent().addClass('openedSubMenu');
        //callback de hover
        $(this).parent().hover(function () {
        }, function () { //fonction callback du callback de hover ==> donc lorsque le hover s'arrete
            //When the mouse hovers out of the subnav, move it back up
            $(this).parent().find('#SubMenuProduits').slideUp('fast').parent().removeClass('openedSubMenu'); 
        });
    });
});

