
$(function(){
	
	$('#menu a, .right-block a, .post-item h3 a, #comments .comment-header a:hover, #comments #submit:hover').mouseover(function(){
		$(this).stop();
		$(this).fadeTo('fast', 0.5);
	});
	
	$('#menu a, .right-block a, .post-item h3 a, #comments .comment-header a:hover, #comments #submit:hover').mouseout(function(){
		$(this).stop();
		$(this).fadeTo('fast', 1);
	});
	 
});