jQueryのイベントハンドラー。
ロールオーバーでアニメーションをつくろーとしてmouseoverをつかったらうまくいかなかった。
原因はelementとそのchildの扱いらしい。
微妙にmouseenterとmouseoverではchildに対する判定が違う。
完全に理解はしていないが、今回のケースでは試しにmouseenterでやったらうまくいった。
jQuery公式サイトからとってきた説明によると
Show texts when mouseenter and mouseout event triggering. Mouseover fires when the pointer moves into or out from child element, while mouseenter doesn't.
http://docs.jquery.com/Events/mouseenter#fn
mouseoverではchildへの出入りでも反応してるんかな?