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/ertltop1.jpg'
theTopImg[1] = '../imgs/rotating/ertltop2.jpg'
theTopImg[2] = '../imgs/rotating/ertltop3.jpg'
theTopImg[3] = '../imgs/rotating/ertltop4.jpg'
theTopImg[4] = '../imgs/rotating/ertltop5.jpg'
theTopImg[5] = '../imgs/rotating/ertltop6.jpg'
theTopImg[6] = '../imgs/rotating/ertltop7.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 -->


// Rotate left side img



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/ertl2.jpg'
theImg[1] = '../imgs/rotating/ertlleft1.jpg'
theImg[2] = '../imgs/rotating/ertl4.jpg'
theImg[3] = '../imgs/rotating/ertl5.jpg'
theImg[4] = '../imgs/rotating/ertl6.jpg'
theImg[5] = '../imgs/rotating/ertl7.jpg'
theImg[6] = '../imgs/rotating/ertl8.jpg'
theImg[7] = '../imgs/rotating/ertlleft2.jpg'
theImg[8] = '../imgs/rotating/ertlleft3.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('<div class="rotimg"><img src="'+theImg[whichImg2]+'"></div>');
}

//  End -->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0 - open popup window
  window.open(theURL,winName,features);
}
//-->

