// JavaScript Document

lastShow = 0;
leftPos = new Array(0,33,124,204,291,386,480,588,697, 588);

function keepShowing(showWhat) {
	document.getElementById("hoverbar_on").style.left = leftPos[showWhat] + "px";
	document.getElementById("hoverbar_on").style.display = "block";
}

function showHide(showWhat) {
	showWhat = showWhat.substring(1,showWhat.length);
	if (lastShow == showWhat) {
		document.getElementById("hoverbar").style.display = "none";
		lastShow = 0;
	} else {
		document.getElementById("hoverbar").style.left = leftPos[showWhat] + "px";
		document.getElementById("hoverbar").style.display = "block";
		lastShow = showWhat;
	}
}