
			var i = -1;
			var imgs = new Array ( );
			imgs[0]  = new Image();
			imgs[1]  = new Image();
			imgs[2]  = new Image();
			imgs[3]  = new Image();
			imgs[4]  = new Image();
			imgs[5]  = new Image();
			imgs[6]  = new Image();
			imgs[7]  = new Image();
			imgs[8]  = new Image();
			imgs[9]  = new Image();
			imgs[10] = new Image();
			imgs[11] = new Image();

			imgs[0].src  = 'Images/AMansDream.png';
			imgs[1].src  = 'Images/JesusAndTheCross.png';
			imgs[2].src  = 'Images/playGames.png';
			imgs[3].src  = 'Images/AWomansRage.png';
			imgs[4].src  = 'Images/TrinityGospelChoir.png';
			imgs[5].src  = 'Images/EthnicWomanTurned.png';
			imgs[6].src  = 'Images/MaleGenius.png';
			imgs[7].src  = 'Images/FacetsOfMe.png';
			imgs[8].src  = 'Images/PregnantChurchMother.png';
			imgs[9].src  = 'Images/WomanPassingTime.png';
			imgs[10].src = 'Images/PreacherSermon.png';
			imgs[11].src = 'Images/mindful.png';

			function HandleCommand (  ) { //Begin Function HandleCommand()

				HandleImages (  );
				if ( i == 11 ) i = -1;
				window.setTimeout ( 'HandleCommand (  )', 5000);

			} //End Function HandleCommand()

			function HandleImages ( ) { //Begin Function HandleImages()

				if ( i <= 11 ) { //Begin Haven't Reached the End of Image List ? -- Scroll List

					HandleFades ( document.getElementById('img00'), 'img00', imgs[i+1].src );
					++i;

				} //End Haven't Reached the End of Image List ? -- Scroll List
 
			} //End Function HandleImages()	

			function HandleFades ( img, imgID, imgSrc ) { //Begin Function HandleFades()

				img.src = imgSrc;
  				SetOpacity ( img, 0);
  				FadeIn ( imgID, 0);

			} //End Function HandleFades()

			function SetOpacity ( img, fltr ) { //Begin Function SetOpacity()

  				fltr = ( fltr == 100 ) ? 99.999 : fltr;
  				img.style.filter = "alpha ( opacity: " + fltr + ")";

			} //End Function SetOpacity()

			function FadeIn ( imgID, fltr ) { //Begin Function FadeIn()
  
				if ( document.getElementById ) { //Begin Element Exists ? -- Filter Image

    					img = document.getElementById ( imgID );
    					if ( fltr <= 100) { //Begin Filter <= 100% ? -- Apply Filter to Image

      						SetOpacity ( img, fltr );
      						fltr += 3;
      						window.setTimeout ( "FadeIn ( '" + imgID + "', " + fltr + ")", 100);

    					} //End Filter <= 100% ? -- Apply Filter to Image
  				} //End Element Exists ? -- Filter Image
			} //End Function FadeIn()
		
			window.onload = function() { HandleCommand ( ); }
