function move_in(name,aktiv) {
	if(isDOM){
		if(aktiv){
			document.getElementById(aktiv).style.backgroundColor = '#C88DA7';
			document.getElementById(aktiv+'2').style.color = "white";
		}
		document.getElementById(name).style.backgroundColor = "#B60051";
		document.getElementById(name+'2').style.color = "white";
	}else if (isDomIE){
		if(aktiv){
			document.all[aktiv].style.backgroundColor = '#C88DA7';
			document.all[aktiv+'2'].style.color = "white";
		}
		document.all[name].style.backgroundColor = "#B60051";
		document.all[name+'2'].style.color = "white";
	}else if (isDomNN){
		if(aktiv){
			document.layers[aktiv].backgroundColor = '#C88DA7';
			document.layers[aktiv+'2'].color = "white";
		}
		document.layers[name].backgroundColor = "#B60051";
		document.layers[name+'2'].color = "white";
	}
}
function move_out(name,aktiv) {
	if(isDOM){
		if(aktiv){
			document.getElementById(aktiv).style.backgroundColor = "#B60051";
			document.getElementById(aktiv+'2').style.color = "white";
		}
		document.getElementById(name+'2').style.color = "";
		document.getElementById(name).style.backgroundColor = "";
	}else if (isDomIE){
		if(aktiv){
			document.all[aktiv].style.backgroundColor = "#B60051";
			document.all[aktiv+'2'].style.color = "white";
		}
		document.all[name+'2'].style.color = "";
		document.all[name].style.backgroundColor = "";
	}else if (isDomNN){
		if(aktiv){
			document.layers[aktiv].backgroundColor = "#B60051";
			document.layers[aktiv+'2'].color = "white";
		}
		document.layers[name+'2'].color = "";
		document.layers[name].backgroundColor = "";
	}
}
