// JavaScript Document

	
	// Set up the image files to be used.
	var theVoice = new Array() // do not change this
	// To add more image files, continue with the
	// pattern below, adding to the array.
	theVoice[0] = 'images/ukvoices1.gif'
	theVoice[1] = 'images/ukvoices2.gif'
	theVoice[2] = 'images/ukvoices3.gif'
	theVoice[3] = 'images/ukvoices4.gif'
	theVoice[4] = 'images/ukvoices5.gif'
	theVoice[5] = 'images/ukvoices6.gif'
	theVoice[6] = 'images/ukvoices7.gif'
	theVoice[7] = 'images/ukvoices8.gif'
	theVoice[8] = 'images/ukvoices9.gif'
	theVoice[9] = 'images/ukvoices10.gif'
	theVoice[10] = 'images/ukvoices11.gif'
	theVoice[11] = 'images/ukvoices12.gif'
	theVoice[12] = 'images/ukvoices13.gif'
	theVoice[13] = 'images/ukvoices14.gif'
	theVoice[14] = 'images/ukvoices15.gif'
	theVoice[15] = 'images/ukvoices16.gif'
	theVoice[16] = 'images/ukvoices17.gif'
	theVoice[17] = 'images/ukvoices18.gif'
	theVoice[18] = 'images/ukvoices19.gif'
	theVoice[19] = 'images/ukvoices20.gif'
	theVoice[20] = 'images/ukvoices21.gif'
	theVoice[21] = 'images/ukvoices22.gif'
	theVoice[22] = 'images/ukvoices23.gif'
	theVoice[23] = 'images/ukvoices24.gif'
	theVoice[24] = 'images/ukvoices25.gif'
	theVoice[25] = 'images/ukvoices26.gif'
	theVoice[26] = 'images/ukvoices27.gif'
	theVoice[27] = 'images/ukvoices28.gif'
	theVoice[28] = 'images/ukvoices29.gif'
	theVoice[29] = 'images/ukvoices30.gif'
	theVoice[30] = 'images/ukvoices31.gif'
	theVoice[31] = 'images/ukvoices32.gif'
	theVoice[32] = 'images/ukvoices33.gif'
	theVoice[33] = 'images/ukvoices34.gif'
	theVoice[34] = 'images/ukvoices35.gif'
	theVoice[35] = 'images/ukvoices36.gif'
	theVoice[36] = 'images/ukvoices37.gif'	
	// do not edit anything below this line

	var j = 0
	var p = theVoice.length;
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
   		preBuffer[i] = new Image()
   		preBuffer[i].src = theVoice[i]
	}
	var whichVoice = Math.round(Math.random()*(p-1));
	function showVoice(){
		document.write('<img src="'+theVoice[whichVoice]+'">');
	}
	
	//  End -->
	