//On navigation mouseover, align bottom arrow indicator to the rightmost edge of the selected link
function showInd(lyr)
{
	var f = document.getElementById(lyr);
	f.style.display = 'inline';
}

function hideInd(lyr)
{
	var f = document.getElementById(lyr);
	f.style.display = 'none';
}
