var toptextil = function()
{
	this.baner_margin = {top:0, right:0, bottom:0, left:0};
	this.baner_width = 0;
	this.baner_id = '';
	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	this.baner_param = function(id, w, p)
	{
		this.baner_id = id;
		this.baner_width = w;
		this.baner_margin = {top:p[0], right:p[1], bottom:p[2], left:p[3]};
	}
	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

	this.update_baner = function(h)
	{
		if($(this.baner_id))
			$(this.baner_id).style.height = h - this.baner_margin.top - this.baner_margin.bottom;
	}
}
