function checkExpand()
{
	var _anchor = self.document.location.hash;
	var anchors = _anchor.split('#');

	anchors.each(function(_anchor)
	{
		if(_anchor != '')
		{
			if($(_anchor.substr(1)))
			{
				expand(_anchor.substr(1));
			}
		}
	});
}

function checkExpandCollapse(id)
{
	if($(id).style.display != 'block')
	{
		expand(id);
	}
	else
	{
		collapse(id);
	}
}

function expand(id)
{
	var tmpId = 'expand_temp_34734895738924';

	$(id).up('ul').id = tmpId;
	$$('#' + tmpId + ' div.expandContent').each(function(el)
	{
		collapse(el.id);
	});
	$(id).up('ul').id = '';
	$(id).up().removeClassName('expand').addClassName('collapse');
	show(id);

	resizeSidebar();
}

function collapse(id)
{
	$(id).up().removeClassName('collapse').addClassName('expand');
	hide($(id));

	resizeSidebar(true);
}
