$(function () {
	$('a img').hover(function() {
		$(this).fadeTo("normal", 0.8);
	}, function() {
		$(this).fadeTo("normal", 1);
	});
});