$(document).ready(function(){ //Définir la fonction de clic
 
		$("a.thickbox, a[rel='lightbox']").fancybox({
			'hideOnContentClick': false,
			imageScale : true
		}); 
		
		$("a#box_ami").fancybox({
			frameWidth : 300,
			frameHeight : 200
		}); 
		
		if(document.all){
			$("a#box_fav").click(function(){
				window.external.AddFavorite(location.href, document.title);
			});
		}else{
		
			$("a#box_fav").fancybox({ 
				'hideOnContentClick': true,
				frameWidth : 400,
				frameHeight : 100			 
			});
		}
   
   $("#input_newsletter").val("Saisissez votre email ...");
   $(".all_actu a").html('» Voir toutes nos actualités');
   
   
   /*****************PANEL FOOTER*************/
   	$("#btn_menu").click(function () {
      $("#btn_menu").stop(0,1).toggleClass("btn_menu_bis");
	});

	$("#btn_show").click(function(){
            $(".footer").animate({height: "190px"});
            $(".panel_button").toggle();
        });       
        $("#btn_hide").click(function(){
            $(".footer").animate({height: "20px"});
            $(".panel_button").toggle();
        });
	
	var opened=false;
	$('#btn_menu').click(function() {
		if(!opened) {
			$('#menu').stop().animate({'height':'202px'},250);
			opened=true;
			return false;
		}
		else {
			$('#menu').stop().animate({'height':'0'},250);
			opened=false;
			return false;
		}
	});
/********************************************************/
   
 });
