function showWomenStandings() {
	document.getElementById("standings1").style.display = "none";
	document.getElementById("standings2").style.display = "block";
	document.getElementById("standings-image1").src = "images/buttons/mens-division.png";
	document.getElementById("standings-image2").src = "images/buttons/womens-division-over.png";	
}

function showMenStandings() {
	document.getElementById("standings1").style.display = "block";
	document.getElementById("standings2").style.display = "none";
	document.getElementById("standings-image1").src = "images/buttons/mens-division-over.png";
	document.getElementById("standings-image2").src = "images/buttons/womens-division.png";
}
