$(document).ready(function(){
  $("a.esterno")
    .attr({target: "_blank", title: "apertura in un una nuova finestra"})
    .hover(function(e){
      this.t=this.title; this.title=""; $("body").append("<p id='tooltip'><strong>"+$(this).text()+"</strong><br><em>"+this.href+"</em><br>"+this.t+"</p>");
      $("#tooltip").css({ top: (e.pageY+20)+"px", left: (e.pageX+0)+"px" } ).show(); },
      function(){ this.title=this.t; $("#tooltip").remove(); })
    .mousemove(function(e){ $("#tooltip").css({ top: (e.pageY+20)+"px", left: (e.pageX+0)+"px" } ); })
    .not(":has(img)")
    .append("<img src='/grafica/external.png' alt='link esterno' style='vertical-align: middle; margin-left: 2px; border-style: none; display: inline; float: none;'>");
});

