$(document).ready(function(){

$(".kalenderTable tr").hover(
		function(){				
				$(this).addClass('highlightRow');
		}, 	
		function(){	
				$(this).removeClass('highlightRow');
		}
	);

});