Tooltip - Hovering from link A -> B

Tooltip - Hovering from link A -> B

Case:
two links with images in it are next to each other.
Tooltip setup:
  1.       $(function() {
  2.         $('a').tooltip({
  3.             track: true,
  4.             delay: 250,
  5.             showURL: false,
  6.             showBody: " - ",
  7.             fade: 350,
  8.             opacity: 0.8,
  9.             top: -30,
  10.             positionLeft: true
  11.         }); 
  12.       });
Now if you go from link 1 to link 2 then it will fade out link 1 and delay link 2 it directly shows the title of link 2 in the tooltip eventhough still fading out for link 1.
When the delay is finished then link 2 is newly presented (which is good).

So the content of the link should never change when hovering another tooltip element IMO.