jQuery(document).ready(function(){
	jQuery("#featured-posts-wrapper").hover(function() {
		jQuery("#featured-posts div.post").children("div.glidemeta").animate({opacity: "show", },"slow");
	}, function() {
		jQuery("#featured-posts div.post").children("div.glidemeta").animate({opacity: "hide", },"fast");
	});
	
});


