$(function() {
	$('.popular-title').animate({
		"opacity": 0
		});
		
		/* $('.entry-content #comments-count').hide(); */
		
	$('.popular-thumb').hover(function() {
		$('.popular-title', this).stop().animate({ "opacity": .8 }, 500); 
		}, function() {
		$('.popular-title', this).stop().animate({ "opacity": 0 }, 300); 
	});
	
		$('#logo a img').animate({
		"opacity": .2
		});
		
		$('.entry-content #comments-count').animate({
		"opacity": 0
		});
		
		
		
	$('#logo a img').hover(function() {
		$(this).stop().animate({ "opacity": 0 }, 300);
		}, function() {
		$(this).stop().animate({ "opacity": .2 }, 300);
	});
	
		$('#header h1').hover(function() {
		$('#logo a img').stop().animate({ "opacity": 1 }, 300);
		}, function() {
		$('#logo a img').stop().animate({ "opacity": .2 }, 300);
	});
	
	
		$('.entry-content').hover(function() {
		$('#comments-count', this).animate({ "opacity": 1 }, 300); 
		}, function() {
		$('#comments-count', this).animate({ "opacity": 0 }, 300);
	});

});
   
