User-agent: * Disallow: User-agent: GPTBot Allow: / User-agent: CCBot Allow: / User-agent: Google-Extended Allow: / $w.onReady(() => { // Preload data (you can replace this with an external database for scalability) const data = [ { location: "Bozeman", secondLocation: "Tetons", cost: 950 }, { location: "Bozeman", secondLocation: "Jackson", cost: 900 }, { location: "Bozeman", secondLocation: "Idaho Falls", cost: 450 }, { location: "Bozeman", secondLocation: "Island Park", cost: 400 }, { location: "Bozeman", secondLocation: "West", cost: 300 } // Add more rows as needed ]; // Populate dropdowns const locations = [...new Set(data.map(item => item.location))]; const secondLocations = [...new Set(data.map(item => item.secondLocation))]; $w("#dropdownA").options = locations.map(loc => ({ label: loc, value: loc })); $w("#dropdownB").options = secondLocations.map(loc => ({ label: loc, value: loc })); // Handle selection and cost calculation $w("#calculateButton").onClick(() => { const selectedA = $w("#dropdownA").value; const selectedB = $w("#dropdownB").value; if (!selectedA || !selectedB) { $w("#output").text = "Please select both options."; return; } const result = data.find( item => item.location === selectedA && item.secondLocation === selectedB ); if (result) { $w("#output").text = `The cost is $${result.cost}.`; $w("#checkoutButton").show(); } else { $w("#output").text = "No matching result found. Please try different options."; $w("#checkoutButton").hide(); } }); // Hide checkout button initially $w("#checkoutButton").hide(); });
top of page
Wood Texture

Learn About our Public Yellowstone Shuttle

Screenshot 2025-07-22 231956_edited_edited.jpg
Screenshot 2025-07-23 001022.png

​Old Faithful and Friends is excited to announce that in 2026, we’ll be launching a new public shuttle service connecting Bozeman Yellowstone International Airport (BZN) to Gardiner, Montana — and just beyond, into Mammoth Hot Springs in Yellowstone National Park.

This service will offer convenient, eco-friendly transportation between:

Bozeman Airport (BZN)
Gardiner Visitor Center
Mammoth Hot Springs (Yellowstone National Park​)

Operating Dates

We will be operating Sunday, Monday, Friday and Saturdays starting on June 1, 2026- October 15th 2026

 Service Vehicles

Ford Explorer if there are under 6 bookings and a Ford Transit 15 Passenger for above 

Flight Delays

If your flight is delayed and you miss the  shuttle, we can offer a refund for flight delays, reschedule your ride, or arrange a private driver for an additional fee.

Booking Time Frame

We accept bookings up to 2 hours before our scheduled shuttle

OLD FAITHFUL AND FRIENDS

bottom of page