$(document).ready(function(){

	//twitter
	/*
	$("#twett").getTwitter({
		userName: "appribeirao",
		numTweets: 1,
		loaderText: "Carregando tweets...",
		slideIn: true,
		showHeading: true,
		headingText: "Latest Tweets",
		showProfileLink: true
	});
	*/

	$('.compartilhe a').hover(function(){
		$(this).find('img').stop().animate({ top:'-32px'},250)
	},function(){
		$(this).find('img').stop().animate({ top:'0'},250)
	})
	
});

