$(document).ready(function(){ //Définir la fonction de clic
 
	$('#logo,#encart_contact').hover(function(){
		$(this).stop().fadeTo(400,'0.75');
	},function(){
		$(this).stop().fadeTo(400,'1');
	});

   
   		$("a.thickbox, a[rel='lightbox']").fancybox({
			'hideOnContentClick': false,
			imageScale : true
		}); 
		/* Largeur / hauteur en px de la fancybox "Conseiller à un ami" */
		$("a#box_ami").fancybox({
			frameWidth : 300,
			frameHeight : 200
		}); 
		 /* Largeur / hauteur en px de la fancybox "Mentions légales" */
		/*$("a#box_ml").fancybox({
			
			'hideOnContentClick': false,
			frameWidth : 500,
			frameHeight : 500
		}); */
		if(document.all){
			$("a#box_fav").click(function(){
				window.external.AddFavorite(location.href, document.title);
			});
		}else{
		/* Largeur / hauteur en px de la fancybox "Ajout aux favoris" */
			$("a#box_fav").fancybox({ 
				'hideOnContentClick': true,
				frameWidth : 400,
				frameHeight : 100			 
			});
		}
   
 });





