North
Entrance

West Canal Drive & Crosswind Blvd.,  Kennewick, Washington 99336

West
Entrance

West Grandridge Blvd. & Crosswind Blvd., Kennewick, Washington 99336

South
Entrance

West Deschutes Avenue & Crosswind Blvd., Kennewick, Washington 99336

Updated Amber Contact

document.querySelectorAll('.elementor-accordion-item').forEach((item, index) => { const button = item.querySelector('.elementor-tab-title'); // Adjust selector if needed const panel = item.querySelector('.elementor-tab-content'); // Adjust selector if needed // Add attributes to the title button.setAttribute('role', 'button'); button.setAttribute('aria-expanded', 'false'); button.setAttribute('aria-controls', `accordion-panel-${index}`); button.id = `accordion-button-${index}`; // Add attributes to the content panel.setAttribute('role', 'region'); panel.setAttribute('aria-labelledby', `accordion-button-${index}`); panel.id = `accordion-panel-${index}`; panel.setAttribute('hidden', 'true'); // Toggle aria-expanded and hidden attributes on click button.addEventListener('click', () => { const isExpanded = button.getAttribute('aria-expanded') === 'true'; button.setAttribute('aria-expanded', !isExpanded); panel.hidden = isExpanded; }); });