$(document).ready(function(){
	$('a img').mouseover(function(){
		$(this).stop().css({opacity:0.4}).animate({opacity:1},500);
	});
});

