/********************************************

Notologist
Homepage Hover Effects

Version: 1.0
Author: Poccuo (http://www.poccuo.com)        	

*******************************************/


$(document).ready(function(){

	$('.entry .like').hide();
	$('.entry .footer li').hide();
	
	//hover
	$(".entry").hover(
		function() {
			$(this).find(".like").fadeIn(250);
			$(this).find(".footer li").fadeIn(250);
		},
		function() {
			$(this).find(".like").fadeOut(250);
			$(this).find(".footer li").fadeOut(250);
		}
	);

});