I'm new to jQuery as well as jQuery SVG and I can't seem to animate a grouping.
var g = svg.group();
var newRectA = svg.rect(g, 100, 10, 25, 25);
var newRectB = svg.rect(g, 200, 10, 25, 25);
$(g).animate({ svgX: random(500), svgY: random(500)}, 500);
Is that how you animate a group? Are newRectA and newRectB even grouped together?