

jQuery().ready(function(){
	jQuery("#twitterbird a").hover(function() {
		jQuery(this).next("em").animate({opacity: "show", top: "-110"}, "slow");
	}, function() {
		jQuery(this).next("em").animate({opacity: "hide", top: "-80"}, "fast");
	});
});


