//---------------------------------------------------------------------------------
//  (c) 2007 Guardian Networks, Inc
//---------------------------------------------------------------------------------

GNgui.TextSpan = Class.create();
GNgui.TextSpan.prototype =
{
	initialize : function ( parentElement, left, top, id, text , positioning)
	{
		this.textspan = $ce('span');
		$ac($e(parentElement),this.textspan);
		this.textspan.setAttribute('id',id);
		
				this.textspan.style.position='absolute';
		$el(id,left);
		$et(id,top);
		this.textspan.innerText = text;
	},
	
	ID : function ()
	{
		return this.textspan.id;
	},
	
		SetRelative : function()
	{
	  this.textspan.style.position = 'relative';
	}	
		
}
