$(document).ready(function(){
	$(".grid a img").hover(function(){
	$(this).fadeTo(0, 0.0);
	},function(){
	$(this).fadeTo(0, 1.0);
	});
});
