// JavaScript Document
/*$(document).ready(function(){
	$(".menuTitre").each(function(){
		$(this).click(function(){
			$(this).next().slideToggle("slow");
		});
	});
});*/


$(document).ready(function(){
	
	//on ajoute la fonction toggle aux entrées de menu
	$(".menuTitre").each(function(i){
		$(this).toggle(
			function(){
				$(this).next().animate({ height: 'show' }, 'normal');
			},	
			function(){
				$(this).next().animate({ height: 'hide' }, 'normal');
			}
		);
	});
	
	
	
	//on ouvre le menu de la section courante
	//$("#menu_"+section).click();		
});




