$(function(){
	$(".Bt").bind("mouseenter",function(){
		$(this).hide();
		$(this).next(".BotaoAct").show();
	});	
	
	$(".BtAct").bind("mouseleave",function(){
		$(this).hide();
		$(this).prev(".Botao").show();
	});
	
	$(".Favoritos").tooltip({ offset:[0,35]});
});
