$(document).ready(function() {
	$('.imgfade').each(function() {
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 0.8 }, 500);
		},
	   function() {
		   $(this).stop().animate({ opacity: 9.0 }, 500);
	   });
	});
});
