$(document).ready(function() {  
$('input[type="text"]').addClass("zoekNormaal");  
$('input[type="text"]').focus(function() {  
$(this).removeClass("zoekNormaal").addClass("zoekFocus");  
	if (this.value == this.defaultValue){  
	this.value = '';  
		}  
	if(this.value != this.defaultValue){  
	this.select();  
		}  
	});  
	$('input[type="text"]').blur(function() {  
	$(this).removeClass("zoekFocus").addClass("zoekNormaal");  
		if ($.trim(this.value == '')){  
		this.value = (this.defaultValue ? this.defaultValue : '');  
		}  
	});  
}); 