jQuery(document).ready(function(){
	jQuery(".glidecontentwrapper .post").hover(function() {
		jQuery(this).children(".glidemeta").animate({opacity: "show"}, "slow");
	}, function() {
		jQuery(this).children(".glidemeta").animate({opacity: "hide"}, "fast");
	});
});