$(function () {
	$('#latestProds img').hover(function() {
		$(this).fadeTo("1000", 0.8);
	}, function() {
		$(this).fadeTo("1000", 1);
	});
});
