/* Site library for www.one-day-on-earth.com */

function setValue () {
	
	var initField = document.getElementById("suche");
	initField.value = "Search the site";
	
}

function clearValue () {

	document.getElementById("suche").value = "";

}

window.onload = setValue;

