Mouseout Not

Mouseout Not

I have a div which drops down a menu below it on mouseover.  I want to kill the menu when I mouse out of that div but not when I'm over the menu below it.

<div id="menu_parent"></div>

Something like this maybe:
menu_parent.not("#menu").mouseout(function() { killmenu()});

Any ideas?

Thanks.