Tooltip Plugin. Allmost there ...

Tooltip Plugin. Allmost there ...

Hello,

I have a problem on my tooltip plugin: http://jsfiddle.net/mdmoura/RPUX6/

When I move the mouse faster between elements (1 and 2) the tooltip does not show.

I think this happens because I have a delay on element mouse leave:
  1.   $this.mouseleave(function (e) {
  2.     tooltip.timer = setTimeout(function () {
  3.       $("." + options.class).detach();
  4.     }, !options.mouse || options.static ? options.delay || 0 : 0);
  5.   }), // Mouse leave 
I have it to allow the mouse to move over the tooltip for when there is a link in it.

The idea would be to cancel the hide delay when the mouse goes over another element.

Thank You,
Miguel