$(document).ready(function() { 
	$('#logo, .contact, #NL_box').hover(function() { 
		$(this).stop().animate({'opacity':'0.5'});
	}, function() {
		$(this).stop().animate({'opacity':'1'});
	});
	
	//////// btn newsletter 
	
	$('#NL_box').text("Inscrivez-vous");
	
	//////// Diaporama 
	
	$('#diaporama').cycle({
	 fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	 }); 

	
});


