/*
 ** SwitchStatus
 ** :: Funktion um DIV-Elemente sichtbar/unsichtbar zu machen
 */



function switchStatus(obj) {
	var el = document.getElementById(obj);
	var h4 = document.getElementById("h4_" + obj);
	if (el.style.display != 'none') {
		h4.style.background = 'url("/fileadmin/template/main/images/bg-h4-marginalspalte_closed.gif") repeat-y scroll right 1.2em transparent';
		$("#"+obj).slideUp('slow');
	
	} else {
		h4.style.background = 'url("/fileadmin/template/main/images/bg-h4-marginalspalte_open.gif") repeat-y scroll right 1.2em transparent';
		$("#" +obj).slideDown('slow');

	}
}

function setBox() {

	document.getElementById("submenue4").style.display = 'none';

}

function setBox2() {

	// document.getElementById("submenue3").style.display = 'none';
	/*
	 * document.getElementById("submenue3").style.display = 'none';
	 * document.getElementById("submenue5").style.display = 'none';
	 */

}
