
function hilite(div)
{
	div.style.cursor='pointer'; 
	div.style.backgroundColor='#414C1D';
}

function unhilite(div)
{
	div.style.cursor='normal'; 
	div.style.backgroundColor='#893214';
}

function showExhibit(id)
{
		var aInfo = getElementsByClassName("exhibition-description", "DIV");
	
		for (var i = 0; i < aInfo.length; i++)
		{
			aInfo[i].style.display= (aInfo[i].id == "event-info-"+id ? "block" : "none");
		}
}

