$(document).ready(function(){
    $('.sidenav h3 a').click(function(){
        var ul = $(this).parent().parent().children('ul');
        if (ul && ul.css('display') && ul.css('display') != 'none') {
            ul.css('display', 'none');
            return false;
        }
        else { return true; }
    });
});
