
var theImages = new Array();
//theImages[0] = '/banner/bg1.jpg';
theImages[0] = '/banner/bg1-neu.jpg';
theImages[1] = '/banner/bg2-alt-Dietrich.jpg';
theImages[2] = '/banner/bg5-2010alt.jpg';
theImages[3] = '/banner/bg3-2010alt.jpg';
theImages[4] = '/banner/bg4-2010alt.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('<a href="/index.html"><img border="0" height="129" width="900" alt="www.kirche-hamburg.de" title="www.kirche-hamburg.de" src="'+theImages[whichImage]+'" /></a>');
}
