/**
 * Boutique Solidaire
 */

BS = Class.create();

BS.prototype.modules = $A();

BS.prototype.initialize = function() {
	this.modules.invoke('moduleInit');
};

var cli;

Event.observe(window, "load", function() { if (cli==undefined) cli = new BS(); } );
