﻿


jQuery(window).load(function() {
 jQuery("#block-menu-menu-menu-produits ul li ul").css("display","none");
 jQuery("#block-menu-menu-menu-produits ul li").hover(
  function () {
    jQuery(this).find("ul").fadeIn(500);
  },
  function () {
    jQuery(this).find("ul").fadeOut(500);
  }
);
	
});;

