function cnnstartList () {
	if (document.getElementById && document.getElementById("cnnSBNav")) {
		navRoot = document.getElementById("cnnSBNav").getElementsByTagName("LI");
		for (i=0; i<navRoot.length; i++) {
			node = navRoot[i];
			if (node.className == "cnnSB") {
				node.onmouseover=function() {
					this.className = 'cnnSBOver';
				}
				node.onmouseout=function() {
					this.className = 'cnnSB';
				}
			}
		}
	}
}