
		<!--
		var gamedayimages=new Array()
		var practiceimages=new Array()
		var funimages=new Array()
		var step = 0 // Math.floor(Math.random()*11)
		var timerID
		var imghtml='<img src="" name="gamesshow" width="320" height="240" />';
		for (var x=0;x<=33; x++) 
		{
			gamedayimages[x]=new Image()
			gamedayimages[x].src="slides/gameday" + x + ".jpg"
		}
		for (var x=0;x<=9; x++) 
		{
			practiceimages[x]=new Image()
			practiceimages[x].src="slides/practice" + x + ".jpg"
		}
		for (var x=0;x<=11; x++) 
		{
			funimages[x]=new Image()
			funimages[x].src="slides/fun" + x + ".jpg"
		}	
		function gamedayslidechange(){
			//if browser does not support the image object, exit.
			//if (!document.images)
			//return
			clearTimeout(timerID)
			document.images.gamesshow.src=gamedayimages[step].src
			//alert (document.anchors.length)
			if (step<(gamedayimages.length -1))
				step++
			else
				step=0
			//call function "slideit()" every 2.5 seconds
			timerID=setTimeout("gamedayslidechange()",1500)
		}
		function funslidechange(){
			//if browser does not support the image object, exit.
			//if (!document.images)
			//return
			clearTimeout(timerID)
			document.images.gamesshow.src=funimages[step].src
			//alert (document.anchors.length)
			if (step<(funimages.length -1))
				step++
			else
				step=0
			//call function "slideit()" every 2.5 seconds
			timerID=setTimeout("funslidechange()",1500)
		}	
		function practiceslidechange(){
			//if browser does not support the image object, exit.
			//if (!document.images)
			//return
			clearTimeout(timerID)
			document.images.gamesshow.src=practiceimages[step].src
			//alert (document.anchors.length)
			if (step<(practiceimages.length -1))
				step++
			else
				step=0
			//call function "slideit()" every 2.5 seconds
			timerID=setTimeout("practiceslidechange()",1500)
		}	
		function gamedayslideshow() {
			document.getElementById("playbuttonanchor").href="javascript:gamedayslidechange()";
			slideshowvisibility();
			step=0;
			gamedayslidechange();
		}			
		function practiceslideshow() {
			document.getElementById("playbuttonanchor").href="javascript:practiceslidechange()";
			slideshowvisibility();
			step=0;
			practiceslidechange();
		}	
		function funslideshow() {
			document.getElementById("playbuttonanchor").href="javascript:funslidechange()";
			slideshowvisibility();
			step=0;
			funslidechange();
		}	
		function slideshowvisibility() {
			document.getElementById("player").innerHTML=imghtml;
			document.images.gamesshow.style.visibility='visible';
			document.images.gobutton.style.visibility='visible';
			document.images.pausebutton.style.visibility='visible';			
		}
		function pausesshow() {
			clearTimeout(timerID)
		}
		//-->
