jQuery(document).ready(function(){
	jQuery("#menu li").each(function(){
   jQuery(this).mouseover(function(){
	 
     jQuery(this).children("ul").show("slow");
     jQuery(this).prev().children("ul").slideUp("pretty");
     jQuery(this).siblings().children("ul").slideUp("pretty");
   });
});
jQuery("body").click(function(){
  jQuery("#menu li ul").fadeOut("slow");
});
});
/*
var obj = null;
function checkHover() {
	if (obj) {
		obj.find('.fleche').fadeOut('slow');
		obj.find('ul').slideUp('pretty');
	} //if
} //checkHover
jQuery(document).ready(function() {
	jQuery("#menu li p.fleche").slideUp("slow");
	jQuery("#menu").show("slow");
	jQuery('#menu li').hover(function() {
		if (obj) {
			obj.find('.fleche').fadeOut('slow');
			obj.find('ul').slideUp('pretty');
			obj = null;
		} //if
		jQuery(this).find('.fleche').slideDown('pretty');
		jQuery(this).find('ul').slideDown('slow');
	}, function() {
		obj = jQuery(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
});*/