function titlePopup() {
	var spanList = document.getElementsByTagName("span");
	var i = 0;
	for (i; i<spanList.length; i++) {
		var span = spanList[i];
		if (span.className == "erstanwendung") {
			span.setAttribute("title", "Wichtiger Bestandteil der Beratung, insbesondere für die Erstanwendung");
		}
	} 
}
