// JavaScript Document
<!--

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

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = '/portfolio/pock-bangles.html'><img src='../img/portfolio/Pock-Bandles-small.jpg' alt='Pock Bandles'  border='0'></a>";

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

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

document.write(images[index]);

//done

// -->
