// JavaScript Document
function showMenuChar(){
	var theImages = new Array() // do not change this
var path = '../images/Menu/Characters/'

theImages[0] = path+'DElfF.jpg'
theImages[1] = path+'DElfM.jpg'
theImages[2] = path+'DwarfF.jpg'
theImages[3] = path+'DwarfM.jpg'
theImages[4] = path+'ElfF.jpg'
theImages[5] = path+'ElfM.jpg'
theImages[6] = path+'HumanF.jpg'
theImages[7] = path+'HumanM.jpg'
theImages[8] = path+'OrcF.jpg'
theImages[9] = path+'OrcM.jpg'
theImages[10] = path+'OrcM.jpg'

theImages[11] = path+'DElfF2.jpg'
theImages[12] = path+'DElfM2.jpg'
theImages[13] = path+'DwarfF2.jpg'
theImages[14] = path+'DwarfM2.jpg'
theImages[15] = path+'ElfF2.jpg'
theImages[16] = path+'ElfM2.jpg'
theImages[17] = path+'HumanF2.jpg'
theImages[18] = path+'HumanM2.jpg'
theImages[19] = path+'OrcF2.jpg'
theImages[20] = path+'OrcM2.jpg'
theImages[21] = path+'HumanF.jpg'
//do not edit anything below this line

var j = 0
var p = theImages.length -1;
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));
document.write('<img src="'+theImages[whichImage]+'" border="0">');
}