$(function() {
	var RowHilite = {
		init: function() {
			$("#Units tr").hover(function() {
					$(this).addClass("hilite");	
				}, function() {
					$(this).removeClass("hilite");	
			}).click(function() {
				document.location.href = $(this).find("a:first").attr("href");
			});
		}
	};
	$(document).ready(function() {
		RowHilite.init();
	});
});