// Display a random image on the YOCF page
	var theImages = new Array()

	theImages[0] = '/graphics/yocf-carousel1.jpg'
	theImages[1] = '/graphics/yocf-carousel2.jpg'
	theImages[2] = '/graphics/yocf-carousel3.jpg'
	theImages[3] = '/graphics/yocf-carousel4.jpg'
	theImages[4] = '/graphics/yocf-carousel5.jpg'
	theImages[5] = '/graphics/yocf-carousel6.jpg'
	theImages[6] = '/graphics/yocf-carousel7.jpg'
	theImages[7] = '/graphics/yocf-carousel8.jpg'
	theImages[8] = '/graphics/yocf-carousel9.jpg'
	theImages[9] = '/graphics/yocf-carousel10.jpg'
	theImages[10] = '/graphics/yocf-carousel11.jpg'
	theImages[11] = '/graphics/yocf-carousel12.jpg'
	theImages[12] = '/graphics/yocf-carousel13.jpg'
	theImages[13] = '/graphics/yocf-carousel14.jpg'
	theImages[14] = '/graphics/yocf-carousel15.jpg'
	theImages[15] = '/graphics/yocf-carousel16.jpg'
	theImages[16] = '/graphics/yocf-carousel17.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]
	}
	var whichImage = Math.round(Math.random()*(p-1));
	function showImage(){
	document.write('<img src="'+theImages[whichImage]+'">');
	}