function showTopOffices(show) {
	if (show) {
		document.getElementById('topOfficeLocations').style.display = "block";
	} else {
		document.getElementById('topOfficeLocations').style.display = "none";
	}
}

function showTopOfficeLocation(location) {
	document.getElementById('topOfficeLocations').style.display = "block";
	if (location == "uk") {	
		locUK = document.getElementById('topOfficeLocationsUK');
//		tabUK = document.getElementById('topOfficeTabsUK');
		
		locLondon = document.getElementById('topOfficeLocationsLondon');
//		tabLondon = document.getElementById('topOfficeTabsLondon');
		
		locUK.style.display = "block";
//		tabUK.style.background = "#FAFAFA";
//		tabUK.style.borderBottom = "3px #FAFAFA solid";
//		tabUK.style.color = "#666666";
		
		locLondon.style.display = "none";
//		tabLondon.style.background = "#6DACDF";
//		tabLondon.style.borderBottom = "3px #6DACDF solid";
//		tabLondon.style.color = "#FFFFFF";
	} else {
		locUK = document.getElementById('topOfficeLocationsUK');
//		tabUK = document.getElementById('topOfficeTabsUK');
		
		locLondon = document.getElementById('topOfficeLocationsLondon');
//		tabLondon = document.getElementById('topOfficeTabsLondon');
		
		locUK.style.display = "none";
//		tabUK.style.background = "#6DACDF";
//		tabUK.style.borderBottom = "3px #6DACDF solid";
//		tabUK.style.color = "#FFFFFF";
		
		locLondon.style.display = "block";
//		tabLondon.style.background = "#FAFAFA";
//		tabLondon.style.borderBottom = "3px #FAFAFA solid";
//		tabLondon.style.color = "#666666";
	}
	
}
