function getStoreFront (departure) {
	for (x=0; x < StorefrontList.length;x++) {
		var getDeparture=Storefronts[StorefrontList[x][0]];
		var foundDep=getDeparture.indexOf(departure);
		if (foundDep == -1) {
		} else {
			var StoreFront=StorefrontList[x];
			return StoreFront;
		} 
	}
	return -1;
}