var _id = 'nav';
var _slideEl = 'ul';
var _duration = 300;
var _hide = true;

$(document).ready(function() {
	$('#'+_id+' a').each(function(){
		if($(this).hasClass('active') || $(this).next(_slideEl).find('a').hasClass('active')) $(this).next(_slideEl).show();
		else $(this).next(_slideEl).hide();
	});
	$('#'+_id+' a').click(function () {
		if (_hide) hideLevels(this);
		if($(this).next(_slideEl).length){
			if($(this).next(_slideEl).is(':visible')) $(this).removeClass('active');
			else $(this).addClass('active');
		}
		$(this).next(_slideEl).toggle(_duration);
	});
});

function hideLevels(_this){
	$('#'+_id+' li').each(function() {
		var _f = false;
		var _a = $('a', this).each(function(i, _el) {
			if (_el == _this) _f = true;
			else $(_el).removeClass('active');
		});
		if (!_f) $(_slideEl, this).hide(_duration);
	});
}
