$(document).ready(function()
{ 
    $('#nav li').hover(function()
    {
        $(this).find('.navdropdown').stop(true, true).slideDown();
    },
    function()
    {
        $(this).find('.navdropdown').stop(true, true).slideUp();
    });
 
});
