$(document).ready(function(){	
	$('.projet').hover(function() {
			$(this).children('.viewProject').slideDown(200);
			$(this).children('.thumbfolio').animate({opacity : 0.5})
		},
		
		function() {
			$(this).children('.viewProject').slideUp(200);
			$(this).children('.thumbfolio').animate({opacity : 1})
		}
	
	);
});



  
