	
	$(document).ready(function()
    {

		$(".fotoMineiro ul li a").each(function()
		{
			$(this).mouseover(function()
			{
				$(this).next("span").css({ 'position' : 'absolute' });
				$(this).next("span").fadeIn(200);	
				$(this).mousemove(function(e){
					$(this).next("span").css({'left': e.pageX+20, 'top' : e.pageY, 'border' : '1px solid #000', 'background' : '#fff', 'padding' : '1px'});
				});
				
			});		

			$(this).mouseout(function()
			{
				$(this).next("span").fadeOut(0);	
			});
			
		});
	});