
var theImages = new Array();
theImages[0] = '/images/dummy2.jpg';
theImages[1] = '/fix/files/motiv/kg.1121270140.e.3insl012009.jpg';
theImages[2] = '/fix/files/motiv/root.e.banner_titel.jpg';
theImages[3] = '/fix/files/motiv/bildung.e.banner_bildung.jpg';
theImages[4] = '/fix/files/motiv/dummy3.jpg';
theImages[5] = '/fix/files/banner_titel.jpg';
theImages[6] = '/fix/files/motiv/links.e.banner_titel.jpg';
theImages[7] = '/fix/files/motiv/bagra_neuhier.jpg';
theImages[8] = '/fix/files/motiv/kg.1121231110.e.jugendfoerderkreis.jpg';
theImages[9] = '/fix/files/banner_titel.jpg';
theImages[10] = '/fix/files/banner_kircheglaube.jpg';
theImages[11] = '/fix/files/motiv/dummy5.jpg';
theImages[12] = '/fix/files/motiv/root.3.e.banner_titel.jpg';
theImages[13] = '/fix/files/banner_eintritt.jpg';
theImages[14] = '/fix/files/taufbecken.jpg';
theImages[15] = '/fix/files/banner_kita.jpg';
theImages[16] = '/fix/files/motiv/kirchenlexikon.e.banner_titel.jpg';
theImages[17] = '/fix/files/motiv/musikundkultur.e.banner_musik.jpg';
theImages[18] = '/fix/files/banner_titel.jpg';
theImages[19] = '/fix/files/banner_erleben.jpg';
theImages[20] = '/fix/files/banner_rathilfe.jpg';
theImages[21] = '/fix/files/motiv/archiv.e.banner_archiv.jpg';
theImages[22] = '/fix/files/motiv/3%20in%20SL%20logo.jpg';
theImages[23] = '/fix/files/motiv/kircheabisz.e.banner_titel.jpg';
theImages[24] = '/fix/files/banner_titel.jpg';
theImages[25] = '/fix/files/banner_titel.jpg';
theImages[26] = '/fix/files/banner_titel.jpg';
theImages[27] = '/fix/files/motiv/.e.3%20in%20Schleswig%20diagonal.jpg';
theImages[28] = '/fix/files/motiv/dummy4.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 border="0" height="170" width="485" alt="Kirchenkreis Schleswig-Flensburg" src="'+theImages[whichImage]+'" />');
}