/* ---------------------------------------------------------------------------------------------------- */
/* =mxm.js */
/* ---------------------------------------------------------------------------------------------------- */

var module = new Class({
	load: function(obj){
		this[obj.name] = obj;
	},
	unload: function(obj){
		delete this[obj.name];
	}
});

var framework = module.extend({
	initialize: function(options){
		this.options = options;
	}
});