To be honest, I didn't like any of the solutions above.
The best way to do this, is binding the "click" event to the document, and comparing if that click is really outside the element (just like Art said in his suggestion).
However, you'll have some problems there: You'll never be able to unbind it, and you cannot have an external button to open/close that element.
That's why I wrote this small plugin (click here to link), to simplify these tasks. Could it be simpler?
<a id='theButton' href="#">Toggle the menu</a><br />
<div id='theMenu'>
I should be toggled when the above menu is clicked,
and hidden when user clicks outside.
</div>
<script>
$('#theButton').click(function(){
$('#theMenu').slideDown();
});
$("#theMenu").dClickOutside({ ignoreList: $("#theButton") }, function(clickedObj){
$(this).slideUp();
});
</script>
I spend a lot of time making it to be reliable, hope you enjoy.