$(document).ready(function(){
	$(".hlTr").hover(function () {
		$(this).css("background-color","#F3F3F3");
	  }, function () {
		$(this).css("background-color","white");
	  }
	);
});
