// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 1.jpg'
theImages[1] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 2.jpg'
theImages[2] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 3.jpg'
theImages[3] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 4.jpg'
theImages[4] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 5.jpg'
theImages[5] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 6.jpg'
theImages[6] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 7.jpg'
theImages[7] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 8.jpg'
theImages[8] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 9.jpg'
theImages[9] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 10.jpg'
theImages[10] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 11.jpg'
theImages[11] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 12.jpg'
theImages[12] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 13.jpg'
theImages[13] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 14.jpg'
theImages[14] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 15.jpg'
theImages[15] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 16.jpg'
theImages[16] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 17.jpg'
theImages[17] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 18.jpg'
theImages[18] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 19.jpg'
theImages[19] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 20.jpg'
theImages[20] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 21.jpg'
theImages[21] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 22.jpg'
theImages[22] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 23.jpg'
theImages[23] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 24.jpg'
theImages[24] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 25.jpg'
theImages[25] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 26.jpg'
theImages[26] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 27.jpg'
theImages[27] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 28.jpg'
theImages[28] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 29.jpg'
theImages[29] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 30.jpg'
theImages[30] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 31.jpg'
theImages[31] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 32.jpg'
theImages[32] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 33.jpg'
theImages[33] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 34.jpg'
theImages[34] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 35.jpg'
theImages[35] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 36.jpg'
theImages[36] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 37.jpg'
theImages[37] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 38.jpg'
theImages[38] = 'http://www.bonfirenight.info/assets/images/imageswapper/lewes-bonfire-night-celebrations 39.jpg'
// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}