// change the names in (content-YOURBUTTONNAME) and (i == "on-YOURBUTTONNAME") for each tab
function toggleTabonDemandSports(i) {
	document.getElementById("content-onDemandSports").style.display = (i == "on-onDemandSports") ? "block" : "none";
	document.getElementById("content-photos").style.display = (i == "on-photos") ? "block" : "none";


// this stays the same
	document.getElementById("tab-onDemand-wrap").className = i;
}


