$(document).ready(function() {
	//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});}
	
	/*-------------animation logo---------*/
	
	$('#logo').css('opacity' , '0.9');
	
	$('#logo').hover(function() { //mouse in
		$(this).stop().animate({ opacity: '0.5' }, 250);
	}, function() { //mouse out
    	$(this).stop().animate({ opacity: '0.9' }, 250);
   	});
	
	
	/*-------------animation menuv---------*/
	
	$('#menuv ul:not(ul.selected)').css('display','none');
	
	$('#menuv li a').hover(function() { //mouse in
		$(this).stop().animate({ 'paddingLeft' : '20px' }, 250);
	}, function() { //mouse out
    	$(this).stop().animate({ 'paddingLeft' : '0' }, 250);
   	});
	
	$('#menuv li a.selected').hover(function() {
		$(this).stop().css('paddingLeft','20px');
	}, function() { //mouse out
    	$(this).stop().css('paddingLeft','20px');
   	});
	
	$('#menuv li ul li a').hover(function() { //mouse in
		$(this).stop().css('paddingLeft','20px');
	}, function() { //mouse out
    	$(this).stop().css('paddingLeft','20px');
   	});
	
	$('#menuv li ul ul li a').hover(function() { //mouse in
		$(this).stop().css('paddingLeft','40px');
	}, function() { //mouse out
    	$(this).stop().css('paddingLeft','40px');
   	});
	
	
	/*-------------Animation encarts page index---------*/
	
	$('.vignette1, .vignette2, .vignette3').hover(function() {
		$(this).stop().animate({'height':'226px'});
		},function(){
			$(this).stop().animate({'height':'32px'});
	}); 
		
	
	/*-------------Footer animate ---------*/
	$('#navigation_frame, .black').hide();
	
	
	$(window).bind('scroll',function(){ 
		var t=window.scrollY;
		
		$('#navigation_frame').css('top',t+100);
												  
	});
	
	$('#navigation').click(function() { 
		$('.black').stop(1,1).fadeIn(1100);
		$('#navigation_frame').stop(1,1).fadeIn(1000);
	});
	
	$('#btnFooter').click(function() { 
		$('.black').stop(1,1).fadeIn(1100);
		$('#navigation_frame').stop(1,1).fadeIn(1000);
	});
	
	$('.black').click(function() { 
		$('.black').stop(1,1).fadeOut(2000);
		$('#navigation_frame').stop(1,1).fadeOut(1100);
	});
	
	$('.close').click(function() { 
		$('.black').stop(1,1).fadeOut(2000);
		$('#navigation_frame').stop(1,1).fadeOut(1100);
	});
		
	/*-------------image de fond---------*/
	
	$(document).bgStretcher({
		images: ['gifs/fond.jpg'],
		imageWidth: 1400, imageHeight: 1002, resizeAnimate: false, resizeProportionally:false, nextSlideDelay:7000
	});	
	
	
	
});

