function city_on(e) {
	var strBGColour = '#FFEBE1';

	e.style.backgroundColor = strBGColour;
	e.style.cursor = 'pointer';
	
	e.style.textDecoration = 'underline';
}

function city_off(e) {
	var strBGColour = 'white';

	e.style.backgroundColor = strBGColour;
	e.style.cursor = 'default';
	
	e.style.textDecoration = 'none';
}

function city_nav(strCity) {
	var strURL = '/' + strCity + '/';

	document.location = strURL;
}

function hotel_on(e) {
	var strBGColour = '#FFEBE1';
	
	e.style.backgroundColor = strBGColour;
}

function hotel_off(e) {
	var strBGColour = 'white';

	e.style.backgroundColor = strBGColour;
}
