sliding menu only called once
Hi there, on a Drupal website I'm trying to get a Sliding Menu using Jquery running. Here is the code:
-
$(document).ready(function(){
$("#block-menu-primary-links ul li ul ").hide("0");
$("#block-menu-primary-links ul li ul ").css("display","inline");
$("#block-menu-primary-links ul > li")
.mouseover(function () {
$("#block-menu-primary-links ul li ul ").fadeIn("slow")
});
});
This only works for the first time an entry is hovered. If I hover over the second entry it does nothing. What I'm doing wrong? thx!