function NameSwitch() {
	if (document.getElementById('wrapper-featuredLocations').style.display == "none") {
		document.getElementById('aFeaturedLocations').innerHTML = "<img src=\"images/mini-button-contract-arrow.png\" border=\"0\" title=\"Hide Featured Locations\" alt=\"Hide Featured Locations\" />";
	}
	else {
		document.getElementById('aFeaturedLocations').innerHTML = "<img src=\"images/mini-button-expand-arrow.png\" border=\"0\" title=\"Show Featured Locations\" alt=\"Show Featured Locations\" />";
	}
}