Label = function( type, target ) {
	Label.superClass.apply( this, arguments );
	this.element = this.createNode( 'div', { 'class': 'chosenDate' }, target );
	this.inner = this.createNode( 'span', { 'class': 'inner t' + ( type ) }, this.element );
	this.ico = this.createNode( 'span', { 'class': 'ico t' + ( type ) }, this.element );
	this.createNode( 'i', { 'class': 'png' }, this.ico );
}
Label.inheritsFrom( HTMLGlif );

Label.prototype.setContent = function( sValue ) {
	this.inner.innerHTML = sValue;
}