$(document).ready(function() {
	$(".post-content img").hover(function () {
		$(this).animate({
				opacity: 0.5
			}, 500 );

	},
	function () {
		$(this).animate({
				opacity: 1
			}, 500 );

	});
});



