/*
function randein(){
	if(document.getElementById("inhalt").style.marginLeft == "12.5em"){
		document.getElementById("inhalt").style.marginLeft = "3em";
		document.getElementById("rund").style.backgroundColor = "white";
	}else{
		document.getElementById("inhalt").style.marginLeft = "12.5em";
		document.getElementById("rund").style.backgroundColor = "#f0f0ff";
	}
}
*/


function randein(){
	if(document.getElementById("inhalt").style.marginLeft == "12.5em"){
		document.getElementById("inhalt").style.marginLeft = "3em";
		document.getElementById("test").firstChild.nodeValue = "Rand ein!";
		if (document.getElementById("rund1").className == "grafik"){
			document.getElementById("rund2").style.backgroundColor = "transparent";
		}
		if (document.getElementById("rund1").className == "grafik"){
			document.getElementById("rund2").style.backgroundColor = "transparent";
		}
	}else{
		document.getElementById("inhalt").style.marginLeft = "12.5em";
		document.getElementById("test").firstChild.nodeValue = "Rand aus!";
		if (document.getElementById("rund1").className == "grafik"){
			document.getElementById("rund2").style.backgroundColor = "#f0f0ff";
		}
		if (document.getElementById("rund1").className == "grafik"){
			document.getElementById("rund2").style.backgroundColor = "#f0f0ff";
		}
	}
}

