var aktuell = 1;
function wechseln(nummer) {
		if(aktuell == 1) {
					document.images[nummer].src = "gfx/"+nummer+"over.png";
					aktuell = 2;
		}
				else {
					document.images[nummer].src = "gfx/"+nummer+"out.png";
					aktuell = 1; 
				}
}