I'm trying to iterate thru a list of radio butons in order to find the matching labels and constructing a new object from them, but with this code I'm only getting the first label
$target=$();
$radio.each(function(){
$target = $target.add($source.children('label[for="'+$radio.attr("id")+'"]'));
})