// Gaia Ajax Widgets Copyright (C) 2007 - 2008 Gaiaware AS. details at http://ajaxwidgets.com/
Gaia.Image=Class.create();Object.extend(Gaia.Image.prototype,Gaia.WebControl.prototype);Object.extend(Gaia.Image.prototype,{initialize:function(element,options){this.initializeImage(element,options);},initializeImage:function(element,options){this.initializeWebControl(element,options);},setImageUrl:function(value){this.element.src=value;return this;},setTabIndex:function(value){this.element.tabIndex=value;return this;},setAlternateText:function(value){this.element.alt=value;return this;},_getElementPostValue:function(){return'';}});Gaia.Image.browserFinishedLoading=true;