// JavaScript Document
couv = new Array;
ref= new Array;
timer = new Array;

couv[0]= 'http://www.fedbeton.be/images/banner_pub/wam.gif'
ref[0] = '<a href="http://www.wam.be" target=_blank>'
timer[0] = 5000

couv[1]= 'http://www.fedbeton.be/images/Banner_pub/dukas.png'
ref[1] = '<a href="http://www.dukasfinance.com" target=_blank>'
timer[1] = 2000

couv[2]= 'http://www.fedbeton.be/images/Banner_pub/KeyTech.png'
ref[2] = '<a href="http://www.KeyTech.be" target=_blank>'
timer[2] = 2000

couv[3]= 'http://www.fedbeton.be/images/Banner_pub/man.gif'
ref[3] = '<a href="http://www.manmixertour.be" target=_blank>'
timer[3] = 7000

num = 3

function ChangeImage()
	{
if (num == -1) { num = (couv.length-1)}
	if(document.getElementById)
		{
		document.getElementById("zone").innerHTML = ref[num] + '<img src="'+ couv[num] + '" border=0 width=468 alt=publicité></a> ';
		num = num-1 
}
setTimeout("ChangeImage()", ++ timer[num+1]);
	}
window.onload = ChangeImage;
