// JavaScript Document
<!--

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

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = '/portfolio/shower-cuff.html'><img src='../img/portfolio/Shower-Cuff-small.jpg' alt='Shower Cuff'  border='0'></a>";

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

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

document.write(images[index]);

//done

// -->
