					
var theImages = new Array();
theImages[0] = 'foto01.jpg';
theImages[1] = 'foto02.jpg';
theImages[2] = 'foto03.jpg';
theImages[3] = 'foto04.jpg';
theImages[4] = 'foto05.jpg';
theImages[5] = 'foto06.jpg';
theImages[6] = 'foto07.jpg';
theImages[7] = 'foto08.jpg';

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="/images/top/'+theImages[whichImage]+'" alt="GLAS DIERENGENEESKUNDE BV - Kliniek voor Gezelschapdieren, Paarden en Landbouwhuisdieren" border="0"/>');
}

