var theImages = new Array() 
	
	theImages[0] = 'images/slide15.jpg'
	theImages[1] = 'images/slide02.jpg'
	theImages[2] = 'images/slide03.jpg'
	theImages[3] = 'images/slide04.jpg'
	theImages[4] = 'images/slide05.jpg'
	theImages[5] = 'images/slide06.jpg'
	theImages[6] = 'images/slide07.jpg'
	theImages[7] = 'images/slide08.jpg'
	theImages[8] = 'images/slide09.jpg'
	theImages[9] = 'images/slide10.jpg'
	theImages[10] = 'images/slide11.jpg'
	theImages[11] = 'images/slide12.jpg'
	theImages[12] = 'images/slide13.jpg'
	theImages[13] = 'images/slide14.jpg'
	theImages[14] = 'images/slide15.jpg'
	theImages[15] = 'images/slide16.jpg'
	theImages[16] = 'images/slide17.jpg'
	theImages[17] = 'images/slide18.jpg'
	theImages[18] = 'images/slide19.jpg'
	theImages[19] = 'images/slide20.jpg'
	theImages[20] = 'images/slide21.jpg'
	theImages[21] = 'images/slide22.jpg'
	theImages[22] = 'images/slide23.jpg'
	
	var p = theImages.length;
	var i = Math.round(Math.random()*(p-1));
	
	function showImage(){
	document.write('<img src="'+theImages[i]+'">');
	}
