function areaToggle(elementID){
	//Gets the class the name of the element passed to the function in the event
	var currentClass = document.getElementById(elementID).className;

	//Changes the element from hidden to visible
	if(currentClass == "hide"){
		document.getElementById(elementID).className = "show";
	}
	//Changes the element from visible to hidden
	else if(currentClass == "show"){
		document.getElementById(elementID).className = "hide";
	}
	//Error checking incase something went wrong
	else{
		//document.getElementById(elementID).className = "hide";
	}
}
