$(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**********/
   	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "190px"
		})
		.animate({
			height: "170px"
		}, "fast");
		$("div.panel_button").toggle();
	});	

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