function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
/* These are the arrays which hold the images. Because of the way the script is currently working the second image in the array is the one which is visible first, sort of. I don't think this has much effect on the visual impact though*/
	
	aadImages = new Array('/images/bsc/defender.jpg','/images/bsc/wheatley.jpg','/images/bsc/prayer.jpg','/images/bsc/kwanzaa.jpg','/images/bsc/buffalo.jpg')
	aadAlt = new Array("Chicago Defender","Phillis Wheatley","Woman praying","Kwanzaa","Buffalo Soldiers")
	
	badImages = new Array('/images/bsc/mlkday.jpg','/images/bsc/hurt.jpg','/images/bsc/rice.jpg','/images/bsc/johnson.jpg','/images/bsc/morrison.jpg')
	badAlt = new Array("Martin Luther King day","Mississippi John Hurt","Condoleezza Rice","Jack Johnson","Toni Morrison")
		
	cadImages = new Array('/images/bsc/apollo1.jpg','/images/bsc/funeral1.jpg','/images/bsc/farrakhan1.jpg','/images/bsc/panthers1.jpg','/images/bsc/maasai1.jpg')
	cadAlt = new Array("The Apollo Theater","New Orleans Funeral","Louis Farrakhan","Black Panthers","Maasai women")
		
	thisAd = 0
	imgCt = aadImages.length

/* There is a rotate function set for each of the arrays. The only code that'll need tweaking here will be the last line of the function in each case: setTimeout("rotate1()", 1 * 1000) to break this down "rotate1()" is the name of the function, 1 * 1000 is setting the time on the rotation to 1 * 1000 millisceonds = 1 second. Only the 1 needs to be changed depending on how fast you want the rotation to be.*/

	function rotate1() {
		if (document.images) {
			if (document.ro1.complete) {
					thisAd++
				if (thisAd == imgCt) {
					thisAd = 0
				
				}
				document.ro1.src=aadImages[thisAd]
				document.ro1.alt=aadAlt[thisAd]
			}
		  	setTimeout("rotate1()", 12 * 1000)
		}
	}
	
	
	function rotate2() {
		if (document.images) {
			if (document.ro2.complete) {
						thisAd++
				if (thisAd == imgCt) {
						thisAd = 0

				}
				document.ro2.src=badImages[thisAd]
				document.ro2.alt=badAlt[thisAd]
			}
			  setTimeout("rotate2()", 27 * 1000)
		}
	}

		function rotate3() {
			if (document.images) {
				if (document.ro3.complete) {
						thisAd++
					if (thisAd == imgCt) {
						thisAd = 0

					}
					document.ro3.src=cadImages[thisAd]
					document.ro3.alt=cadAlt[thisAd]
				}
			  	setTimeout("rotate3()", 17 * 1000)
			}
		}

