function hctoggle(num)
{
	hcResetAll()
	document.getElementById('h'+num+'t').style.backgroundColor = "#CAD6CF"
	document.getElementById('h'+num+'t_div').style.display = ""
}
function hcResetAll()
{
	numitems = 3
	for(i=1; i<=numitems; i++)
	{
		document.getElementById('h'+i+'t').style.backgroundColor = "#92AA9C"
		document.getElementById('h'+i+'t_div').style.display = "none"
	}
}