// JavaScript Document
<!--

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

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = '/portfolio/star-sparkler.html'><img src='../img/portfolio/Star-Sparkler-small.jpg' alt='Star Sparkler'  border='0'></a>";

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

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

document.write(images[index]);

//done

// -->
