
function ph(id, t) {
	var o = document.getElementById(id);
	o.onfocus = function() {
		if (o.value == t)
			o.value = "";
	}
	o.onblur = function() {
		if (o.value == "")
			o.value = t;
	}
}

ph("st2", "HABEN DIE KRAFT FÜR");
ph("st3", "SICHERHEIT");
ph("st4", "UND FREIHEIT");
ph("st5", "WOLFGANG SCHÄUBLE");

ph("lt2", "HABEN DIE KRAFT FÜR");
ph("lt3", "STARKE");
ph("lt4", "FAMILIEN");
ph("lt5", "URSULA VON DER LEYEN");
