var clicked = false;

window.onload = function () {
	if (document.getElementById('q')) {
		document.getElementById('q').value = 'Type hier uw zoekopdracht in';
		
		document.getElementById('q').onclick = function () {
		    if (clicked == false) {
		        clicked = true;
		        this.value = '';
		    }
		}
	}
}
