$(function(){
	$("a img").hover(function(){
		$(this).css("opacity", "0.4");
		$(this).css("filter", "alpha(opacity=40)");
		$(this).fadeTo("normal", 1.0);
	});
	
});
