function go(section)
{
	document.location = section;
}
function sideIn(e)
{
	//console.log(e.firstChild.nextSibling.firstChild);
	if(e.firstChild.nextSibling)
		e.firstChild.nextSibling.firstChild.className = "navlinkhover";
	else
		e.firstChild.firstChild.className="navlinkhover";
		
	e.style.backgroundColor ="#313754";
}
function sideOut(e)
{
	if(e.firstChild.nextSibling)
		e.firstChild.nextSibling.firstChild.className = "navlink";
	else
		e.firstChild.firstChild.className="navlink";
	
	e.style.backgroundColor = "";
}
