<!--
// 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.

theImages[0] = 'http://www.harmonytaijiquan.com/images/gallery/1.gif'
theImages[1] = 'http://www.harmonytaijiquan.com/images/gallery/2.gif'
theImages[2] = 'http://www.harmonytaijiquan.com/images/gallery/3.gif'
theImages[3] = 'http://www.harmonytaijiquan.com/images/gallery/4.gif'
theImages[4] = 'http://www.harmonytaijiquan.com/images/gallery/5.gif'
theImages[5] = 'http://www.harmonytaijiquan.com/images/gallery/6.gif'
theImages[6] = 'http://www.harmonytaijiquan.com/images/gallery/7.gif'
theImages[7] = 'http://www.harmonytaijiquan.com/images/gallery/8.gif'
theImages[8] = 'http://www.harmonytaijiquan.com/images/gallery/9.gif'
theImages[9] = 'http://www.harmonytaijiquan.com/images/gallery/10.gif'
theImages[10] = 'http://www.harmonytaijiquan.com/images/gallery/11.gif'
theImages[11] = 'http://www.harmonytaijiquan.com/images/gallery/12.gif'
theImages[12] = 'http://www.harmonytaijiquan.com/images/gallery/13.gif'
theImages[13] = 'http://www.harmonytaijiquan.com/images/gallery/14.gif'
theImages[14] = 'http://www.harmonytaijiquan.com/images/gallery/15.gif'
theImages[15] = 'http://www.harmonytaijiquan.com/images/gallery/16.gif'
theImages[16] = 'http://www.harmonytaijiquan.com/images/gallery/17.gif'
theImages[17] = 'http://www.harmonytaijiquan.com/images/gallery/18.gif'
theImages[18] = 'http://www.harmonytaijiquan.com/images/gallery/19.gif'
theImages[19] = 'http://www.harmonytaijiquan.com/images/gallery/20.gif'
theImages[20] = 'http://www.harmonytaijiquan.com/images/gallery/21.gif'
theImages[21] = 'http://www.harmonytaijiquan.com/images/gallery/22.gif'
theImages[22] = 'http://www.harmonytaijiquan.com/images/gallery/23.gif'
theImages[23] = 'http://www.harmonytaijiquan.com/images/gallery/24.gif'
theImages[24] = 'http://www.harmonytaijiquan.com/images/gallery/25.gif'
theImages[25] = 'http://www.harmonytaijiquan.com/images/gallery/26.gif'
theImages[26] = 'http://www.harmonytaijiquan.com/images/gallery/27.gif'
theImages[27] = 'http://www.harmonytaijiquan.com/images/gallery/28.gif'
theImages[28] = 'http://www.harmonytaijiquan.com/images/gallery/29.gif'
theImages[29] = 'http://www.harmonytaijiquan.com/images/gallery/30.gif'
theImages[30] = 'http://www.harmonytaijiquan.com/images/gallery/31.gif'
theImages[31] = 'http://www.harmonytaijiquan.com/images/gallery/32.gif'
theImages[32] = 'http://www.harmonytaijiquan.com/images/gallery/33.gif'
theImages[33] = 'http://www.harmonytaijiquan.com/images/gallery/34.gif'
theImages[34] = 'http://www.harmonytaijiquan.com/images/gallery/35.gif'
theImages[35] = 'http://www.harmonytaijiquan.com/images/gallery/36.gif'
theImages[36] = 'http://www.harmonytaijiquan.com/images/gallery/37.gif'
theImages[37] = 'http://www.harmonytaijiquan.com/images/gallery/38.gif'
theImages[38] = 'http://www.harmonytaijiquan.com/images/gallery/39.gif'
theImages[39] = 'http://www.harmonytaijiquan.com/images/gallery/40.gif'
theImages[40] = 'http://www.harmonytaijiquan.com/images/gallery/41.gif'
theImages[41] = 'http://www.harmonytaijiquan.com/images/gallery/42.gif'
theImages[42] = 'http://www.harmonytaijiquan.com/images/gallery/43.gif'
theImages[43] = 'http://www.harmonytaijiquan.com/images/gallery/44.gif'
theImages[44] = 'http://www.harmonytaijiquan.com/images/gallery/45.gif'
theImages[45] = 'http://www.harmonytaijiquan.com/images/gallery/46.gif'
theImages[46] = 'http://www.harmonytaijiquan.com/images/gallery/47.gif'
theImages[47] = 'http://www.harmonytaijiquan.com/images/gallery/48.gif'
theImages[48] = 'http://www.harmonytaijiquan.com/images/gallery/49.gif'



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

 -->