/**
 * Funktion zum Verstecken kompletter sideSection-Boxen, wenn diese inhaltsfrei
 * sind.
 * 
 * @param contentId
 *            ID des obersten Elements im sideSectionType-DIV.
 */
function hideSideBoxSection(contentId) {
	try {
		var parent = document.getElementById(contentId).parentNode;
		if (parent.getAttribute("class") == "sideSectionType") {
			parent = parent.parentNode;
			if (parent.parentNode.getAttribute("class") == "sideSection") {
				parent.style.display = "none";
			}
		}
	} catch (e) {
		/* alert(e); */
	}
}
