not sure but you could try something like this, to get more
specific...

$('#Main_Nav li:has(ul)').mouseover(function(e) {
        e.stopPropagation();
        $(this).children('ul').slideDown('normal');
}).mouseout(function(e) {
        e.stopPropagation();
        $(this).children('ul').slideUp('normal');
});

btw you don't need the .end() method at the end ;)

Reply via email to