// JavaScript Document
<!--

var theImages = new Array()
theImages[0] = 'images/startseite/gross/01.jpg'
theImages[1] = 'images/startseite/gross/02.jpg'
theImages[2] = 'images/startseite/gross/03.jpg'
theImages[3] = 'images/startseite/gross/04.jpg'
theImages[4] = 'images/startseite/gross/05.jpg'
theImages[5] = 'images/startseite/gross/06.jpg'
theImages[6] = 'images/startseite/gross/07.jpg'
theImages[7] = 'images/startseite/gross/08.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 showImageg(){
document.write('<img src="'+theImages[whichImage]+'">');
}
//-->
