
	// Get reference to Quick Launch Menu container
	var qLaunchContainer = document.getElementById('subsectionsidebar');
	// Check if Quick Launch Menu container exists
	if (qLaunchContainer)
	{
		// Get UL Elements Collection for entire Quick Launch Menu
		var ulCollection = qLaunchContainer.getElementsByTagName('UL');
		// Check if UL Elements Collection has children
		if (ulCollection.length > 0)
		{
		// Get first UL Element as a Menu Root
		var rootUL = ulCollection[0];
		// Get all LI Elements for Menu Root
		var liCollection = rootUL.getElementsByTagName('LI');
		// Check each LI Element for child UL Elements
		for (i=0; i < liCollection.length; i++)
		{
		var subULCollection = liCollection[i].getElementsByTagName('UL');
		
		if (subULCollection.length > 0)
		{
		var isExpanded = false;
		var hrefCollection = liCollection[i].getElementsByTagName('A');
		
		for (k=0; k<hrefCollection.length; k++)
		if (hrefCollection[k].href == document.location.href)
			isExpanded = true;
			
			subULCollection[0].style.display = (isExpanded)?'':'none';
		}
		}
		
		}			
	}


