I am trying to port the code below to mootools 1.1 code but am having no luck
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");
});
});