var _id = 'sidenav';
var _slideEl = 'ul';
var _duration = 300;
var _hide = false;

$(document).ready(function() {
	/*$('#'+_id+' ul ul').hide();*/
	$('#'+_id+' li:has(ul)').each(function () {
		$(this).children('a:first').click(function(){
			if (_hide) hideLevels(this);
			$(this).next(_slideEl).slideToggle(_duration);
			$(this).toggleClass('btn-active');
			return false;
		});
	});
});

function hideLevels(_this){
	$('#'+_id+' li').each(function() {
		var _f = false;
		var _a = $('a', this).each(function(i, _el) {
			if (_el == _this) _f = true;
		});
		if (!_f) {
			$(_slideEl, this).hide(_duration);
			$(this).children('a:first').removeClass('btn-active');
		}
	});
}
