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="../francais/citations/citation1.gif" border=0 width=500 height=50 alt="Citation 1" />';
	img[1]='<img src="../francais/citations/citation2.gif" border=0 width=500 height=50 alt="Citation 2" />';
	img[2]='<img src="../francais/citations/citation3.gif" border=0 width=500 height=50 alt="Citation 3" />';
	img[3]='<img src="../francais/citations/citation4.gif" border=0 width=500 height=50 alt="Citation 4" />';
	img[4]='<img src="../francais/citations/citation5.gif" border=0 width=500 height=50 alt="Citation 4" />';	
	img[5]='<img src="../francais/citations/citation6.gif" border=0 width=500 height=50 alt="Citation 5" />';
	img[6]='<img src="../francais/citations/citation7.gif" border=0 width=500 height=50 alt="Citation 3" />';
	<!-- attention, le nombre entre parenthese doit etre egal aux derniers entre crochet +1 exemple : ici 2+1=3 -->
	var n=rand_number(7); 
	document.write(img[n]);
}