$(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').hover(function() { //mouse in
		$(this).stop().animate({ opacity: '0.5' }, 250);
	}, function() { //mouse out
    	$(this).stop().animate({ opacity: '1' }, 250);
   	});
	
	
	/*-------------encarts page index---------*/
	
	$('#escabeaux').hover(function() { //mouse in
   		$('#echelles').stop().animate({ opacity: '0.5' }, 250);
		$('#echafaudages').stop().animate({ opacity: '0.5' }, 250);
  	}, function() { //mouse out
    	$('#echelles').stop().animate({ opacity: '1' }, 250);
		$('#echafaudages').stop().animate({ opacity: '1' }, 250);
   	});
	
	$('#echelles').hover(function() { //mouse in
   		$('#escabeaux').stop().animate({ opacity: '0.5' }, 250);
		$('#echafaudages').stop().animate({ opacity: '0.5' }, 250);
  	}, function() { //mouse out
    	$('#escabeaux').stop().animate({ opacity: '1' }, 250);
		$('#echafaudages').stop().animate({ opacity: '1' }, 250);
   	});
	
	$('#echafaudages').hover(function() { //mouse in
   		$('#escabeaux').stop().animate({ opacity: '0.5' }, 250);
		$('#echelles').stop().animate({ opacity: '0.5' }, 250);
  	}, function() { //mouse out
    	$('#escabeaux').stop().animate({ opacity: '1' }, 250);
		$('#echelles').stop().animate({ opacity: '1' }, 250);
   	});
	
	
	/*-------------Newsletter ---------*/
	$('#input_newsletter').val('Votre adresse mail');
	
	
	
	////////////////// Menu
		$('#menuv ul:not(ul.selected)').css('display','none');
	
});

