Athletes of the Week
Kemba Credit Union Athletes of the Week 12/14/2019-12/20/2019
Junior, Swimming
Jacob was the lead scorer for the Lakota West boys swim team at this weekend’s thirty-seven school Princeton Classic meet. Ortwein had the teams best individual finish, an eighth in the 1650 yard A Finals. He also added points to his total in three other events.
Paige Striley
Freshman, Swimming
Paige was the lead scorer for the Lakota West girls swim team at this weekends forty-four school Princeton Classic meet. Striley earned points in four individual and four relay events. Her best individual finishes included top four placements in both the 100-yard freestyle and the 100-yard Butterfly.
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 (_) {} })();