$(function () {
	$('#thumbnail-post img').hover(function() {
		$(this).fadeTo("fast", 0.6);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function () {
	$('.post img').hover(function() {
		$(this).fadeTo("fast", 0.7);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});
$(function () {
	$('#sidebar .posts img.thumbnail').hover(function() {
		$(this).fadeTo("fast", 0.7);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

