$(function() {
	$("#search input[name=q]").defaultText(vertaling.searchText);
	
	var linked = false;
	$("#nieuws li, .block:has(a.more)").click(function(e) {
		if (linked) return;
		if (!$(e.target).is("a")) {
			$("a", this).each(function() { window.location =  this.href; e.preventDefault(); linked = true; });
		}
	}).hover(function() { $(this).addClass("hover"); }, function() { $(this).removeClass("hover"); });
});

