function expandComments(id) {

	navRoot = document.getElementById(id);
	
	navRoot.className = navRoot.className + ' coll';
		
}

function collapseComments(id) {

	navRoot = document.getElementById(id);

	navRoot.className = 'reply';	
	
}
