Assigns mouseover and mouseout handlers to the specified element, but the handlers
are only fired after the specified delay. This is particularly useful in preventing widgets from
activating on mouseover when the user mouses over them while attempting to activate a different object.
Usage
$(".menu-item").hoverDelay({over:function(e){activateWidget(e);},// mouseover handlerout:function(e){activateWidget(e);},// mouseout handlerdelayOver:350,// fire mouseover after 350 millisecondsdelayOut:0// fire mouseout immediately});
The jQuery.Event object is passed to the handlers just as if they were added via jQuery.fn.on()