function openAstroGlossary() {
	( document.getElementById( "astroGlossary" ).style.display == "none" ) ? document.getElementById( "astroGlossary" ).style.display = "block" : document.getElementById( "astroGlossary" ).style.display = "none";
	document.getElementById( "tarotGlossary" ).style.display = "none";
	document.getElementById( "psychicGlossary" ).style.display = "none";
}
function openTarotGlossary() {
	document.getElementById( "astroGlossary" ).style.display = "none";
	( document.getElementById( "tarotGlossary" ).style.display == "none" ) ? document.getElementById( "tarotGlossary" ).style.display = "block" : document.getElementById( "tarotGlossary" ).style.display = "none";
	document.getElementById( "psychicGlossary" ).style.display = "none";
}
function openPsychicGlossary() {
	document.getElementById( "astroGlossary" ).style.display = "none";
	document.getElementById( "tarotGlossary" ).style.display = "none";
	( document.getElementById( "psychicGlossary" ).style.display == "none" ) ? document.getElementById( "psychicGlossary" ).style.display = "block" : document.getElementById( "psychicGlossary" ).style.display = "none";
}
