 $(function() {	

	
	$('.peopleItemSmall').children('.front').hide(); // hide all to start
	
	$('.peopleItemSmall').hover(function() {
		$(this).children('.front').stop().fadeTo("normal", 0.8)
	}, 
		
		function() {
			$(this).children('.front').stop().fadeTo("normal",0)
 
	 });

});
