Fall Cheer
Sign-up today for the Future Firebird Cheer Clinic on Aug. 5th!
Cheer Clinic Flyer
Cheer Registration Form
2018 Waiver Form
When: Sunday, August 5th
Where: Lakota West High
Time: 2:00 pm-5:00 pm
Ages: 5 yrs old – 8th grade (as of 2018)
Cost: $35 each (as of 2018)
Campers receive a t-shirt to wear at Future Firebird Night – September 21st.
**All campers are invited to cheer 1st quarter of Friday, Sept. 21st game vs Oak Hills!
Campers will get in free, parents must still purchase a ticket.**
Questions about registering, please contact Head Coach Megan Straub at Straub.megan@yahoo.com
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();