<!-- Begin
// Set up the image files to be used.
var imgStyle1 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

imgStyle1[0] = 'img/bg_ecc_1.jpg'
imgStyle1[1] = 'img/bg_ecc_2.jpg'
imgStyle1[2] = 'img/bg_ecc_3.jpg'
imgStyle1[3] = 'img/bg_ecc_4.jpg'
imgStyle1[4] = 'img/bg_ecc_5.jpg'
imgStyle1[5] = 'img/bg_ecc_6.jpg'
imgStyle1[6] = 'img/bg_ecc_7.jpg'
imgStyle1[7] = 'img/bg_ecc_8.jpg'
imgStyle1[8] = 'img/bg_ecc_9.jpg'
imgStyle1[9] = 'img/bg_ecc_10.jpg'

// do not edit anything below this line

var j = 0
var p = imgStyle1.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = imgStyle1[i]
}
var whichStyle1 = Math.round(Math.random()*(p-1));
function showStyle1(){
document.write('<img src="'+imgStyle1[whichStyle1]+'" />');
}
