Hi Ben,
Its preferable to define all the applications wide function's as a common utility function's rather leaking in the global scope.
window.App = {
Models : {},
Views : {},
Controllers : {},
Utilities : {}
};
App.Utilities.myFunc = function () {
//do something
};
Regards,
Ajain