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

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

// change the names in (content-YOURBUTTONNAME) and (i == "on-YOURBUTTONNAME") for each tab
function toggleTabHeadlines(i) {
	document.getElementById("content-headlines").style.display = (i == "on-headlines") ? "block" : "none";
	document.getElementById("content-TVschedule").style.display = (i == "on-TVschedule") ? "block" : "none";
	document.getElementById("content-calendar").style.display = (i == "on-calendar") ? "block" : "none";
	document.getElementById("content-campus").style.display = (i == "on-campus") ? "block" : "none";
	document.getElementById("content-features").style.display = (i == "on-features") ? "block" : "none";


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

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

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

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

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