function DocTitle() {
	this.obj=document.getElementById("docTitle");
	this.showSteps=10;
	this.hideSteps=10;	
}

DocTitle.prototype.setText=function(text) {
	if (this.obj==null)
	return;
	this.obj.innerHtml=text;
	/**
	Reikes toliau suskaciuoti pozicija
	*/
}


DocTitle.prototype.animate=function() {
	if (this.obj==null)
		return;
	animateShow("docTitle",2);
}
