panel2.footerContent("<i>small</i>");
panel2.align(Align.create().node(parent).points(new Point[] { Point.create(0, 0), Point.create(0, 0) }));
panel2.render(); // apply the align
// now make this panel draggable by its header
panel2.plug(Y.Plugin().Drag(), DragConfig.create().handles(new String[] { ".yui3-widget-hd" }));
// and resizable
panel2.plug(Y.Plugin().Resize());
}