/* When dom is loaded. */
$(document).ready(function() {

	// Search box.
	$('.sKeywords').bind('focus', function() {
		if ($(this).val() == 'Vul hier uw trefwoord in') {
			$(this).val('');
		}
	});
	$('.sKeywords').bind('blur', function() {
		if ($(this).val() == '') {
			$(this).val('Vul hier uw trefwoord in');
		}
	});
});
