Listen for hoverinit events to configure jQuery.Hover.delay and jQuery.Hover.distance for the current element. Hoverinit is called on mouseenter.
$(".option").live("hoverinit", function(ev, hover){
//set the distance to 10px
hover.distance(10)
//set the delay to 200ms
hover.delay(10)
})