// JavaScript Document
function clearInputSuche() {
	if (document.getElementById("inputSuche").value == "suchen") {
					document.getElementById("inputSuche").value = "";
	}
}
	          
function resetInputSuche() {
	if (document.getElementById("inputSuche").value == "") {
	                document.getElementById("inputSuche").value = "suchen";
	}
}