以下のコードを mootools 1.1 コードに移植しようとしていますが、うまくいきません。
jQuery(document).ready(
function(){
jQuery("div#fpss-nav_activator").bind("mouseenter",function(){
jQuery("div#navi-outer").stop(true, true).show("slow");
}).bind("mouseleave",function(){
jQuery("div#navi-outer").stop(true, true).hide("slow");
});
});