function Category() {
	this.id = null;
	this.name = null;
	this.max = 0;
	this.price = 0;
	this.tariffs = new Array();
	this.ratings = new Array();
}

