$(document).ready(function(){

	var recent_post = $("#recent_posts div");


	recent_post.hover(
		function() {
			$(this).find('.postInfo').show();
		},
		function() {
			$(this).find('.postInfo').hide();
		}
	);

});
