}
public List getImageUrls(Node node) {
ArrayList list = new ArrayList();
DOMElementImpl doc = (DOMElementImpl)node;
NodeList imageList = doc.getElementsByTagName("img");
if (imageList != null) {
for (int i=0; i<imageList.getLength(); ++i) {
Node imageNode = imageList.item(i);