$(document).ready(function() {
	$("#txtZoekterm").emptyInputText({
		text: "Zoeken..."
	});

	$("form[name=zoeken_klein]").bind("submit", function() {
		if (this.naam.value == "Zoeken...") {
			this.naam.focus();
			return false;
		}
		$(this).find("input[type=image]").attr("disabled", "disabled");
	});
});
