$(function(){

	$("#zoeken input").focus(function(){
		this.value = '';
	}).blur(function(){
		this.value = 'Zoeken:';
	});
	
});
