I\'ve build a drop down menu at:
http://www.ourbridalsongs.com/new_header/header.php
When you click on the up/down arrow next to the logo - the menu appears
add this snippet in your code
$(document).click(function(e){
var myTarget = $(".subnav");
var clicked = e.target.className;
if($.trim(myTarget) != '') {
if($("." + myTarget) != clicked) {
$("ul.subnav").slideUp('slow').hide();
}
}
});
this will close your ul.subnav
when you click anywhere in your document.