﻿function ntoggle(num)
{
	//alert("blank")
	nResetAll()
	
	if (num == '')
	{
	
	}
	document.getElementById('n'+num+'t').style.backgroundColor = "#666666"
	document.getElementById('h'+num+'t').style.color =  "#ffffff"
	//document.getElementById('h'+num+'t').style.textDecoration =  "none"
	document.getElementById('n'+num+'t_div').style.display = "block"
}
function nResetAll()
{
	numitems = 5
	for(i=1; i<=numitems; i++)
	{
		document.getElementById('n'+i+'t').style.backgroundColor =  "#4D524E"
		document.getElementById('h'+i+'t').style.color =  "#d3d3d3"
		//document.getElementById('h'+i+'t').style.textDecoration =  "none"
		document.getElementById('n'+i+'t_div').style.display = "none"
	}
}


