/* Desenvolvimento: Protta Photo+Design [www.protta.com.br] */
$(document).ready(function(){
 
	$("#contato-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "40"}, "slow");
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
	$("#telefone-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "40"}, "slow");
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
	$("#messenger-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "40"}, "slow");
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
	$("#mapa-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "40"}, "slow");
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
	$("#foto-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "40"}, "slow");
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
	$("#twitter-popup a").hover(function() {
	$(this).next("span").stop(true, true).animate({opacity: "show", bottom: "40"}, "slow");
	$.getScript('http://twitter.com/statuses/user_timeline/prottadesign.json?callback=twitterCallback2&count=3');
	}, function() {
	$(this).next("span").animate({opacity: "hide", bottom: "30"}, "fast");
	});
	
});