
$(document).ready(function() {
	var sBox = $('.input-zoeken');
	sBox.val('Zoek...');
	sBox.focus(function() {
		sBox.val((sBox.val().length > 0 && sBox.val()!='Zoek...') ? sBox.val() : '');
	});
	sBox.blur(function() {
		sBox.val((sBox.val().length > 0) ? sBox.val() : 'Zoek...');
	});	
	
	var iBox = $('.input[name=search2]');
	iBox.val('Zoek...');
	iBox.focus(function() {
		iBox.val((iBox.val().length > 0 && iBox.val()!='Zoek...') ? iBox.val() : '');
	});
	iBox.blur(function() {
		iBox.val((iBox.val().length > 0) ? iBox.val() : 'Zoek...');
	});
});
