
			var images = new Array(
			"../images/1_Front_Page/Front_Page_Pic_3.jpeg",
			"../images/1_Front_Page/102.jpg",
			"../images/1_Front_Page/Front_Page_Pic_2.jpg"
			);
			// The above are all your images in the correct order
			i = 0;
			speed = 2000; // Speed of animator, the lower the faster
			numLoops = 100; // Number of times the animator should loop
			startT = 1; // Number of seconds after which the animator will start
			numImgs = images.length;
			numLoops = numImgs * numLoops;
			b = 0;
			startT = startT * 1000;

			
			function nextGif(){
			i++;
			if (i > (numImgs - 1)){
			i = 0;
			}
			document.animator.src = images[i];
			}
			
			function animate(){
			for (a=0; a < numLoops; a++){
			b = b + speed;
			setTimeout("nextGif()",b);
			}
			}
