// when developing for the XYZ Corporation: var XYZCorp = { init: function () { for (var i in this) { if (typeof this[i].init == 'function') { this[i].init (); } } } }; XYZCorp.init ();