espace_restaurants_monte = false;
espace_entreprises_monte = false;
var obj = null;

function checkHover() {
  if (obj) {
	 obj.find('ul').fadeOut('fast');
  } //if
} //checkHover

 $('#menu-jp ul.racine > li').hover(function() {
	 if (obj) {
		obj.find('ul').fadeOut('fast');
		obj = null;
	 } //if

	 $(this).find('ul').fadeIn('fast');
  }, function() {
	 obj = $(this);
	 setTimeout(
		"checkHover()",
		400);
  });
  $('#menu-jp ul.elements > li').hover(function() {
	 $(this).addClass('selectionne');
  }, function() {
	 $(this).removeClass('selectionne');
  });
