$(document).ready(function () {
							$('#menuGauche ul').css('display','none');
							$('#menuGauche li').hover(
													function(){
														$(this).find('ul').stop().animate({'height':'129px'},250);
													},
													function(){
														$(this).find('ul').stop().animate({'height':'0px'},250);
													}
													);
							}
							);

$(document).ready(function(){
	$('#menuhorizontal').find('ul').css('display','none');
	$('#menuhorizontal li').hover(
		function(){
			$(this).find('ul').stop(true, true).slideDown(250);	
		},
		function(){
			$(this).find('ul').stop(true, true).slideUp(250);		
		}
	);
});
