$(function(){ 
		$('.post img').css('opacity', 1);
		$('.post img').hover(function(){
        $(this).stop().animate({opacity: 0.2},600);
        },function(){ $(this).stop().animate({opacity: 1},300); });
	});
	$(function(){ 
		$('.img_related_post img').css('opacity', 1);
		$('.img_related_post img').hover(function(){
        $(this).stop().animate({opacity: 0.2},400);
        },function(){ $(this).stop().animate({opacity: 1},200); });
	});
	$(function(){ 
		$('.menu img').css('opacity', 1);
		$('.menu img').hover(function(){
        $(this).stop().animate({opacity: 0.2},400);
        },function(){ $(this).stop().animate({opacity: 1},200); });
	});
	$(function(){ 
		$('#logo img').css('opacity', 1);
		$('#logo img').hover(function(){
        $(this).stop().animate({opacity: 0.2},400);
        },function(){ $(this).stop().animate({opacity: 1},400); });
	});