$(".icon-twitter").hover(function() {
$(this).prev("#twitter-hover").animate({opacity: "show", top: "-90"}, "fast");
}, function() {
$(this).prev("#twitter-hover").animate({opacity: "hide", top: "-110"}, "fast");
});