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

theImages[0] = 'http://www.lightsaberarchives.org/layout/gllabs/images/logo10.jpg'
theImages[1] = 'http://www.lightsaberarchives.org/layout/gllabs/images/logo11.jpg'
theImages[2] = 'http://www.lightsaberarchives.org/layout/gllabs/images/logo12.jpg'
theImages[3] = 'http://www.lightsaberarchives.org/layout/gllabs/images/logo13.jpg'
theImages[4] = 'http://www.lightsaberarchives.org/layout/gllabs/images/logo14.jpg'
theImages[5] = 'http://www.lightsaberarchives.org/layout/gllabs/images/logo15.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" width="600" height="100">');
}

var Quotation=new Array() // do not change this!

Quotation[0] = "There is no emotion, there is peace.";
Quotation[1] = "Peace is a lie, there is only passion.";
Quotation[2] = "There is no ignorance, there is knowledge.";
Quotation[3] = "Through passion, I gain strength.";
Quotation[4] = "There is no passion, there is serenity.";
Quotation[5] = "Through strength, I gain power.";
Quotation[6] = "There is no death, there is the Force.";
Quotation[7] = "Through power, I gain victory.";
Quotation[8] = "Through victory, my chains are broken.";
Quotation[9] = "The Force shall free me.";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}




