/* spezial-Navigation fuer Gemeinde Waldstatt mit jquery-Easing, copyright 2007, backslash - artists of new media */
addLoadEvent(hideSideBar);

function hideSideBar(){
	if(typeof hideIDList != 'undefinded' && hideIDList != ''){
		var e = hideIDList.split(',');
		for(var i=0;i<e.length;i++){
			var h = getE(e[i].replace('side_','title_'));
			dspDiv(e[i],'none');
			h.className = h.className.replace('arrow_down','');
			}
		}
	}

function tSBar(eID){
	var h = getE(eID.replace('side_','title_'));
	if(h.className.indexOf('arrow')!=-1){
		h.className = h.className.replace('arrow_down','');
		$("#"+eID).slideUp("fast");
		}
	else{
		$("#"+eID).slideDown('normal');
		h.className = h.className + " arrow_down";
		}
	return false;
	}