<!-- This script and many more are available free online at -->
		<!-- The JavaScript Source!! http://javascript.internet.com -->
		<!-- Original:  jsCode.com -->
		<!-- Web Site:  http://jscode.com -->
		<!--
		// ==============================================
		// Copyright 2003 by jsCode.com
		// Source: jsCode.com
		// Author: etLux
		// Free for all; but please leave in the header.
		// ==============================================
		
		// Set up the image files to be used.
		var theImages2 = new Array() // do not change this
		// To add more image files, continue with the
		// pattern below, adding to the array. Rememeber
		// to increment the theImages[x] index!
		
		theImages2[0] = '/images/academy-hero/dancer-1.jpg'
		theImages2[1] = '/images/academy-hero/dancer-2.jpg'
		theImages2[2] = '/images/academy-hero/dancer-3.jpg'
		theImages2[3] = '/images/academy-hero/dancer-4.jpg'
		
		// ======================================
		// do not change anything below this line
		// ======================================
		
		var j2 = 0
		var p2 = theImages2.length;
		
		var whichImage2 = Math.round(Math.random()*(p2-1));
		function showImage2(){
		document.write('<div id="title-image" style="background: transparent url('+theImages2[whichImage2]+') scroll no-repeat left bottom;"></div>');
		}
		
		//to impliment the above code add this to your page
			//showImage();	
			//wrapped in the javascript tag
		-->
