Need a built in function to close menu items. I implement the following hack to close menu items when clicked. ``` javascript // Hack to close items when clicked $('.mp-close').mousedown(function () { $('body').click(); }); ```