//Designed by Ray Rarey (rayr@accessus.net)//
//Visit http://users.accessus.net/~rayr/javascript/ for more scripts//
//Copyright (c) NuGen Web Productions//

image = new Array(8);
link = new Array(8);
image[0] = 'http://www.kfchamont99.be/images/hegge_125.jpg'
image[1] = 'http://www.kfchamont99.be/images/schoemaco.jpg'
image[2] = 'http://www.kfchamont99.be/images/vanhorne.jpg'
image[3] = 'http://www.kfchamont99.be/images/schoemans.jpg'
image[4] = 'http://www.kfchamont99.be/images/vanheugten_s.jpg'
image[5] = 'http://www.kfchamont99.be/images/portas-rooyakkers.jpg'
image[6] = 'http://www.kfchamont99.be/images/van-zon-125.jpg'
image[7] = 'http://www.kfchamont99.be/images/aannemers_van_hout.jpg'

link[0] = 'http://www.hegge.be/'
link[1] = 'http://www.hamontachel.be'
link[2] = 'http://www.kampeercentrumbudel.nl'
link[3] = 'http://www.hamontachel.be/'
link[4] = 'http://www.hamontachel.be/'
link[5] = 'http://www.rooyakkers.portas.be/'
link[6] = 'http://www.vanzon.be' 
link[7] = 'http://www.hamontachel.be'


var index = Math.floor(Math.random() * image.length);
// document.write("<DL>");
for (var index1 = index; index1 < index + 8; index1++)
{
document.write("<A HREF="+link[index1%8]+" target=_blank>");
document.write("<IMG SRC="+image[index1%8]+" border=0 width=125 alt=hoofdsponsor><\/A><br>");
}
// document.write("<\/DL>");

