const links = [{"id":186,"link":"dronebl.org","name":"DroneBL"},{"id":161,"link":"grunn-ix.nl","name":"gnix"},{"id":287,"link":"alichur.uber.space\/","name":"hans"},{"id":39,"link":"nando.nl","name":"nando"},{"id":219,"link":"root-servers.org","name":"root-servers.org"},{"id":87,"link":"www.tvgids.nl\/nustraks\/","name":"tv gids"},{"id":61,"link":"www.bing.com\/webmasters\/help\/which-crawlers-does-bing-use-8c184ec0","name":"bingbot"},{"id":300,"link":"pwnagotchi.ai\/","name":"pwnagotchi"},{"id":41,"link":"sieb.nl","name":"sieb"},{"id":172,"link":"www.sendmail.org","name":"sendmail"}]; 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;