<!-- Begin
var theImages = new Array() 

theImages[0] = '/Themes/default/images/Fotobalk/banner1.gif'
theImages[1] = '/Themes/default/images/Fotobalk/banner2.gif'
theImages[2] = '/Themes/default/images/Fotobalk/banner3.gif'
theImages[3] = '/Themes/default/images/Fotobalk/banner4.gif'
theImages[4] = '/Themes/default/images/Fotobalk/banner5.gif'
theImages[5] = '/Themes/default/images/Fotobalk/banner6.gif'
theImages[6] = '/Themes/default/images/Fotobalk/banner7.gif'
theImages[7] = '/Themes/default/images/Fotobalk/banner8.gif'
theImages[8] = '/Themes/default/images/Fotobalk/banner9.gif'
theImages[9] = '/Themes/default/images/Fotobalk/banner10.gif'

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 src="'+theImages[whichImage]+'" class="Foto" alt="Maasvallei wonen">');
}
//  End -->