	formDesigner.textarea = Class.create(formDesigner.element, {
		initialize: function($super, container,obj, pob){
			$super(container,obj, pob);
			this.instID = 'formDesigner.textarea.' + parseInt(Math.random()*1000000);
			this.object_name = "Lange tekst";
			this.object_type = "textarea";
			this.container.addClassName('formDesignerHighElement');
			this.draw();
		},

		drawExample : function(){
			var example = new Element('textarea', {readonly:true}).update(this.object_name);
			var titleDiv = new Element('div', {className:'formDesignerExample'}).insert(example);
			this.container.insert(titleDiv);
		}
		
	});
