Wrestling
Mark Your Calendars: Wrestling Senior Night this Thursday!
Come out and support our seniors this Thursday, February 7th at 6:30 pm as they take on the Edgewood Cougars. The wrestling program will be honoring our 2 seniors before the match at approximately 6:20 pm. Grab a friend and come root on our seniors and wrestling team to victory. #WestPride
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 (_) {} })();