var exploreCommunityDestination = function(destination) {
	window.location = '/travel/community/exploreCommunity.html?destination=' + destination;
}

var goToDestination = function(destination) {
	if ('all' == destination) {
		window.location = '/travel/exploreDestinations.html';
	} else if (destination != undefined && destination != '' && destination != 'notADestination') {
		window.location = '/travel/destinationDetails.html?cityName=' + destination;
	}
}

var navigateThemeSelectBox = function(theme) {
	if (theme == 'all') {
		window.location = '/travel/exploreThemes.html';
	} else if (theme != 'notATheme' && theme != '' && theme != undefined) {
		window.location = '/travel/themeDetails.html?themeName=' + theme;
	}
}

var navigateActivitySelectBox = function(activity) {
	if (activity == 'all') {
		window.location = '/travel/exploreActivities.html';
	} else if (activity != 'notAnActivity' && activity != '' && activity != undefined) {
		window.location = '/travel/activityDetails.html?activityName=' + activity;
	}
}
