﻿<!--

//Insert the text/images to be randomized
var img1 = "images/index-18a.jpg"
var img2 = "images/index-18b.jpg"
var img3 = "images/index-18c.jpg"
var img4 = "images/index-18d.jpg"
var img5 = "images/index-18e.jpg"

//get a random number...
var randomize = Math.round(Math.random()*5)

//select text/image based on random number
if (randomize == 1){
newimg = img1
}else if (randomize == 2){
newimg = img2

}else if (randomize == 3){
newimg = img3

}else if (randomize == 4){
newimg = img4

}else{
newimg = img5
}

//output text/image
document.write('<IMG SRC="'+newimg+'">')

//-->


