<!-- script créé par le webmaster de : -->
<!-- www.creation-de-site.net -->
<!-- vous y trouverez des javascripts, des images, des tutoriaux et des ressources gratuites. --> 
<!--
function rand_number(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}
function banner()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<img src="accueil-photos/image01.jpg" border=0 width=400 height=252 >';
	img[1]='<img src="accueil-photos/image02.jpg" border=0 width=400 height=252 >';
	img[2]='<img src="accueil-photos/image03.jpg" border=0 width=400 height=252 >';
	img[3]='<img src="accueil-photos/image04.jpg" border=0 width=400 height=252 >';
	img[4]='<img src="accueil-photos/image05.jpg" border=0 width=400 height=252 >';
	img[5]='<img src="accueil-photos/image06.jpg" border=0 width=400 height=252 >';
	img[6]='<img src="accueil-photos/image07.jpg" border=0 width=400 height=252 >';
	img[7]='<img src="accueil-photos/image08.jpg" border=0 width=400 height=252 >';
	img[8]='<img src="accueil-photos/image09.jpg" border=0 width=400 height=252 >';
	<!-- attention, le nombre entre parenthese doit etre egal aux derniers entre crochet +1 exemple : ici 2+1=3 -->
	var n=rand_number(9); 
	document.write(img[n]);
}
//-->
