const links = [{"id":167,"link":"www.amd.com","name":"amd"},{"id":87,"link":"www.tvgids.nl\/nustraks\/","name":"tv gids"},{"id":186,"link":"dronebl.org","name":"DroneBL"},{"id":106,"link":"www.esa.int","name":"ESA"},{"id":235,"link":"tesla.com\/nl_nl\/AI","name":"Tesla AI"},{"id":229,"link":"zh.greatfire.org","name":"greatfire"},{"id":197,"link":"englishrussia.com","name":"English Russia"},{"id":81,"link":"www.vkmag.com\/zapruder\/","name":"zapruder"},{"id":283,"link":"webmsx.org","name":"webMSX"},{"id":239,"link":"copilot.microsoft.com","name":"copilot"}]; let currentIndex = 0; function showNextImage() { if (currentIndex < links.length) { const link = links[currentIndex]; const container = document.getElementById('imageContainer'); container.innerHTML = `

${link.name}

Link Image
`; currentIndex = (currentIndex + 1) % links.length; setTimeout(showNextImage, 1000); // Show next image after 1 second } } // Start showing images when the page loads window.onload = showNextImage;