$().ready(function(){
	$('.detalhes').hover( 
		function(){
			$(this).mousemove(function(e){
				var o = $(this).find('span');
				o.css({'top':e.pageY-25, 'left':e.pageX});
				if($(o).is(':hidden')){o.fadeIn();}
			})
		},
		function(){$(this).find('span').fadeOut('fast');}
	)				
});

function MudaTr(tr){
	$('.tr_1, .tr_2').hide();
	$(tr).fadeIn("slow"); 
}
