FadeIN and FadeOut again and again...

FadeIN and FadeOut again and again...

Hi,

we have a little Problem.

Look on the website: brand-pi.dyndns.org

Whenever I move the mouse over the menu, the Dropdown menu comes down and then it moves up and down again and again (ina loop)

Code:

<script type="text/javascript">
    $(document).ready(function() {
          $("#nav").hover(function () {
             $("#submenu").slideToggle("fast");
          });
        });
</script>

Thank u