///store the quotations in arrays

images = new Array(8);

images[0] = "<img src='../images/random/1.jpg' name=random_image width=616 height=153>";
images[1] = "<img src='../images/random/2.jpg' name=random_image width=616 height=153>";
images[2] = "<img src='../images/random/3.jpg' name=random_image width=616 height=153>";
images[3] = "<img src='../images/random/4.jpg' name=random_image width=616 height=153>";
images[4] = "<img src='../images/random/5.jpg' name=random_image width=616 height=153>";
images[5] = "<img src='../images/random/7.jpg' name=random_image width=616 height=153>";
images[6] = "<img src='../images/random/8.jpg' name=random_image width=616 height=153>";
images[7] = "<img src='../images/random/9.jpg' name=random_image width=616 height=153>";
images[8] = "<img src='../images/random/10.jpg' name=random_image width=616 height=153>";



index = Math.floor(Math.random() * images.length);



document.write(images[index]);

