//Random Utility Functions 
	
	function switchMap(theEl) {
		theEl = $e(theEl);
		tabbedSections = $e('column-b');
		tabbedSections.gFEBCN('active-map').unsetClassValue('active-map');
		tabbedSections.gFEBCN(theEl.id).setClassValue('active-map');
		
		togTabs = $e('map-nav');
		togTabs.gFEBCN('selected-map').unsetClassValue('selected-map');
		theEl.setClassValue('selected-map');
	}//switchMap
	
	function switchDestination(theEl) {
		theEl = $e(theEl);
		tabbedSections = $e('main');
		tabbedSections.gFEBCN('active-tab').unsetClassValue('active-tab');
		tabbedSections.gFEBCN(theEl.id).setClassValue('active-tab');
		
		togTabs = $e('destination-tabs');
		togTabs.gFEBCN('selected').unsetClassValue('selected');
		theEl.setClassValue('selected');
	}//switchDestination