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

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

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

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

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

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