
Our trainer was on Ninja Warrior
Personal trainers in St Kilda
Shed 5kg in 42 days or get a refund with personal training, nutrition, and accountability
Without dead boring diets. And without burning hours in the gym. At our St Kilda gym.
★
★
★
★
★
5 stars out of 196 Google reviews

Personal trainers in St Kilda
Shed 5kg in 42 days or get a refund with personal training, nutrition, and accountability
Without dead boring diets. And without burning hours in the gym. St Kilda location.
★
★
★
★
★
5 stars out of 196 Google reviews






${review.date}
${review.text}
`;
reviewContainer.appendChild(reviewElement);
});
// Clone the reviews for seamless infinite scrolling
reviewContainer.innerHTML += reviewContainer.innerHTML;
}
function scrollReviews() {
let scrollPosition = 0;
const totalWidth = reviewContainer.scrollWidth / 2;
const scrollSpeed = 0.5;
function scroll() {
scrollPosition += scrollSpeed;
if (scrollPosition >= totalWidth) {
scrollPosition = 0;
}
reviewContainer.style.transform = `translateX(-${scrollPosition}px)`;
requestAnimationFrame(scroll);
}
scroll();
}
populateReviews();
scrollReviews();
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initReviewSlider);
} else {
initReviewSlider();
}
})();