/*$(document).ready(function(){

		$("#topTwitter").hover(function() {
		$(this).children("#latestTweet").animate({opacity: "show", top: "-30"}, "slow");
	}, function() {
		$(this).children("#latestTweet").animate({opacity: "hide", top: "0"}, "slow");
	});


});*/