const links = [{"id":186,"link":"dronebl.org","name":"DroneBL"},{"id":10,"link":"video.google.com","name":"Google video"},{"id":249,"link":"www.apple.com\/nl\/macos\/","name":"macOS"},{"id":184,"link":"x.com","name":"X"},{"id":219,"link":"root-servers.org","name":"root-servers.org"},{"id":216,"link":"www.bof.nl","name":"Bits of Freedom"},{"id":91,"link":"www.reuters.com\/","name":"reuters"},{"id":189,"link":"plan.tomtom.com","name":"TomTom"},{"id":25,"link":"sf.net","name":"SourceForge"},{"id":356,"link":"notebooklm.google.com\/","name":"notebookLM"}]; 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;