Football
Lakota West Alum: Kayaune Ross excited for opportunity with Bengals
Article found at daytondailynews.com
Article found at local12.com
Kayaune Ross (Lakota West class of 2012) . Led the Firebirds in pass receiving in 2011 season
and earned second team All GMC honors.
Keep Up The Hard Work Kayaune! #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 (_) {} })();