// change the names in (content-YOURBUTTONNAME) and (i == "on-YOURBUTTONNAME") for each tab
function toggleTopStories(i) {
	document.getElementById("content-topstories").style.display = (i == "on-topstories") ? "block" : "none";
	document.getElementById("content-headlines").style.display = (i == "on-headlines") ? "block" : "none";
	document.getElementById("content-video").style.display = (i == "on-video") ? "block" : "none";
	document.getElementById("content-calendar").style.display = (i == "on-calendar") ? "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 toggleTabStorypage (i) {
	document.getElementById("content-relatedstories").style.display = (i == "on-relatedstories") ? "block" : "none";
	document.getElementById("content-topheadlines").style.display = (i == "on-topheadlines") ? "block" : "none";


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