function Autocomplete(listBox) {
	var dublicate = this;
	var boxes = [];
	
	this.createAutocompleteBox = function(type, node, params) {
		return boxes.push( dublicate.fabricAutocompleteBox[type].apply(dublicate, [node, listBox].concat(params)) );
	}
	this.getBoxes = function() {
		return boxes;
	}
}