var timer = 0;

function mousedOver()
{
	clearTimeout(timer);
	
	displayAll();
}

function mousedOut()
{
	clearTimeout(timer);
	
	timer = setTimeout("timerTicked()", 600);
}

function displayAll()
{
	document.getElementById("secondaryUl").style.display = "block";
}

function timerTicked()
{
	clearTimeout(timer);
	
	document.getElementById("secondaryUl").style.display = "none";
}

