$(function () {
	$('.post-wrapper a img').hover(function() {
		$(this).fadeTo("normal", 0.7);
	}, function() {
		$(this).fadeTo("normal", 1);
	});
});