
sail_ins = 'SBM';
SBM = new SAILClass();



function SAILClass () {
	this.version     = '2.00';
	this.global_func = false;
	this.included    = [];
	
	
	

	this.useGlobalFunc = function () {
		if (this.func) { this.func.globalize(); }
		if (this.dom)  { this.dom.globalize(); }
		
		this.global_func = true;
	};
	
	
	

	this.useCollection = function (name) {
		var base = 'js/collections/';
		switch (name.toLowerCase()) {

		}
	};
	
}