// JavaScript Document


			<!-- Begin Theatre Images
			// Set up the image files to be used.
			var theatreImages = new Array() // do not change this
			// To add more image files, continue with the
			// pattern below, adding to the array.
			
			theatreImages[0] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_01.jpg'
			theatreImages[1] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_02.jpg'
			theatreImages[2] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_03.jpg'
			theatreImages[3] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_04.jpg'
			theatreImages[4] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_05.jpg'
			theatreImages[5] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_06.jpg'
			theatreImages[6] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_07.jpg'
			theatreImages[7] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_08.jpg'
			theatreImages[8] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_09.jpg'
			theatreImages[9] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_10.jpg'
			theatreImages[10] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_11.jpg'
			theatreImages[11] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre/theatre_12.jpg'
			
			// do not edit anything below this line
			
			var j = 0
			var p = theatreImages.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = theatreImages[i]
			}
			var whichImage1 = Math.round(Math.random()*(p-1));
			function showTheatreImage(){
			document.write('<p><img src="'+theatreImages[whichImage1]+'"></p>');
			}
			//  End -->
			
			
			<!-- Begin Dance Images
			// Set up the image files to be used.
			var danceImages = new Array() // do not change this
			// To add more image files, continue with the
			// pattern below, adding to the array.
			
			danceImages[0] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_01.jpg'
			danceImages[1] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_02.jpg'
			danceImages[2] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_03.jpg'
			danceImages[3] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_04.jpg'
			danceImages[4] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_05.jpg'
			danceImages[5] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_06.jpg'
			danceImages[6] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_07.jpg'
			danceImages[7] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_08.jpg'
			danceImages[8] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_09.jpg'
			danceImages[9] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_10.jpg'
			danceImages[10] = 'http://theatreanddance.arts.usf.edu/slideshow/dance/dance_11.jpg'
			
			// do not edit anything below this line
			var j = 0
			var p = danceImages.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = danceImages[i]
			}
			var whichImage2 = Math.round(Math.random()*(p-1));
			function showDanceImage(){
			document.write('<p><img src="'+danceImages[whichImage2]+'"></p>');
			}
			
			//  End -->
			
			
			<!-- Begin Paris Dance Images
			// Set up the image files to be used.
			var parisDanceImages = new Array() // do not change this
			// To add more image files, continue with the
			// pattern below, adding to the array.
			
			parisDanceImages[0] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_01.jpg'
			parisDanceImages[1] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_02.jpg'
			parisDanceImages[2] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_03.jpg'
			parisDanceImages[3] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_04.jpg'
			parisDanceImages[4] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_05.jpg'
			parisDanceImages[5] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_06.jpg'
			parisDanceImages[6] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_07.jpg'
			parisDanceImages[7] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_08.jpg'
			parisDanceImages[8] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_09.jpg'
			parisDanceImages[9] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_10.jpg'
			parisDanceImages[10] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_11.jpg'
			parisDanceImages[11] = 'http://theatreanddance.arts.usf.edu/slideshow/dance_paris/dance_paris_12.jpg'
			
			// do not edit anything below this line
			
			var j = 0
			var p = parisDanceImages.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = parisDanceImages[i]
			}
			var whichImage3 = Math.round(Math.random()*(p-1));
			function showParisImage(){
			document.write('<p><img src="'+parisDanceImages[whichImage3]+'"></p>');
			}
			//  End -->
			
			
			<!-- Begin Theatre Brit Images
			// Set up the image files to be used.
			var britTheatreImages = new Array() // do not change this
			// To add more image files, continue with the
			// pattern below, adding to the array.
			
			britTheatreImages[0] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_01.jpg'
			britTheatreImages[1] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_02.jpg'
			britTheatreImages[2] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_03.jpg'
			britTheatreImages[3] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_04.jpg'
			britTheatreImages[4] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_05.jpg'
			britTheatreImages[5] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_06.jpg'
			britTheatreImages[6] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_07.jpg'
			britTheatreImages[7] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_08.jpg'
			britTheatreImages[8] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_09.jpg'
			britTheatreImages[9] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_10.jpg'
			britTheatreImages[10] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_11.jpg'
			britTheatreImages[11] = 'http://theatreanddance.arts.usf.edu/slideshow/theatre_brit/theatre_brit_12.jpg'
			
			// do not edit anything below this line
			var j = 0
			var p = britTheatreImages.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = britTheatreImages[i]
			}
			var whichImage4 = Math.round(Math.random()*(p-1));
			function showBritImage(){
			document.write('<p><img src="'+britTheatreImages[whichImage4]+'"></p>');
			}
			
			//  End -->
			
			







<!-- OLD SLIDESHOWS  -->

			<!-- Begin Theatre Images
			// Set up the image files to be used.
			var theatreImagesOld = new Array() // do not change this
			// To add more image files, continue with the
			// pattern below, adding to the array.
			
			theatreImagesOld[0] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image0.jpg'
			theatreImagesOld[1] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image1.jpg'
			theatreImagesOld[2] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image2.jpg'
			theatreImagesOld[3] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image3.jpg'
			theatreImagesOld[4] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image4.jpg'
			theatreImagesOld[5] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image5.jpg'
			theatreImagesOld[6] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image6.jpg'
			theatreImagesOld[7] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image7.jpg'
			theatreImagesOld[8] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image8.jpg'
			theatreImagesOld[9] = 'http://theatreanddance.arts.usf.edu/content/common/theatre_image9.jpg'
			
			// do not edit anything below this line
			
			var j = 0
			var p = theatreImagesOld.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = theatreImages[i]
			}
			var whichImageOld1 = Math.round(Math.random()*(p-1));
			function showImage1(){
			document.write('<img src="'+theatreImagesOld[whichImageOld1]+'">');
			}
			//  End -->
			
			
			<!-- Begin Dance Images
			// Set up the image files to be used.
			var danceImagesOld = new Array() // do not change this
			// To add more image files, continue with the
			// pattern below, adding to the array.
			
			danceImagesOld[0] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image0.jpg'
			danceImagesOld[1] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image1.jpg'
			danceImagesOld[2] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image2.jpg'
			danceImagesOld[3] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image3.jpg'
			danceImagesOld[4] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image4.jpg'
			danceImagesOld[5] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image5.jpg'
			danceImagesOld[6] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image6.jpg'
			danceImagesOld[7] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image7.jpg'
			danceImagesOld[8] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image8.jpg'
			danceImagesOld[9] = 'http://theatreanddance.arts.usf.edu/content/common/dance_image9.jpg'
			
			// do not edit anything below this line
			var j = 0
			var p = danceImagesOld.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = danceImagesOld[i]
			}
			var whichImageOld2 = Math.round(Math.random()*(p-1));
			function showImage2(){
			document.write('<p></p><img src="'+danceImagesOld[whichImageOld2]+'">');
			}
			
			//  End -->
			