$(function() {
	$("div.pixy-element-blog-post").hover(
	  function () {
	      $(this).find('.blog_ingress').stop(true, true).slideDown('normal', function() {
		    // Animation complete.
		  });
	  },
	  function () {
		  $(this).find('.blog_ingress').stop(true, true).slideUp('normal', function() {
		    // Animation complete.
		  });
	  }
	);
});
