// ==============================================
// 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/royal_soft_grip_brushes_01.jpg'
theImages[1] = 'images_small/royal_soft_grip_brushes_02.jpg'
theImages[2] = 'images_small/royal_soft_grip_brushes_03.jpg'
theImages[3] = 'images_small/royal_soft_grip_brushes_04.jpg'
theImages[4] = 'images_small/royal_soft_grip_brushes_05.jpg'
theImages[5] = 'images_small/royal_soft_grip_brushes_06.jpg'
theImages[6] = 'images_small/royal_soft_grip_brushes_07.jpg'
theImages[7] = 'images_small/royal_soft_grip_brushes_08.jpg'
theImages[8] = 'images_small/royal_soft_grip_brushes_09.jpg'
theImages[9] = 'images_small/royal_soft_grip_brushes_10.jpg'
theImages[10] = 'images_small/royal_soft_grip_brushes_11.jpg'
theImages[11] = 'images_small/royal_soft_grip_brushes_12.jpg'
theImages[12] = 'images_small/royal_soft_grip_brushes_13.jpg'
theImages[13] = 'images_small/royal_soft_grip_brushes_14.jpg'
theImages[14] = 'images_small/royal_soft_grip_brushes_15.jpg'
theImages[15] = 'images_small/royal_soft_grip_brushes_16.jpg'
theImages[16] = 'images_small/royal_soft_grip_brushes_17.jpg'
theImages[17] = 'images_small/royal_soft_grip_brushes_18.jpg'
theImages[18] = 'images_small/royal_soft_grip_brushes_19.jpg'
theImages[19] = 'images_small/royal_soft_grip_brushes_20.jpg'
theImages[20] = 'images_small/royal_soft_grip_brushes_21.jpg'
theImages[21] = 'images_small/royal_soft_grip_brushes_22.jpg'
theImages[22] = 'images_small/royal_soft_grip_brushes_23.jpg'
theImages[23] = 'images_small/royal_soft_grip_brushes_24.jpg'
theImages[24] = 'images_small/royal_soft_grip_brushes_25.jpg'
theImages[25] = 'images_small/royal_soft_grip_brushes_26.jpg'
theImages[26] = 'images_small/royal_soft_grip_brushes_27.jpg'
theImages[27] = 'images_small/royal_soft_grip_brushes_28.jpg'
theImages[28] = 'images_small/royal_soft_grip_brushes_29.jpg'
theImages[29] = 'images_small/royal_soft_grip_brushes_30.jpg'
theImages[30] = 'images_small/royal_soft_grip_brushes_31.jpg'
theImages[31] = 'images_small/royal_soft_grip_brushes_32.jpg'
theImages[32] = 'images_small/royal_soft_grip_brushes_33.jpg'
theImages[33] = 'images_small/royal_soft_grip_brushes_34.jpg'
theImages[34] = 'images_small/royal_soft_grip_brushes_35.jpg'
theImages[35] = 'images_small/royal_soft_grip_brushes_36.jpg'
theImages[36] = 'images_small/royal_soft_grip_brushes_37.jpg'
theImages[37] = 'images_small/royal_soft_grip_brushes_38.jpg'
theImages[38] = 'images_small/royal_soft_grip_brushes_39.jpg'
theImages[39] = 'images_small/royal_soft_grip_brushes_40.jpg'
theImages[40] = 'images_small/royal_soft_grip_brushes_41.jpg'
theImages[41] = 'images_small/royal_soft_grip_brushes_42.jpg'
theImages[42] = 'images_small/royal_soft_grip_brushes_43.jpg'
theImages[43] = 'images_small/royal_soft_grip_brushes_44.jpg'
theImages[44] = 'images_small/royal_soft_grip_brushes_45.jpg'
theImages[45] = 'images_small/royal_soft_grip_brushes_46.jpg'
theImages[46] = 'images_small/royal_soft_grip_brushes_47.jpg'
theImages[47] = 'images_small/royal_soft_grip_brushes_48.jpg'
theImages[48] = 'images_small/royal_soft_grip_brushes_49.jpg'
theImages[49] = 'images_small/royal_soft_grip_brushes_50.jpg'
theImages[50] = 'images_small/royal_soft_grip_brushes_51.jpg'
theImages[51] = 'images_small/royal_soft_grip_brushes_52.jpg'
theImages[52] = 'images_small/royal_soft_grip_brushes_53.jpg'
theImages[53] = 'images_small/royal_soft_grip_brushes_54.jpg'
theImages[54] = 'images_small/royal_soft_grip_brushes_55.jpg'
theImages[55] = 'images_small/royal_soft_grip_brushes_56.jpg'
theImages[56] = 'images_small/royal_soft_grip_brushes_57.jpg'
theImages[57] = 'images_small/royal_soft_grip_brushes_58.jpg'
theImages[58] = 'images_small/royal_soft_grip_brushes_59.jpg'
theImages[59] = 'images_small/royal_soft_grip_brushes_60.jpg'
theImages[60] = 'images_small/royal_soft_grip_brushes_61.jpg'
theImages[61] = 'images_small/royal_soft_grip_brushes_62.jpg'
theImages[62] = 'images_small/royal_soft_grip_brushes_63.jpg'
theImages[63] = 'images_small/royal_soft_grip_brushes_64.jpg'
theImages[64] = 'images_small/royal_soft_grip_brushes_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">');
}