This:
$('input.people').attr('checked', false).filter('[name=toddS]').attr('checked', true);
will select a checkbox with the class of people and the name toddS while unchecking all of the other boxes.
How do I add another name to the filter? I've tried several different combinations and nothing works. This is what I have:
$('input.people').attr('checked', false).filter('[name=toddS], [name=gwenD]').attr('checked', true);