// JavaScript Document

// Set up the Image files to be used.
var theImage = new Array() // do not change this


theImage[0] = '01';
theImage[1] = '02';
theImage[2] = '03';
theImage[3] = '04';
theImage[4] = '05';
theImage[5] = '06';
theImage[6] = '07';

// do not edit anything below this line

var j = 0
var p = theImage.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Array()
   preBuffer[i].src = theImage[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img class="trans" src="/images/transformers/'+theImage[whichImage]+'.png" alt="Transformer" />');
}

