$(function(){
	 $(".rede a").hover(function(evt){
		 var texto = $(this).attr("rel");
		       var html = '<div id="info">';
	           html += texto;
	           html += "<img src='imagens/bg-info.png' alt='' />";
	           html +='</div>';
	      $("body").append(html).children("#info").hide().fadeIn(400);
	        
	   },function(){
	       $("#info").remove();
	   });
	        
	      $("a").mousemove(function(evt){
	          $("#info").css('top', evt.pageY - 60)
	                .css('left', evt.pageX - 18);
	     });
});
