jQuery(document).ready(function(){
         jQuery('.post').hover(function(){
       
			jQuery(this).find('.entry').stop(false,true).fadeOut(200);  
			}, function() {  
			jQuery(this).find('.entry').stop(false,true).fadeIn(200);
			
			});  

});

(function(jQuery){
  jQuery.fn.showdelay = function(){
    var delay = 0;
    return this.each(function(){
      jQuery(this).delay(delay).fadeIn(300);
      delay += 200;
    });
  };
})(jQuery);

jQuery(document).ready(function(){
  jQuery('div.post').showdelay();
});