Your delay is doing absolutely nothing because it's bound to the jQuery selector and not to the function within the mouseout handler.
Try this instead...
jQuery('.right-et-tooltip').mouseout(function(){
jQuery(this).find('.right-et-tooltip-box').delay(800).animate({ opacity: 'hide', left: '-100px' }, 30);
});
Your jsFiddle with the correction applied...
http://jsfiddle.net/zGtBN/2/
EDIT (a side note):
It would be much better to use the mouseenter & mouseleave methods rather than the mouseover & mouseout methods which tend to cause a rapid blinking effect during the time your mouse is hovering.
Then you can simply combine the mouseenter and mouseleave handlers into one by using the jQuery .hover() method.
Your same exact two functions insterted into a .hover() method here...
http://jsfiddle.net/zGtBN/3/
EDIT 2:
When you re-enter before the leave animation completes, the animations will queue up. If you enter & leave really fast several times, you'll have all those animations to blink on/off before they stop.
To prevent the animation queue from stacking up and creating a new issue where it comes on/off because of the mouseleave delay, use a jQuery .stop(true, false) on the mouseenter function like this...
jQuery(this).find('.right-et-tooltip-box').stop(true,false).animate({ opacity: 'show', left: '-100px' }, 30);
Upon mouseenter, it stops any mouseleave animation immediately. The true on the "clearQueue" option clears out the animation queue and the false on the "jumpToEnd" option says to stop the current animation instead of completing it immediately.
Modified demo...
http://jsfiddle.net/zGtBN/4/
delay()to the jQuery selector instead of themouseoutfunction. See my answer below. – Sparky Nov 1 '11 at 4:27