var theImages = new Array()
//Random-loading images
theImages[0] = 'still_01.jpg' 
theImages[1] = 'still_02.jpg' 
theImages[2] = 'still_03.jpg' 
theImages[3] = 'still_04.jpg' 
theImages[4] = 'still_05.jpg' 

theImages[5] = 'still_06.jpg' 
theImages[6] = 'still_07.jpg' 
theImages[7] = 'still_08.jpg' 
theImages[8] = 'still_09.jpg' 
theImages[9] = 'still_10.jpg' 

theImages[10] = 'still_11.jpg' 
theImages[11] = 'still_12.jpg' 
theImages[12] = 'still_13.jpg' 
theImages[13] = 'still_14.jpg' 
theImages[14] = 'still_15.jpg' 

theImages[15] = 'still_16.jpg' 
theImages[16] = 'still_17.jpg' 
theImages[17] = 'still_18.jpg' 
theImages[18] = 'still_19.jpg' 
theImages[19] = 'still_20.jpg' 

theImages[15] = 'still_16.jpg' 
theImages[16] = 'still_17.jpg' 
theImages[17] = 'still_18.jpg' 
theImages[18] = 'still_19.jpg' 
theImages[19] = 'still_20.jpg' 

theImages[20] = 'still_21.jpg' 
theImages[21] = 'still_22.jpg' 
theImages[22] = 'still_23.jpg' 
theImages[23] = 'still_24.jpg' 
theImages[24] = 'still_25.jpg' 

theImages[25] = 'still_26.jpg' 
theImages[26] = 'still_27.jpg' 
theImages[27] = 'still_28.jpg' 
theImages[28] = 'still_29.jpg' 
theImages[29] = 'still_30.jpg' 

theImages[30] = 'still_31.jpg' 
theImages[31] = 'still_32.jpg' 
theImages[32] = 'still_33.jpg' 
theImages[33] = 'still_34.jpg' 
theImages[34] = 'still_35.jpg' 

theImages[35] = 'still_36.jpg' 
theImages[36] = 'still_37.jpg' 
theImages[37] = 'still_38.jpg' 
theImages[38] = 'still_39.jpg' 
theImages[39] = 'still_40.jpg' 

theImages[40] = 'still_41.jpg' 
theImages[41] = 'still_42.jpg' 
theImages[42] = 'still_43.jpg' 
theImages[43] = 'still_44.jpg' 
theImages[44] = 'still_45.jpg' 

theImages[45] = 'still_46.jpg' 
theImages[46] = 'still_47.jpg' 
theImages[47] = 'still_48.jpg' 
theImages[48] = 'still_49.jpg' 
theImages[49] = 'still_50.jpg' 

theImages[50] = 'still_51.jpg' 
theImages[51] = 'still_52.jpg' 
theImages[52] = 'still_53.jpg' 
theImages[53] = 'still_54.jpg' 
theImages[54] = 'still_55.jpg'



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]
}
function showImage(){
var whichImage = Math.round(Math.random()*(p-1));
document.write('<img src="images/thumbnails/'+theImages[whichImage]+'" border=0 ></a>');
}



var tc = new Array()
//Random-loading images
tc[0] = 'tc1.gif' 
tc[1] = 'tc2.gif' 
tc[2] = 'tc3.gif' 
tc[3] = 'tc4.gif' 
tc[4] = 'tc5.gif' 


var k = 0

var r = tc.length;
var preBuffer = new Array()

for (l = 0; i < r; l++){
	preBuffer[l] = new Image()
	preBuffer[l].src = tc[l]
}
function showtc(){
var whichtc = Math.round(Math.random()*(r-1));
document.write('<img src="images/'+tc[whichtc]+'" border=0 width=900 height=15>');
}
