$('.table-rows').click(function(){
if ( $(this).find('input[type=checkbox]:first').is(':checked') ) {
$(this).closest('tr').find('input[type=checkbox]:first').removeAttr("checked");
} else {
$(this).closest('tr').find('input[type=checkbox]:first').attr('checked','checked');
}
});