// JavaScript Document
var lastShown = null;
var timeOut = null;

function toggleBreadCrumbs(name) // calling toggleBreadCrumbs with an invalid argument just turns off the last shown crumb
{
	clearTimeout(timeOut);
	if (lastShown != null) lastShown.style.display = 'none';
	lastShown = document.getElementById(name + "Links");
	if (lastShown != null)
	{
		lastShown.style.display = '';
	}
}
function stopTimeout()
{
	clearTimeout(timeOut);
}
function startTimeout()
{
	timeOut = setTimeout("toggleBreadCrumbs(0)", 2000);
}
