Aşağıdaki kodları kullanarak yapabilirsiniz;
<script>
function image() {
};
image = new image();
lifelist = 0;
// Resim Sırasına göre gösterir
image[lifelist++] = '<a target="_blank" href="http://RESME TIKLAYINCA GİTMESİNİ İSTEDİĞİN ADRES"><img style="width: 468px; height: 60px" border="0" src="RESİ URL 1" /></a>'
image[lifelist++] = '<a target="_blank" href="http://RESME TIKLAYINCA GİTMESİNİ İSTEDİĞİN ADRES"><img style="width: 468px; height: 60px" border="0" src="RESİM URL 2" /></a>'
image[lifelist++] = '<a target="_blank" href="http://RESME TIKLAYINCA GİTMESİNİ İSTEDİĞİN ADRES"><img style="width: 468px; height: 60px" border="0" src="RESİM URL 3" /></a> '
// keep adding items here...
lifelist = Math.floor(Math.random() * lifelist);
document.write(image[lifelist]);
</script>