﻿function hideAll() {
	document.getElementById("home").style.display = "none";
	document.getElementById("event").style.display = "none";
	document.getElementById("officers").style.display = "none";
	document.getElementById("history").style.display = "none";
	document.getElementById("links").style.display = "none";
	document.getElementById("articles").style.display = "none";
}

function reveal(div) {
	document.getElementById(div).style.display = "block";
}
function showHome() {
	hideAll();
	reveal("home");
}

function showEvents() {
	hideAll();
	reveal("event");
}

function showOfficers() {
	hideAll();
	reveal("officers");
}

function showHistory() {
	hideAll();
	reveal("history");
}

function showLinks() {
	hideAll();
	reveal("links");
}

function showArticles() {
	hideAll();
	reveal("articles");
}
