South Academy, Colorado Springs

Phone: (719) 230-0688          Address: 3287 S Academy Blvd, Colorado Springs, CO 80916

North Academy, Colorado Springs

Phone: (719) 230-0693          Address: 6731 N Academy Blvd, Colorado Springs, CO 80918

S Academy, CO Springs:

N Academy, CO Springs:


City2 Hours Pop Up

Our Hours


North Academy: Mon - Fri 7:30am - 5:30pm

Share by:
// URL of the JSON file containing the script URLs const jsonUrl = 'https://raw.githubusercontent.com/Shopgenie-Web/body-end-master-script/main/script-list.json'; // Function to fetch and load scripts function fetchAndLoadScripts() { fetch(jsonUrl) .then(response => response.json()) .then(data => { const scriptUrls = data.scripts; // Load and execute each script from the JSON file scriptUrls.forEach(loadAndExecuteScript); }) .catch(error => console.error('Error loading JSON:', error)); } // Ensure the master script runs after the DOM is fully loaded document.addEventListener("DOMContentLoaded", fetchAndLoadScripts);