//<script language="JavaScript">
<!--
// ==============================================
// 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
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'http://www.orntar.net/images/quote-00.gif' //
theImages[1] = 'http://www.orntar.net/images/quote-01.gif' //
theImages[2] = 'http://www.orntar.net/images/quote-02.gif' //
theImages[3] = 'http://www.orntar.net/images/quote-03.gif' //
theImages[4] = 'http://www.orntar.net/images/quote-04.gif' //
theImages[5] = 'http://www.orntar.net/images/quote-05.gif' //
theImages[6] = 'http://www.orntar.net/images/quote-06.gif' //
theImages[7] = 'http://www.orntar.net/images/quote-07.gif' //
theImages[8] = 'http://www.orntar.net/images/quote-08.gif' //
theImages[9] = 'http://www.orntar.net/images/quote-09.gif' //
theImages[10] = 'http://www.orntar.net/images/quote-10.gif' //
theImages[11] = 'http://www.orntar.net/images/quote-11.gif' //
theImages[12] = 'http://www.orntar.net/images/quote-12.gif' //
theImages[13] = 'http://www.orntar.net/images/quote-13.gif' //
theImages[14] = 'http://www.orntar.net/images/quote-14.gif' //
theImages[15] = 'http://www.orntar.net/images/quote-15.gif' //
theImages[16] = 'http://www.orntar.net/images/quote-16.gif' //
theImages[17] = 'http://www.orntar.net/images/quote-17.gif' //
theImages[18] = 'http://www.orntar.net/images/quote-18.gif' //
theImages[19] = 'http://www.orntar.net/images/quote-19.gif' //
theImages[20] = 'http://www.orntar.net/images/quote-20.gif' //
theImages[21] = 'http://www.orntar.net/images/quote-21.gif' //
theImages[22] = 'http://www.orntar.net/images/quote-22.gif' //
theImages[23] = 'http://www.orntar.net/images/quote-23.gif' //
theImages[24] = 'http://www.orntar.net/images/quote-24.gif' //
theImages[25] = 'http://www.orntar.net/images/quote-25.gif' //
theImages[26] = 'http://www.orntar.net/images/quote-26.gif' //
theImages[27] = 'http://www.orntar.net/images/quote-27.gif' //
theImages[28] = 'http://www.orntar.net/images/quote-28.gif' //
theImages[29] = 'http://www.orntar.net/images/quote-29.gif' //
theImages[30] = 'http://www.orntar.net/images/quote-30.gif' //
theImages[31] = 'http://www.orntar.net/images/quote-31.gif' //
theImages[32] = 'http://www.orntar.net/images/quote-32.gif' //
theImages[33] = 'http://www.orntar.net/images/quote-33.gif' //

// ======================================
// 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]+'">');
}

//-->
//</script>
