
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theTopImages = new Array() // do not change this
var theContentImages = new Array() // do not change this
var theContentThumbImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theTopImages[0] = '/images/site/kop01.jpg'
theTopImages[1] = '/images/site/kop02.jpg'
theTopImages[2] = '/images/site/kop03.jpg'
theTopImages[3] = '/images/site/kop04.jpg'
theTopImages[4] = '/images/site/kop05.jpg'
theTopImages[5] = '/images/site/kop06.jpg'
theTopImages[6] = '/images/site/kop07.jpg'
theTopImages[7] = '/images/site/kop08.jpg'
theTopImages[8] = '/images/site/kop09.jpg'
theTopImages[9] = '/images/site/kop10.jpg'

theImages[0] = '01'
theImages[1] = '02'
theImages[2] = '03'
theImages[3] = '04'
theImages[4] = '05'
theImages[5] = '06'
theImages[6] = '07'
theImages[7] = '08'
theImages[8] = '09'
theImages[9] = '10'


// do not edit anything below this line

var j = 0
var p = theTopImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theTopImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function getTopRow(){
  document.write('<tr align="right" valign="top" height="200"><td align="right" valign="top" width="800px" background="'+theTopImages[whichImage]+'"><div></div></td></tr>');
}
function getContentImageThumb(){
  document.write('<DIV id=contentThumb-'+theImages[whichImage]+'></DIV>');
}
function getContentImage(){
  document.write('<DIV id=contentSpacer></DIV>');
  document.write('<DIV id=extra></DIV>');
  document.write('<DIV id=contentImg-'+theImages[whichImage]+'></DIV>');


}
