//Input: None
// Output: Modifies the ContentBox to the proper margin-top
//			style height for vertical centering in the HTML
//			page
/* function modifyContentBox() {
	// Setting up the variables
	var contentMod = document.getElementById("ContentBox");
	var initialHeight = contentMod.offsetHeight;
	var finalHeight;
	var finalHeightString;
	
	// Processing the variables
	if (initialHeight != null) {
		finalHeight = (initialHeight/2);
		finalHeightString = '-'+finalHeight+'px';
	} else {
		finalHeightString = "-300px";
	}
	
	// Assigning the variable
	contentMod.style.marginTop = finalHeightString;
}*/

function switchButton (option) {
	switch(option) {
		case 0: document.getElementById("HomeButton").src = "Images/Site/Buttons/Home-yellow.png";
				break;
		case 1: document.getElementById("AboutButton").src = "Images/Site/Buttons/About-yellow.png";
				break;
		case 2: document.getElementById("GalleryButton").src = "Images/Site/Buttons/Gallery-yellow.png";
				break;
		case 3: document.getElementById("ContactButton").src = "Images/Site/Buttons/Contact-yellow.png";
				break;
		case 4: document.getElementById("HomeButton").src = "Images/Site/Buttons/Home-grey.png";
				break;
		case 5: document.getElementById("AboutButton").src = "Images/Site/Buttons/About-grey.png";
				break;
		case 6: document.getElementById("GalleryButton").src = "Images/Site/Buttons/Gallery-grey.png";
				break;
		case 7: document.getElementById("ContactButton").src = "Images/Site/Buttons/Contact-grey.png";
				break;
		default: null;
	}
}