// Setting files to use for the array.
var pix31 = new Array() 
//Add more files below following same format.

pix31[0] = 'http://shepherd.jesusanswers.com/images/FREE3/f3A1.jpg'
pix31[1] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A2.jpg'
pix31[2] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A3.jpg'
pix31[3] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A4.jpg'
//pix31[4] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A5.jpg'
//pix31[5] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A6.jpg'
//pix31[6] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A7.jpg'
//pix31[7] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A8.jpg'
//pix31[8] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A9.jpg'
//pix31[9] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A10.jpg'
//pix31[10] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A11.jpg'
//pix31[11] = 'http://shepherd.jesusanswers.com/images/FREE3/F3A12.jpg'

var b = pix31.length;
var pBuffer = new Array()
for (i = 0; i < b; i++){
   pBuffer[i] = new Image()
   pBuffer[i].src = pix31[i]
}
var selectpix31 = Math.round(Math.random()*(b-1));
function ipakitahead3_1(){
document.write('<img src="'+pix31[selectpix31]+'">');
}