$(document).ready(function() {
	
    $(".produits").css({ display: "block" });   	
	
	$('.produits img').fadeTo("fast",0.40);
	$('.produits img').hover(function() {
		$(this).fadeTo("fast",1);
		},
		function () {
		$(this).fadeTo("fast",0.40);
		});				
	
});