$(function(){
	$("div#wrapper a img").hover(function(){
		$(this).fadeTo(10, 0.6);
	},function(){
		$(this).fadeTo(300, 1.0);
	});
});
