
theImages = new Array(5);
theImages[0] = 'uploads/images/randomhomepagephotos/1.jpg'
theImages[1] = 'uploads/images/randomhomepagephotos/2.jpg'
theImages[2] = 'uploads/images/randomhomepagephotos/3.jpg'
theImages[3] = 'uploads/images/randomhomepagephotos/4.jpg'
theImages[4] = 'uploads/images/randomhomepagephotos/5.jpg'


//calculate a random index
index = Math.floor(Math.random() * theImages.length);

//display the quotation
document.write("<p class=\"splashimage\"><img src=\"" + theImages[index] + "\" alt=\"Photo\" width=\"360\" height=\"171\" /></p>\n");