	var theImages = new Array()
	theImages[0] = '/images/lg/01.jpg'
	theImages[1] = '/images/lg/02.jpg'
	theImages[2] = '/images/lg/03.jpg'
	theImages[3] = '/images/lg/04.jpg'
	theImages[4] = '/images/lg/05.jpg'
	theImages[5] = '/images/lg/06.jpg'
	theImages[6] = '/images/lg/07.jpg'
	theImages[7] = '/images/lg/08.jpg'
	theImages[8] = '/images/lg/09.jpg'
	theImages[9] = '/images/lg/10.jpg'
	theImages[10] = '/images/lg/11.jpg'
	theImages[11] = '/images/lg/12.jpg'
	theImages[12] = '/images/lg/13.jpg'
	theImages[13] = '/images/lg/14.jpg'
	theImages[14] = '/images/lg/15.jpg'
	theImages[15] = '/images/lg/16.jpg'
	theImages[16] = '/images/lg/17.jpg'
	// 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]+'">');
	}