// This script was supplied free by Hypergurl
// http://www.hypergurl.com
<!--
    // JavaScript to interpolate random images into a page.
    var ic = 14;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "http://www.huibertsbv.nl/images/headerfoto2a.jpg";
xoxo[1] = "http://www.huibertsbv.nl/images/headerfoto14.jpg";
xoxo[2] = "http://www.huibertsbv.nl/images/headerfoto15.jpg";
xoxo[3] = "http://www.huibertsbv.nl/images/headerfoto16.jpg";
xoxo[4] = "http://www.huibertsbv.nl/images/headerfoto17.jpg";
xoxo[5] = "http://www.huibertsbv.nl/images/headerfoto19.jpg";
xoxo[6] = "http://www.huibertsbv.nl/images/headerfoto21.jpg";
xoxo[7] = "http://www.huibertsbv.nl/images/headerfoto22.jpg";
xoxo[8] = "http://www.huibertsbv.nl/images/headerfoto23.jpg";
xoxo[9] = "http://www.huibertsbv.nl/images/headerfoto25.jpg";
xoxo[10] = "http://www.huibertsbv.nl/images/headerfoto26.jpg";
xoxo[11] = "http://www.huibertsbv.nl/images/headerfoto27.jpg";
xoxo[12] = "http://www.huibertsbv.nl/images/headerfoto28.jpg";
xoxo[13] = "http://www.huibertsbv.nl/images/headerfoto29.jpg";

function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
// -->
