// 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-events").style.display = (i == "on-events") ? "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 toggleTabAuctions(i) {
	document.getElementById("content-auctions").style.display = (i == "on-auctions") ? "block" : "none";
	document.getElementById("content-tickets").style.display = (i == "on-tickets") ? "block" : "none";


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

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


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




