<!--
// ==============================================
// 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 theQuote = 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!

theQuote[0] = '000_common_gfx/quote_corp01_header.gif'
theQuote[1] = '000_common_gfx/quote_corp02_header.gif'
theQuote[2] = '000_common_gfx/quote_corp03_header.gif'
theQuote[3] = '000_common_gfx/quote_corp04_header.gif'
theQuote[4] = '000_common_gfx/quote_corp10_header.gif'
theQuote[5] = '000_common_gfx/quote_edu05_header.gif'
theQuote[6] = '000_common_gfx/quote_edu01_header.gif'
theQuote[7] = '000_common_gfx/quote_edu02_header.gif'
theQuote[8] = '000_common_gfx/quote_edu03_header.gif'
theQuote[9] = '000_common_gfx/quote_edu04_header.gif'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theQuote.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theQuote[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theQuote[whichImage]+'">');
}

//-->