// JavaScript Document

images = new Array(2);
images[0] = "<img src='gimmick_1.jpg' alt='The Live Taxi'>";
images[1] = "<img src='gimmick_3.jpg' alt='Our next Concerts'>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);