
function rand_number(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}

function boucle_images()
{
	var i;
	var intervalle=12000; <!-- temps en millisecondes entre deux affichages 5000 <==> 5 secondes -->
	var img = new Array();
	<!-- placer ici les images que vous souhaitez faire afficher par cette boucle -->
	<!-- nous avons placer des liens sur ces images, a vous de voir si vous les laisser ou pas... -->

	img[0]='<a href="http://www.countrysidedating.nl" target="_blank"><img src="http://www.farmdate.nl/banner/countyside-234x60.gif" border=0 width=234 height=60 alt="CountrySideDating"></a>';
        img[1]='<a href="http://www.johanweerkamp.nl" target="_blank"><img src="http://www.farmdate.nl/banner/weerkamp.gif" border=0 width=234 height=60 alt="Johan Weerkamp"></a>';
        img[2]='<a href="http://www.atlantistrouwringen.nl" target="_blank"><img src="http://www.farmdate.nl/banner/atlantis.gif" border=0 width=234 height=60 alt="Atlantis trouwringen"></a>';
        img[3]='<a href="http://www.buteriggel.com" target="_blank"><img src="http://www.farmdate.nl/banner/buteriggel.gif" border=0 width=234 height=60 alt="De Buteriggel"></a>';
        img[4]='<a href="http://ds1.nl/c/?wi=78380&ws=&si=150&li=27436" target="_blank"><img src="http://b.ds1.nl/150/27436?wi=78380&ws=" height="60" width="234" border="0" alt="Adverteren bij Daisycon" title="Adverteren bij Daisycon" /></a>';
        img[5]='<a href="http://www.landgoed-ervebekman.nl" target="_blank"><img src="http://www.farmdate.nl/banner/erve.gif" border=0 width=234 height=60 alt="Landgoed Erve Bekman"></a>';  
        img[6]='<a href="http://www.groenhorstbarneveld.nl" target="_blank"><img src="http://www.farmdate.nl/banner/groenhorst.gif" border=0 width=234 height=60 alt="Groenhorst Barneveld"></a>';   
        img[7]='<a href="http://www.mensrel.nl" target="_blank"><img src="http://www.farmdate.nl/banner/adv_mr_234x60__03.gif" border=0 width=234 height=60 alt="Mens en Relatie"></a>'; 
        img[8]='<a href="http://www.farm-world.nl" target="_blank"><img src="http://www.farmdate.nl/banner/farm-world.gif" border=0 width=234 height=60 alt="Farm-World Activiteitencentrum"></a>';  
 	img[9]='<a href="http://www.pietschipper.nl" target="_blank"><img src="http://www.farmdate.nl/banner/pietschipper.gif" border=0 width=234 height=60 alt="Piet Schipper agrariche bemiddeling"></a>';
        img[10]='<a href="http://ds1.nl/c/?wi=78380&ws=&si=150&li=27436" target="_blank"><img src="http://b.ds1.nl/150/27436?wi=78380&ws=" height="60" width="234" border="0" alt="Adverteren bij Daisycon" title="Adverteren bij Daisycon" /></a>';
        
                                                                                       
	<!-- vous pouvez tout a fait rajouter (ou supprimer) des images, attention a la syntaxe ! -->
	var nombre_total_images = 11; <!-- nombre total d'images (ici 0,1,2,3,5,6,7 ==> 7) -->
	var i=rand_number(nombre_total_images); 
	boucle.innerHTML=img[i];
	setTimeout("boucle_images()",intervalle);
}
//-->
