Как и всегда решение нашел в соседнем
посте...
$("a").click(function() {
$("tr").each(function() {
if ($(this).find("td img").attr("class") == "true") {
$(this).find("td input").attr("checked", true);
} else if ($(this).find("td img").attr("class") == "false") {
$(this).find("td input").attr("checked", false);
};
});
});