<!-- 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="../images/gear2.gif" border="0" width="80" height="80">';
	img[1]='<img src="../images/gear3.gif" border="0" width="126" height="98">';
	img[2]='<img src="../images/gear4.gif" border="0" width="144" height="144">';
	img[3]='<img src="../images/gear5.gif" border="0" width="94" height="68">';
	img[4]='<img src="../images/gear6.gif" border="0" width="139" height="89">';
	img[5]='<img src="../images/gear8.gif" border="0" width="100" height="85">';
	<!--attention, le nombre entre parenthese doit etre egal aux derniers entre crochet +1 exemple : ici 2+1=3 -->
	var n=rand_number(6); 
	document.write(img[n]);
}
//-->
