<!-- Begin JS Script -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

    theImages[0]='../img/header/golf.jpg';
    theImages[1]='../img/header/hoover.jpg';
    theImages[2]='../img/header/fastsailing.jpg';
    theImages[3]='../img/header/tegels.jpg';
    theImages[4]='../img/header/viamet.jpg';
    theImages[5]='../img/header/wegwijzer.jpg';
	theImages[6]='../img/header/sensaskin.jpg';
	 theImages[7]='../img/header/candy.jpg';
    theImages[8]='../img/header/viamailstudio.jpg';
    theImages[9]='../img/header/groeneit.jpg';
	theImages[10]='../img/header/topsport.jpg';
	theImages[11]='../img/header/mijnscore.jpg';
	theImages[12]='../img/header/agile.jpg';
	theImages[13]='../img/header/wmb.jpg';
	theImages[14]='../img/header/gijtenbeek.jpg';
	theImages[14]='../img/header/woonark.jpg';



// do not edit anything below this line

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="reflect rheight18">');
}

//  End -->
