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