It's a little more involved than that.
At the end of your document, try adding a script like the following:
Code:
<script type="text/javascript">
$(document).click(function(e){
var $target=$(e.target)
if (!/javascript:animatedcollapse/i.test($target.attr('href')) && $target.parents('a[@href^="javascript:animatedcollapse"]').length==0){
animatedcollapse.hide(['jason', 'kelly', 'michael'])
}
})
</script>
And change "jason", "kelly" etc to the IDs of the content DIVs you wish to collapse when the user clicks anywhere on the page other than the controls themselves.
Bookmarks