function rowHilight(){
	$("#domain-status input").click(function() {
		if ($(this).attr("checked") == true) {
			$(this).parent().parent().addClass("highlight");
		} else {
			$(this).parent().parent().removeClass("highlight");
		}
});
    $(".status input").click(function() {
        $(".status input").parent().parent().removeClass("highlight");
        if ($(this).attr("checked") == true) {
            $(this).parent().parent().addClass("highlight");
        }
});
}
