var _id = 'side-nav';
var _slideEl = '.drop-down';
var _duration = 300;
var _hide = false;

$j(document).ready(function() {
	$j('#'+_id+' a').click(function () {
		if (_hide) hideLevels(this);
		$j(this).next(_slideEl).toggle(_duration);
		$j(this).parent().toggleClass('active');
		return true;
	});
});

function hideLevels(_this){
	$j('#'+_id+' li').each(function() {
		var _f = false;
		var _a = $('a', this).each(function(i, _el) {
			if (_el == _this) _f = true;
		});
		if (!_f)  {
			$j(_slideEl, this).hide(_duration);
			$j(this).removeClass('active');
		}
	});
}