

// ----------------------------------------------------------------------------
// WHAT WE DO / SERVICES 


// On this page, the user can choose to view services in terms of categories or deliverables. 
// By default, when the page loads, serices are displayed by category. This function is called as the user switches between the two sections

function switchSections (newSection) {
	// Hide both sections of the page
	document.getElementById('categories').style.display="none";
	document.getElementById('deliverables').style.display="none";
	
	// Then display the section that the user has chosen to display
	document.getElementById(newSection).style.display="block";
	
}