$(document).ready(function(){

   $('img').hover(function() {
		$(this).stop().fadeTo("slow", 0.4);
	}, function() {
		$(this).stop().fadeTo("slow", 1);
	});

});
