// JavaScript Document
<!--

//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = '/portfolio/crater-rings.html'><img src='../img/portfolio/Crater-Rings-small.jpg' alt='Crater Rings'  border='0'></a>";

images[1] = "<a href = '/portfolio/egyptian-circles.html'><img src='../img/portfolio/Egyptian-Bangles-small.jpg' alt='Egyptian Bangles'  border='0'></a>";

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

document.write(images[index]);

//done

// -->
