// ==============================================
// 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] = 'images_small/artist_paint_brush_01.jpg'
theImages[1] = 'images_small/artist_paint_brush_02.jpg'
theImages[2] = 'images_small/artist_paint_brush_03.jpg'
theImages[3] = 'images_small/artist_paint_brush_04.jpg'
theImages[4] = 'images_small/artist_paint_brush_05.jpg'
theImages[5] = 'images_small/artist_paint_brush_06.jpg'
theImages[6] = 'images_small/artist_paint_brush_07.jpg'
theImages[7] = 'images_small/artist_paint_brush_08.jpg'
theImages[8] = 'images_small/artist_paint_brush_09.jpg'
theImages[9] = 'images_small/artist_paint_brush_10.jpg'
theImages[10] = 'images_small/artist_paint_brush_11.jpg'
theImages[11] = 'images_small/artist_paint_brush_12.jpg'
theImages[12] = 'images_small/artist_paint_brush_13.jpg'
theImages[13] = 'images_small/artist_paint_brush_14.jpg'
theImages[14] = 'images_small/artist_paint_brush_15.jpg'
theImages[15] = 'images_small/artist_paint_brush_16.jpg'
theImages[16] = 'images_small/artist_paint_brush_17.jpg'
theImages[17] = 'images_small/artist_paint_brush_18.jpg'
theImages[18] = 'images_small/artist_paint_brush_19.jpg'
theImages[19] = 'images_small/artist_paint_brush_20.jpg'
theImages[20] = 'images_small/artist_paint_brush_21.jpg'
theImages[21] = 'images_small/artist_paint_brush_22.jpg'
theImages[22] = 'images_small/artist_paint_brush_23.jpg'
theImages[23] = 'images_small/artist_paint_brush_24.jpg'
theImages[24] = 'images_small/artist_paint_brush_25.jpg'
theImages[25] = 'images_small/artist_paint_brush_26.jpg'
theImages[26] = 'images_small/artist_paint_brush_27.jpg'
theImages[27] = 'images_small/artist_paint_brush_28.jpg'
theImages[28] = 'images_small/artist_paint_brush_29.jpg'
theImages[29] = 'images_small/artist_paint_brush_30.jpg'
theImages[30] = 'images_small/artist_paint_brush_31.jpg'
theImages[31] = 'images_small/artist_paint_brush_32.jpg'
theImages[32] = 'images_small/artist_paint_brush_33.jpg'
theImages[33] = 'images_small/artist_paint_brush_34.jpg'
theImages[34] = 'images_small/artist_paint_brush_35.jpg'
theImages[35] = 'images_small/artist_paint_brush_36.jpg'
theImages[36] = 'images_small/artist_paint_brush_37.jpg'
theImages[37] = 'images_small/artist_paint_brush_38.jpg'
theImages[38] = 'images_small/artist_paint_brush_39.jpg'
theImages[39] = 'images_small/artist_paint_brush_40.jpg'
theImages[40] = 'images_small/artist_paint_brush_41.jpg'
theImages[41] = 'images_small/artist_paint_brush_42.jpg'
theImages[42] = 'images_small/artist_paint_brush_43.jpg'
theImages[43] = 'images_small/artist_paint_brush_44.jpg'
theImages[44] = 'images_small/artist_paint_brush_45.jpg'
theImages[45] = 'images_small/artist_paint_brush_46.jpg'
theImages[46] = 'images_small/artist_paint_brush_47.jpg'
theImages[47] = 'images_small/artist_paint_brush_48.jpg'
theImages[48] = 'images_small/artist_paint_brush_49.jpg'
theImages[49] = 'images_small/artist_paint_brush_50.jpg'
theImages[50] = 'images_small/artist_paint_brush_51.jpg'
theImages[51] = 'images_small/artist_paint_brush_52.jpg'
theImages[52] = 'images_small/artist_paint_brush_53.jpg'
theImages[53] = 'images_small/artist_paint_brush_54.jpg'
theImages[54] = 'images_small/artist_paint_brush_55.jpg'
theImages[55] = 'images_small/artist_paint_brush_56.jpg'
theImages[56] = 'images_small/artist_paint_brush_57.jpg'
theImages[57] = 'images_small/artist_paint_brush_58.jpg'
theImages[58] = 'images_small/artist_paint_brush_59.jpg'
theImages[59] = 'images_small/artist_paint_brush_60.jpg'
theImages[60] = 'images_small/artist_paint_brush_61.jpg'
theImages[61] = 'images_small/artist_paint_brush_62.jpg'
theImages[62] = 'images_small/artist_paint_brush_63.jpg'
theImages[63] = 'images_small/artist_paint_brush_64.jpg'
theImages[64] = 'images_small/artist_paint_brush_65.jpg'
// ======================================
// 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('<td background="'+theImages[whichImage]+'" border="0" width="100" height="75">');
}
