function super1() {
	function get_random(){
		var ranNum= Math.round(Math.random()*2);
			return ranNum;
		}
		function getImg(){
			var whichImg = get_random();
				function StringArray (n) {
					this.length = n;
					for (var i =1; i <= n; i++) {
						this[i] = ' ';
					}
				}
				image = new StringArray(3);
					image[0] = 'images/photoarray/array1/whoisyourcoach.jpg';
					image[1] = 'images/photoarray/array1/whatismyposition.jpg';
					image[2] = 'images/photoarray/array1/whatamiherefor.jpg';

					document.write("<img src='" +image[whichImg]+ "'>");
			}
		getImg();
	}
	function super2() {
		function get_random(){
			var ranNum= Math.round(Math.random()*3);
			return ranNum;
		}
		function getImg(){
			var whichImg = get_random();
			function StringArray (n) {
				this.length = n;
				for (var i =1; i <= n; i++) {
					this[i] = ' ';
				}
			}
			image = new StringArray(4);
				image[0] = 'images/photoarray/array2/mtw_wding.jpg';
				image[1] = 'images/photoarray/array2/newlife.jpg';
				image[2] = 'images/photoarray/array2/mxposter.jpg';
				image[3] = 'images/photoarray/array2/illinoisposter.jpg';
			document.write("<img src='" +image[whichImg]+ "'>");
		}
	getImg();
	}
	function super3() {
		function get_random(){
			var ranNum= Math.round(Math.random()*1);
			return ranNum;
		}
		function getImg(){
			var whichImg = get_random();
			function StringArray (n) {
				this.length = n;
				for (var i =1; i <= n; i++) {
					this[i] = ' ';
				}
			}
			image = new StringArray(2);
				image[0] = 'images/photoarray/array3/whereareyougoing.jpg';
				image[1] = 'images/photoarray/array3/howdoicommit.jpg';

			document.write("<img src='" +image[whichImg]+ "'>");
	}
	getImg();
}

/*================================== Coach Locker Swap ==========================*/

coachClosed = new Image();
	coachClosed.src = "images/lockerdoors/3x1_coach_closed.jpg";
coachOpen = new Image();
	coachOpen.src = "images/lockerdoors/3x1_coach_open.jpg";
function coachSwap(){
	window.document.coach.src = coachOpen.src;
	}
function coachSwapBack(){
	window.document.coach.src = coachClosed.src;
	}
	
/*================================== YouAthlete Locker Swap ==========================*/

youathleteClosed = new Image();
	youathleteClosed.src = "images/lockerdoors/3x2_youathlete_closed.jpg";
youathleteOpen = new Image();
	youathleteOpen.src = "images/lockerdoors/3x2_youathlete_open.jpg";
function youathleteSwap(){
	window.document.youathlete.src = youathleteOpen.src;
	}
function youathleteSwapBack(){
	window.document.youathlete.src = youathleteClosed.src;
	}
	
/*================================== Teammate Locker Swap ==========================*/

teammateClosed = new Image();
	teammateClosed.src = "images/lockerdoors/3x3_teammate_closed.jpg";
teammateOpen = new Image();
	teammateOpen.src = "images/lockerdoors/3x3_teammate_open.jpg";
function teammateSwap(){
	window.document.teammate.src = teammateOpen.src;
	}
function teammateSwapBack(){
	window.document.teammate.src = teammateClosed.src;
	}
	
/*================================== Decision Locker Swap ==========================*/

decisionClosed = new Image();
	decisionClosed.src = "images/lockerdoors/3x4_decision_closed.jpg";
decisionOpen = new Image();
	decisionOpen.src = "images/lockerdoors/3x4_decision_open.jpg";
function decisionSwap(){
	window.document.decision.src = decisionOpen.src;
	}
function decisionSwapBack(){
	window.document.decision.src = decisionClosed.src;
	}
	
/*================================== Position Locker Swap ==========================*/

positionClosed = new Image();
	positionClosed.src = "images/lockerdoors/3x5_position_closed.jpg";
positionOpen = new Image();
	 positionOpen.src= "images/lockerdoors/3x5_position_open.jpg";
function positionSwap(){
	window.document.position.src = positionOpen.src;
	}
function positionSwapBack(){
	window.document.position.src = positionClosed.src;
	}

/*================================== Workout Locker Swap ==========================*/

workoutClosed = new Image();
	workoutClosed.src = "images/lockerdoors/3x6_workout_closed.jpg";
workoutOpen = new Image();
	workoutOpen.src = "images/lockerdoors/3x6_workout_open.jpg";
function workoutSwap(){
	window.document.workout.src = workoutOpen.src;
	}
function workoutSwapBack(){
	window.document.workout.src = workoutClosed.src;
	}
/*
var audioOn = false;
function audioDo(doWhat,toWhat){
   if(audioOn){
      var A = eval('document.'+toWhat);
      if (A != null){
         if (doWhat=='stop') A.stop();
         else{
            if (navigator.appName == 'Netscape') A.play();
            else{
               if (document.M == null){
                  document.M = false; var m;
                  for(m in A) if (m == "ActiveMovie"){
                     document.M = true; break;
                     }
                  }
               if (document.M) A.SelectionStart = 0;
               if (document.M) A.play();
            }
         }
      }
   }
}*/