		// Nombre d'images
		var NbImages = 7;
		
		// Table contenant les images
		ListeImages = new Array(NbImages);
		
		ListeImages[0] = "../Images/Homepics/homepic_1.jpg";
		ListeImages[1] = "../Images/Homepics/homepic_2.jpg";
		ListeImages[2] = "../Images/Homepics/homepic_3.jpg";
		ListeImages[3] = "../Images/Homepics/homepic_4.jpg";
		ListeImages[4] = "../Images/Homepics/homepic_5.jpg";
		ListeImages[5] = "../Images/Homepics/homepic_6.jpg";
		ListeImages[6] = "../Images/Homepics/homepic_7.jpg";
		ListeImages[7] = "../Images/Homepics/homepic_8.jpg";
		ListeImages[8] = "../Images/Homepics/homepic_9.jpg";
		
		function Aleatoire(mini,maxi) {
			var x = -1;
			while (x < mini) {
				x = Math.round(Math.random() * maxi);
			}
			return x;
		}
		function PutImage() {
			i = Aleatoire(0,NbImages-1);
			document.write("<img id=\"large\" src="+ListeImages[i]+">");
		}
		//-->



