function snipNews(o) {
	navRoot = document.getElementById(o);
	if (navRoot!=null) {
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (i<2 || i>11) node.style.display = "none";
		}
	}
}
