<script language="JavaScript">
images = new Array(8);
images[0] = "<a href = '/home.html'><img src='front/duck.png' border='0'></a>";
images[1] = "<a href = '/home.html'><img src='front/nosmoking.png' border='0'></a>";
images[2] = "<a href = '/home.html'><img src='front/books.png' border='0'></a>";
images[3] = "<a href = '/home.html'><img src='front/harry.png' border='0'></a>";
images[4] = "<a href = '/home.html'><img src='front/baby.png' border='0'></a>";
images[5] = "<a href = '/home.html'><img src='front/ghost.png' border='0'></a>";
images[6] = "<a href = '/home.html'><img src='front/manti.png' border='0'></a>";
images[7] = "<a href = '/home.html'><img src='front/clock.png' border='0'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>