// JavaScript Document
$(document).ready(function() {
		$('#menu ul').css('display','none');
		$('#menu li').hover(
			function(){
				$(this).find('ul').stop(1,1).fadeIn();	
			}, function(){
				$(this).find('ul').stop(1,1).fadeOut();	
			}
		);
						   
						   
		//document.getElementById('NL_box').innerHTML="<span>Inscrivez-vous</span> à notre lettre d'information";
		$("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			 
			});
		}
		$('.clic').hover(function() { //mouse in
   		$(this).stop().animate({ opacity: '0.75' }, 250);
   }, function() { //mouse out
    	$(this).stop().animate({ opacity: '1' }, 250);
   }); 
		/*$('#logo').hover(function() { //mouse in
		if(jQuery.support.opacity)
   			$(this).find("img").stop().animate({ opacity: '0' }, 250);
		else
			$(this).find('img').hide();
   }, function() { //mouse out
    	if(jQuery.support.opacity)
			$(this).find("img").stop().animate({ opacity: '1' }, 250);
		else
			$(this).find('img').show();
   }); */
});

