function csc_navigation(structureID, contentID) {
/*	if (content = document.getElementById('navigationPage' + structureID)) {
		content.style.backgroundColor = "#FF0000";
	}
*/	var hit = false;
	for (section in csc_structure) {
		if (structureID == section) {
			hit = true;
		}
	}
	if (hit) {
		for (section in csc_structure) {
			if (content = document.getElementById('navigationSection' + contentID + '_' + section)) {
				if (structureID == section) {
					content.style.display = "inline";
				} else {
					content.style.display = "none";
				}
			}
//			alert(structureID + ' : ' + section + ' = ' + hit);
		}
//		window.setTimeout("csc_navigation(" + csc_structureID + ")", 600);
	}
//	alert(csc_structureID);
}

var csc_structure = new Array();