function ImageChanger (startingIndex) {
	var imageArray = new Array("football", "wsoccer", "xc", "volleyball", "mbasketball", "mgolf", "cheer", "javelin");  //This needs to be updated with image names during each sport season to reflect current sports
	if (startingIndex >=imageArray.length) {
		startingIndex = 0; //Cycle back to the first image in the array after the last image
	}
	document.getElementById('homepage-image').src= "images/" + imageArray[startingIndex] + ".png";
	t = setTimeout("ImageChanger("+(startingIndex+1)+")", 3800);
}
