// functions

var aboutActive = 'beliefs';
function show_about(id) {
	document.getElementById(aboutActive).style.display = 'none';
	document.getElementById(id).style.display = 'inline';
	aboutActive = id;
}

var sportsActive = 'main';
function show_sports(id) {
	document.getElementById(sportsActive).style.display = 'none';
	document.getElementById(id).style.display = 'inline';
	window.location.hash = id;
	sportsActive = id;
}

var academicsActive = 'guidance';
function show_academics(id) {
	document.getElementById(academicsActive).style.display = 'none';
	document.getElementById(id).style.display = 'inline';
	academicsActive = id;
}

var studentsActive = 'hours';
function show_studentLife(id) {
	document.getElementById(studentsActive).style.display = 'none';
	document.getElementById(id).style.display = 'inline';
	studentsActive = id;
}

var menuState = new Array();
menuState['one'] = 0;
menuState['two'] = 0;
menuState['three'] = 0;
menuState['four'] = 0;
menuState['five'] = 0;
function expandMenu(id) {
	if (menuState[id] == 0) {
		document.getElementById(id).style.display = 'block'
		menuState[id] = 1;
	}
	else {
		document.getElementById(id).style.display = 'none'
		menuState[id] = 0;
	}
}

var articleState = new Array();
articleState['wall'] = 0;

function expandArticle(id) {
	if (articleState[id] == 0) {
		document.getElementById(id).style.display = 'block'
		articleState[id] = 1;
	}
	else {
		document.getElementById(id).style.display = 'none'
		articleState[id] = 0;
	}
}

var photoState = new Array();
photoState['playground'] = 0;

function showPhoto(id) {
	if (photoState[id] == 0) {
		document.getElementById(id).style.display = 'block'
		photoState[id] = 1;
	}
	else {
		document.getElementById(id).style.display = 'none'
		photoState[id] = 0;
	}
} 