function showMe(display){

		if(display ==1){

			document.getElementById("div").style.zIndex=1;

			document.getElementById("tafel").style.display="inline";

			document.getElementById("rahmen").style.border="solid thin black";

			document.getElementById("rahmen").style.backgroundColor="#666666";
			counter();			

		}
		else if(display ==2){

			document.getElementById("div2").style.zIndex=1;

			document.getElementById("tafel2").style.display="inline";

			document.getElementById("rahmen2").style.border="solid thin black";

			document.getElementById("rahmen2").style.backgroundColor="#666666";
			counter();			

		}
		else{

			document.getElementById("div").style.zIndex=-1;
			document.getElementById("tafel").style.display="none";
			document.getElementById("rahmen").style.backgroundColor="#b5b5b5";
			document.getElementById("sv").style.color="#ffffff";
			
			document.getElementById("div2").style.zIndex=-1;
			document.getElementById("tafel2").style.display="none";
			document.getElementById("rahmen2").style.backgroundColor="#b5b5b5";
			document.getElementById("sv").style.color="#ffffff";

		}

}

function counter(zahl){
	run = setTimeout("showMe(0)",7000);
}