[jQuery] Replacing Checkboxes with label + yes/no radiobuttons?

[jQuery] Replacing Checkboxes with label + yes/no radiobuttons?


Anyone aware of a plugin that allows you to selectively replace
checkboxes with yes/no radiobuttons?
i.e. I'd want this:
<input type="checkbox" name="foo" value="on">
converted to something like this:
<input type="radio" name="foo" value="on" />Yes <input type="radio"
name="foo" value="off" />No