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