var texts = [ "Alice Johnson - (⭐⭐⭐⭐⭐) - The video quality is top-notch on this platform, and I appreciated the quick and simple registration process with 'Easy Signup,' along with the free 3-day trial!", "Bob Smith - (⭐⭐⭐⭐⭐) - I enjoyed a fantastic free 3-day trial, and the video quality exceeded my expectations. Signing up with 'Easy Signup' was a breeze.", "Emily Davis - (⭐⭐⭐⭐⭐) - 'Easy Signup' made it simple to join, and the impressive video quality was a delightful surprise during the free 3-day trial.", "Mike Wilson - (⭐⭐⭐⭐⭐) - The video quality is remarkable, and 'Easy Signup' made registration effortless. The free 3-day trial sweetened the deal.", "Olivia White - (⭐⭐⭐⭐⭐) - Fantastic video quality and great content. 'Easy Signup' made registration a breeze, and the free 3-day trial is a fantastic way to explore the platform.", "Daniel Brown - (⭐⭐⭐⭐⭐) - The 'Easy Signup' app is a game-changer for quick access. Stellar experience with outstanding video quality, and the free 3-day trial sweetens the deal.", "Sophia Clark - (⭐⭐⭐⭐⭐) - Using 'Easy Signup' for registration was a delight. Top-notch service and incredible video quality, plus the free 3-day trial is a fantastic offer!", "William Lee - (⭐⭐⭐⭐⭐) - The VOD platform is outstanding, and the video quality is superb. 'Easy Signup' is incredibly user-friendly, and the free 3-day trial is a great perk!", "Ava Adams - (⭐⭐⭐⭐⭐) - I loved the excellent video quality and the fantastic VOD content. Signing up with 'Easy Signup' is super easy, and the free 3-day trial is a great way to try it out!", "Ethan Turner - (⭐⭐⭐⭐⭐) - The top-notch video quality and great VOD content impressed me. 'Easy Signup' streamlines the sign-up process, and the free 3-day trial is a fantastic way to explore the platform!" ]; var currentTextIndex = 0; var smallTextElement = document.getElementById("changingText"); function changeText() { smallTextElement.textContent = texts[currentTextIndex]; currentTextIndex = (currentTextIndex + 1) % texts.length; } setInterval(changeText, 7500);