var theImages2 = new Array()
	theImages2[0] = '/images/sm/01.jpg'
	theImages2[1] = '/images/sm/02.jpg'
	theImages2[2] = '/images/sm/03.jpg'
	theImages2[3] = '/images/sm/04.jpg'
	theImages2[4] = '/images/sm/05.jpg'
	theImages2[5] = '/images/sm/06.jpg'
	theImages2[6] = '/images/sm/07.jpg'
	theImages2[7] = '/images/sm/08.jpg'
	theImages2[8] = '/images/sm/09.jpg'
	theImages2[9] = '/images/sm/10.jpg'
	theImages2[10] = '/images/sm/11.jpg'
	theImages2[11] = '/images/sm/12.jpg'
	theImages2[12] = '/images/sm/13.jpg'
	theImages2[13] = '/images/sm/14.jpg'
	theImages2[14] = '/images/sm/15.jpg'
	theImages2[15] = '/images/sm/16.jpg'
	// do not edit anything below this line
	var j = 0
	var p = theImages2.length;
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = theImages2[i]
	}
	var whichImage = Math.round(Math.random()*(p-1));
	function showImage2(){
	document.write('<img src="'+theImages2[whichImage]+'">');
	}