Athletes of the Week
Kemba Credit Union Athletes of the Week 10/1/2018-10/7/2018
Senior, Cross Country
Alex finished in the runner-up spot in a field of 276 runners at the Anna Invitational meet held on Saturday. Kelker led the Firebirds to a first place finish in this 18 school varsity team competition.
Savannah Grubbs
Sophomore, Soccer
Savannah scored Lakota West’s lone goal to enable a 1-1 tie at Turpin on Saturday in a contest between two Cincinnati teams ranked in the city top 10.
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 (_) {} })();