function foldSide(id,idB){
	reSet = document.getElementById(id);
	reSetB = document.getElementById(idB);
	getSetting = document.getElementById(id).className;

	if(getSetting=="kaderBottomDown"){
		reSet.setAttribute("className","kaderBottomUp"); reSetB.setAttribute("className","kaderExpand");
		reSet.setAttribute("class","kaderBottomUp"); reSetB.setAttribute("class","kaderExpand");
	}
	if(getSetting=="kaderBottomUp"){
		reSet.setAttribute("className","kaderBottomDown"); reSetB.setAttribute("className","kaderExpandClosed");
		reSet.setAttribute("class","kaderBottomDown"); reSetB.setAttribute("class","kaderExpandClosed");
	}
}

