	$(document).ready(function() {
		$("table > tbody > tr").each(function() {
			var row = $(this);
			row.mouseenter(function() {
				row.addClass("hover");
			});
			row.mouseleave(function() {
				row.removeClass("hover");
			});
		});
		$(".check-all").change(function() {
			var checkboxes = $(this).closest("table").find("input[name^='selected']")
			if ($(this).attr("checked")) {
				checkboxes.attr("checked", "checked");
			} else {
				checkboxes.removeAttr("checked");
			}
		});
	});
