var theTopImg = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theTopImg[0] = '../imgs/rotating/tlptop1.jpg'
theTopImg[1] = '../imgs/rotating/tlptop2.jpg'
theTopImg[2] = '../imgs/rotating/tlptop3.jpg'
theTopImg[3] = '../imgs/rotating/top1.jpg'
theTopImg[4] = '../imgs/rotating/top2.jpg'
theTopImg[5] = '../imgs/rotating/top3.jpg'

// do not edit anything below this line

var j = 0
var p = theTopImg.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theTopImg[i]
}
var whichImg = Math.round(Math.random()*(p-1));
function showTopImage(){
document.write('<img src="'+theTopImg[whichImg]+'">');
}

//  End -->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0 - open popup window
  window.open(theURL,winName,features);
}
//-->

var theImg = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImg[0] = 'imgs/rotating/left-comp1.jpg'
theImg[1] = 'imgs/rotating/left-comp2.jpg'
theImg[2] = 'imgs/rotating/left-comp3.jpg'
theImg[3] = 'imgs/rotating/left-comp4.jpg'
theImg[4] = 'imgs/rotating/left-comp5.jpg'
theImg[5] = 'imgs/rotating/left-comp6.jpg'
theImg[6] = 'imgs/rotating/left-comp7.jpg'
theImg[7] = 'imgs/rotating/left-comp8.jpg'
theImg[8] = 'imgs/rotating/left-comp9.jpg'

// do not edit anything below this line

var j = 0
var p = theImg.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImg[i]
}
var whichImg2 = Math.round(Math.random()*(p-1));
function showLeftImage(){
document.write('<img src="'+theImg[whichImg2]+'">');
}

//  End -->