function sortHeight() {
	var content = $("#content");
	if (content.length) {
		var contOffset = content.offset();
		content.height("auto");
		if (contOffset.top + content.height() < info.height) {
			content.height(info.height - contOffset.top - 1);
		}
	}
}
$(function () {
	$("span.uitslagenTabel table tr:nth-child(even), .programmaTabel > table tr:nth-child(even)").addClass("even");
});
