$(document).ready(function() {

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

   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "10px"
		}, "fast");
   });
   
   
   
   //////////////////// Liens animés 
   
   $('.liens').hover(
	 	function() {
			$(this).stop().animate({'marginRight':'45px'});		
		}, function() {
			$(this).stop().animate({'marginRight':'25px'});									  
	});
   
   
  /////////// galery
  
	$('.gal a').hover(function() { 
		$(this).stop().animate({'opacity':'0.5'});
	}, function () { 
		$(this).stop().animate({'opacity':'1'});
							   
	
	});
	
	
	//////////////// slider index
	
	 $('#mycarousel2').bxSlider({
			 prevText: '‹ previous ',
            nextText: 'next ›'   });
	 
	$('#mycarousel').bxSlider(); 
	
	$('.bx-prev, .bx-next').html('');

	
	////////////// cartes et menus 
	
	if ($('.description').html() == '' ) {
			$('.description').css('display','none');

	}
	
	///////// footer
	$('.btn_footer a span').css('opacity','0');
	
	$('.btn_footer a').hover(function() { 
		$(this).find('span').animate({'opacity':'1'});
		}, function() { 
		$(this).find('span').animate({'opacity':'0'});
	});
	

	
	
	
   

   
});
