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

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

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

// this stays the same
	document.getElementById("tab-store").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-promos").style.display = (i == "on-promos") ? "block" : "none";

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

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

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