function locationHoverON(id) {
	var area = document.getElementById(id);
	area.style.display = 'block';
}

function locationHoverOFF(id) {
	var area = document.getElementById(id);
	area.style.display = 'none';
}

function changeTab(current) {
	var jobSearchTab = document.getElementById('officesTab');
	var officesTab = document.getElementById('jobSearchTab');
	var jobSearchContent = document.getElementById('jobSearchContent');
	var officesContent = document.getElementById('officesContent');
	var jobSearchBottom = document.getElementById('jobSearchBotTxt');
	var officesBottom = document.getElementById('officesBotTxt');
	
	if (current == 'world') {
		jobSearchTab.style.background = '#B1AFA7';
		jobSearchTab.style.color = '#014137';
		officesTab.style.background = '#E6E8E5';
		officesTab.style.color = '#C7C6C0';
		jobSearchContent.style.display = 'none';
		officesContent.style.display = 'block';
		jobSearchBottom.style.display = 'none';
		officesBottom.style.display = 'block';
	}
	
	if (current == 'uk') {
		jobSearchTab.style.background = '#E6E8E5';
		jobSearchTab.style.color = '#C7C6C0';
		officesTab.style.background = '#B1AFA7';
		officesTab.style.color = '#014137';
		officesContent.style.display = 'none';
		jobSearchContent.style.display = 'block';
		officesBottom.style.display = 'none';
		jobSearchBottom.style.display = 'block';
	}
}
