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