// JavaScript Document
couv = new Array;
ref= new Array;
timer = new Array;

couv[0]= 'http://www.fedis.be/images/publicité/memberbenefits09_banner_fr.gif'
ref[0] = '<a href="http://www.fedis.be/banner_compte.asp?id_sponsor=44" target=_blank>'
timer[0] = 7000

couv[1]= 'http://www.fedis.be/images/publicité/Eshopexpo_FR.jpg'
ref[1] = '<a href="http://www.fedis.be/banner_compte.asp?id_sponsor=52" target=_blank>'
timer[1] = 7000

num = 1

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;