﻿var thePhotos = new Array()

thePhotos[0] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image1.jpg'
thePhotos[1] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image2.jpg'
thePhotos[2] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image3.jpg'
thePhotos[3] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image4.jpg'
thePhotos[4] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image5.jpg'
thePhotos[5] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image6.jpg'
thePhotos[6] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image7.jpg'
thePhotos[7] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image8.jpg'
thePhotos[8] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image9.jpg'
thePhotos[9] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image10.jpg'
thePhotos[10] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image11.jpg'
thePhotos[11] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image12.jpg'
thePhotos[12] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image13.jpg'
thePhotos[13] = 'http://www.telesolutionsearch.com/wp-content/themes/glossyblue-1-4/photos/image14.jpg'

// do not edit anything below this line

var j = 0
var p = thePhotos.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Photo()
   preBuffer[i].src = thePhotos[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showPhoto(){
document.write('<img src="'+thePhotos[whichImage]+'">');
}