function showLocation() {
	if(jQuery('.unit-location .mapbox').hasClass('hidden')) {
		jQuery('.unit-location .trigger').text('Hide Map');
		jQuery('.unit-location .mapbox').removeClass('hidden').addClass('visible');
	} else {
		jQuery('.unit-location .trigger').text('View on a Map');
		jQuery('.unit-location .mapbox').removeClass('visible').addClass('hidden');
		
	}
}
