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


// this stays the same
	document.getElementById("tab-TopStories-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-calendar").style.display = (i == "on-calendar") ? "block" : "none";
	document.getElementById("content-gameday").style.display = (i == "on-gameday") ? "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 toggleTabSportHeadlines(i) {
	document.getElementById("content-sportHeadlines").style.display = (i == "on-sportHeadlines") ? "block" : "none";
	document.getElementById("content-sportStats").style.display = (i == "on-sportStats") ? "block" : "none";
	document.getElementById("content-sportCalendar").style.display = (i == "on-sportCalendar") ? "block" : "none";

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

// change the names in (content-YOURBUTTONNAME) and (i == "on-YOURBUTTONNAME") for each tab
function toggleTabAnfHeadlines(i) {
	document.getElementById("content-sportHeadlines").style.display = (i == "on-sportHeadlines") ? "block" : "none";
	document.getElementById("content-sportStats").style.display = (i == "on-sportStats") ? "block" : "none";
	document.getElementById("content-sportCalendar").style.display = (i == "on-sportCalendar") ? "block" : "none";
	
	
// this stays the same
	document.getElementById("tab-anfHeadlines-wrap").className = i;
}
