$(document).ready(function(){
	$("#ReplaysSet td[class!=description]").hover(
		function() { 
		 $(this).parent().addClass("active");
		},
		function() { 
		 $(this).parent().removeClass("active");
		}
	);
	$("#ReplaysSet tr[class!=thead]").click(
		function() {
			var id = $(this).attr("id").substring(7);
			location.href = '/replays/?id='+id;
		}
	);		
});
