$(document).ready(function() {
	$('.tbl-laengs table').columnHover({eachCell:true, hoverClass:'highl'}); 
	$('.tbl-quer table tr').mouseover(
		function() {
			$(this).addClass('highl');
		}
	);
	$('.tbl-quer table tr').mouseout(
		function() {
			$(this).removeClass('highl');
		}
	); 
});