function toggleTab(i) {
	document.getElementById("contentCalendar").style.display = (i == 1) ? "block" : "none";
	document.getElementById("contentStandings").style.display = (i == 2) ? "block" : "none";
	document.getElementById("tabGroup-1").className = (i == 1) ? "onCalendar" : "onStandings";
	document.getElementById("tabGroup-1").className = (i == 2) ? "onStandings" : "onCalendar";
}
