// Init menu jquery ayme truffe

$(document).ready(function() {
			$('#menu li').mouseover(function() { $(this).find('ul#ss_presentation').show(150); });
			$('#menu li').mouseleave(function() { $(this).find('ul#ss_presentation').hide(150); });
			
			$('ul#ss_presentation li').mouseover(function() { $(this).find('ul#ss_activites').show(150); });
			$('ul#ss_presentation li').mouseleave(function() { $(this).find('ul#ss_activites').hide(150); });
			
			$('#menu li').mouseover(function() { $(this).find('ul#ss_truffe').show(150); });
			$('#menu li').mouseleave(function() { $(this).find('ul#ss_truffe').hide(150); });
			
			$('#menu li').mouseover(function() { $(this).find('ul#ss_gastronomie').show(150); });
			$('#menu li').mouseleave(function() { $(this).find('ul#ss_gastronomie').hide(150); });
			
			$('p.intitule_progressif').fadeIn(2000);
			/*$('p#intitule').css('visibility','visible').show(600);*/
});
