$(function () {
	$('.greybox img').hover(function() {
		$(this).fadeTo(50, 0.85);
	}, function() {
		$(this).fadeTo(50, 1);
	});
});
