function inputBlur() {
	var input = document.getElementById("query");
	if (input.value == "") {
		input.value = "Zoeken in deze website:";
	}
}

function inputFocus() {
	var input = document.getElementById("query");
	if (input.value == "Zoeken in deze website:") {
		input.value = "";
	}
}

window.onload = function () {
	var input = document.getElementById("query");
	input.onblur = inputBlur;
	input.onfocus = inputFocus;
	
	inputBlur();
	
	var a = document.createElement("a");
	a.appendChild(document.createTextNode("print"));
	a.href = "#";
	a.onclick = function () {
		window.print();
		return false;
	}
	
	var span = document.createElement("span");
	span.appendChild(document.createTextNode("|"));	
	
	var li = document.createElement("li");
	li.appendChild(a);
	li.appendChild(span);
	
	var ul = document.getElementById("footer").getElementsByTagName("ul")[0];
	ul.insertBefore(li, ul.getElementsByTagName("li")[0]);
}

