var theImages = new Array() 
theImages[0] = 'snapshots-15.jpg'
theImages[1] = 'snapshots-01.jpg'
theImages[2] = 'snapshots-02.jpg'
theImages[3] = 'snapshots-03.jpg'
theImages[4] = 'snapshots-04.jpg'
theImages[5] = 'snapshots-05.jpg'
theImages[6] = 'snapshots-06.jpg'
theImages[7] = 'snapshots-07.jpg'
theImages[8] = 'snapshots-08.jpg'
theImages[9] = 'snapshots-09.jpg'
theImages[10] = 'snapshots-10.jpg'
theImages[11] = 'snapshots-11.jpg'
theImages[12] = 'snapshots-12.jpg'
theImages[13] = 'snapshots-13.jpg'
theImages[14] = 'snapshots-14.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));

document.write('<a href="../snaps/_nl/index.shtml" onMouseOver="over(14)" onMouseOut="out(14)" target="_self"><img src="../_opmaak/menu/polaroid/'+theImages[whichImage]+'" title="bekijk alle snapshots - klik hier"/></a>');



