var theImages = new Array();

theImages[0] = 'pti_kb_bibeltheater1.jpg';
theImages[1] = 'pti_kb_bibeltheater2.jpg';
theImages[2] = 'pti_kb_bibeltheater3.jpg';
theImages[3] = 'pti_kb_bibeltheater4.jpg';

theImages[4] = 'pti_kb_buechermedien1.jpg';
theImages[5] = 'pti_kb_buechermedien2.jpg';
theImages[6] = 'pti_kb_buechermedien3.jpg';
theImages[7] = 'pti_kb_buechermedien4.jpg';

theImages[8] = 'pti_kb_kirchenpaed1.jpg';
theImages[9] = 'pti_kb_kirchenpaed2.jpg';
theImages[10] = 'pti_kb_kirchenpaed3.jpg';

theImages[11] = 'pti_kb_konfirmanden1.jpg';

theImages[12] = 'pti_kb_mko1.jpg';
theImages[13] = 'pti_kb_mko2.jpg';
theImages[14] = 'pti_kb_mko3.jpg';
theImages[15] = 'pti_kb_mko4.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('<h1 class="subtmpl"><a href="/index.html"><img border="0" width="640" height="98" alt="PTI-Nordelbien" src="/images/pti_images/'+theImages[whichImage]+'"></a></h1>');
}