jQuery(function($){

	var projets = $('#contenu').find('.projet');
	
	projets.find('.filet').css("background-color", "#CCCCCC");
	
	projets.mouseover( function() { 
		$(this).find('img').css("opacity", 0.5);
		//$(this).find('img').fadeTo("slow", 0.6);
		var couleur = $(this).find('.filet').attr('id');
		$(this).find('.filet').css("background-color", couleur);
		$(this).find('.titre').css("color", couleur);
	});
	
	projets.mouseout( function() { 
		$(this).find('img').css("opacity", 1);
		//$(this).find('img').fadeTo("slow", 1);
		$(this).find('.filet').css("background-color", "#CCCCCC");
		$(this).find('.titre').css("color", "#000000");
	});
	
});

















