$(document).ready(function() {
	$("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});}
			
	$('#logo').hover(function() {
   		$(this).find('img').stop().animate({ opacity: '0.6' }, 250);
  	}, function() {
    	$(this).find('img').stop().animate({ opacity: '0.8' }, 250);
   	});
	$('#encarts div').hover(function() {
   		$(this).children(".haut").stop().animate({ top: '50' }, 250);
  	}, function() {
    	$(this).children(".haut").stop().animate({ top: '66' }, 250);
   	});
	$('#menu2 li').click(function() {
		$('#menu2 li ul').stop().slideUp();
   		$(this).children("ul").stop().slideDown();
  	});
	$('#btn').click(function() {
		$(this).toggleClass('fermer');
		if($(this).is('.fermer'))
		{
			$(this).html('Fermer la navigation');	
		}
		else
		{
			$(this).html('Voir la navigation');	
		}
   		$("#panel").stop().slideToggle();
  	});
});


      

