SVG.Image=functionImage(){this.drag=newSVG.Draggable(this);this.constructor.call(this,SVG.createElement('image'));};// inherit from SVG.ElementSVG.Image.prototype=newSVG.Element();// (re)load imageSVG.Image.prototype.load=function(url){this.setAttribute('href',url,SVG.xlink);returnthis;};// include the container objectSVG.Image.include(SVG.Container);