// affichage alatoire des image en boucle

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

function boucle_images()
{
	var i;
	var intervalle=3000;
	var img = new Array();
	img[0]='<a href="http://www.iaka.net/formation.html"><img src="http://www.iaka.net/img_iaka/a_perso1_0.gif" border=0 width=200 height=200 alt="iaka faire comme a !"></a>';
	img[1]='<a href="http://www.iaka.net/assistance.html"><img src="http://www.iaka.net/img_iaka/a_perso1_1.gif" border=0 width=200 height=200 alt="Avec IAKA fini les virus !"></a>';
	img[2]='<a href="http://www.iaka.net/assistance.html"><img src="http://www.iaka.net/img_iaka/a_perso1_2.gif" border=0 width=200 height=200 alt="Sereines avant les exams... yĠa IAKA !"></a>';
	img[3]='<a href="http://www.iaka.net/developpement.html"><img src="http://www.iaka.net/img_iaka/a_perso1_3.gif" border=0 width=200 height=200 alt="IAKA, le YODA de lĠinformatique !"></a>';
	img[4]='<a href="http://www.iaka.net/materiels.html"><img src="http://www.iaka.net/img_iaka/a_perso1_4.gif" border=0 width=200 height=200 alt="Une configuration adapte  nos besoins,merci IAKA !"></a>';
	img[5]='<a href="http://www.iaka.net/assistance.html"><img src="http://www.iaka.net/img_iaka/a_perso1_5.gif" border=0 width=200 height=200 alt="Mon rseau fiable et protg, IAKA cĠest lĠefficacit !"></a>';
	img[6]='<a href="http://www.iaka.net/materiels.html"><img src="http://www.iaka.net/img_iaka/a_perso1_6.gif" border=0 width=200 height=200 alt="Un max de puissance pour nos jeux, viva IAKA !"></a>';
	img[7]='<a href="http://www.iaka.net/internet.html"><img src="http://www.iaka.net/img_iaka/a_perso1_7.gif" border=0 width=200 height=200 alt="Internet facile avec IAKA !"></a>';
	img[8]='<a href="http://www.iaka.net/formation.html"><img src="http://www.iaka.net/img_iaka/a_perso1_8.gif" border=0 width=200 height=200 alt="8 h de formation IAKA, et je suis le roi du web !"></a>';
	img[9]='<a href="http://www.iaka.net/internet.html"><img src="http://www.iaka.net/img_iaka/a_perso1_9.gif" border=0 width=200 height=200 alt="Internet in the pocket avec IAKA !"></a>';
	var nombre_total_images = 10;
	var i=rand_number(nombre_total_images); 
	info.innerHTML=img[i];
	setTimeout("boucle_images()",intervalle);
}