<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
var theAlts = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = '/main_images/quote1.gif'
theImages[1] = '/main_images/quote2.gif'
theImages[2] = '/main_images/quote3.gif'
theImages[3] = '/main_images/quote4.gif'
theImages[4] = '/main_images/quote5.gif'
theImages[5] = '/main_images/quote6.gif'
theImages[6] = '/main_images/quote7.gif'
theImages[7] = '/main_images/quote8.gif'
theImages[8] = '/main_images/quote9.gif'
theImages[9] = '/main_images/quote10.gif'
theImages[10] = '/main_images/quote11.gif'
theImages[11] = '/main_images/quote12.gif'
theImages[12] = '/main_images/quote13.gif'
theImages[13] = '/main_images/quote14.gif'
theImages[14] = '/main_images/quote15.gif'
theImages[15] = '/main_images/quote16.gif'
theImages[16] = '/main_images/quote17.gif'

theAlts[0] = 'The best things in life arent things.  Art Buchwald - US political satirist'
theAlts[1] = 'The important thing is not to stop questioning.  Albert Einstein - Physicist'
theAlts[2] = 'Nature and I are two.  Woody Allen - comedian'
theAlts[3] = 'All television is educational television.  The question is: what is it teaching?  Nicholas Johnson - US author'
theAlts[4] = 'What are the things worth knowing, that will satisfy our every need?  Bill Bourne - Canadian musician'
theAlts[5] = 'Affluence creates poverty.  Marshall McLuhan - Canadian philosopher'
theAlts[6] = 'Study the past if you would define the future.  Confucius - Chinese philosopher & reformer'
theAlts[7] = 'The man who strikes first admits that his ideas have given out.  Chinese proverb.'
theAlts[8] = '...from now on, it is only through a conscious choice and then deliberate policy that humanity will survive.  Pope John Paul II'
theAlts[9] = 'Be joyful though you have considered all the facts.  Wendell Berry - author'
theAlts[10] = 'Education is the best provision for the journey to old age.  Aristotle - Greek critic, philosopher, physicist, & zoologist'
theAlts[11] = 'You must be the change you wish to see in the world.  Mahatma Gandhi - peace activist.'
theAlts[12] = 'Small is beautiful.  E. F. Schumacher - economist'
theAlts[13] = 'All life is an experiment. The more experiments you make the better.  Ralph Waldo Emerson - US essayist & poet'
theAlts[14] = 'We know too much and feel too little.  Bertrand Russell - author'
theAlts[15] = 'A journey of a thousand miles starts with one step.  Lao Tzu - philosopher'
theAlts[16] = 'Imagine all the people sharing all the world.  John Lennon - musician'

// ======================================
// do not change 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]+'" alt="'+theAlts[whichImage]+'">');
}

//-->