$(document).ready(function() {
	$('img#fade').each(function(){
		$(this).hover(function(){
			$(this).fadeTo("slow",.40);
		},
		function(){
			$(this).fadeTo("slow",1);
		});	
	});
});
