$(function() { $postmeta = $(".postMeta p"); $postmeta.next("div").hide(); $postmeta.hover(function() { $(this).next("div").animate({opacity: "show", top: "-70"}, {queue:false,duration:500}); }, function() { $(this).next("div").animate({opacity: "hide", top: "-80"},{queue:false,duration:1000}); }); });