// header.js

function hideHeaderHover() {
	document.getElementById("headerHover").innerHTML = "";
}

function showHeaderHover(id) {
	var displayText = "";
	switch(id) {
		case "home" : displayText = "beatvibe.com"; break;
		case "novel" : displayText = "Excerpts from the novel, Theatre of Operations: Vestibri&uuml;m University Hospital"; break;
		case "tracts" : displayText = "Tracts in the Snow (...a montage of ambient prose)"; break;
		case "verse" : displayText = "All-night poetry lounge, featuring Autumal Wounds"; break;
		case "haiku" : displayText = "Comtemplative verse from the 575 Foundation"; break;
		case "contact" : displayText = "Worldwide communications via the power of the internet"; break;
	}
	document.getElementById("headerHover").innerHTML = displayText;
}
