the events "mouseleave" and "mouseenter" are fired twice. ``` java $(element).mouseenter(new Function() { public boolean f(Event event, Object... obj) { // called twice... return true; } }) ``` mouseout & mouseover are called just once as expected.