$(document).ready(function() {

//	SOUS MENU :

	$('.menuHorizontal ul').css('display','none');
	$('.menuHorizontal li').hover(
						function(){
							$(this).find('ul').stop(true,true).slideDown();
						},
						function(){
						   $(this).find('ul').stop(true,true).slideUp();
						}
	);
	
	
//	PANEL FOOTER :

	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "260px"
		})
		.animate({
			height: "240px"
		}, "fast");
		$("div.panel_button").toggle();
	});	

	$("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "30px"
		}, "fast");
	});
	

//	ENCART ACTUALITES :

	$("div.panel_button2").click(function(){
		$(".encart_actu").animate({height: "50px"}, "fast");
		$("div.panel_button2").toggle();
		$("div#show_button2").css('display', 'none');
   	});
	
	
	$("div#hide_button2").click(function(){
		$(".encart_actu").animate({height: "170px"}, "fast");
		$("div#hide_button2").css('display', 'none');
		$("div#show_button2").css('display', 'block');
   	});


});
