// Adds utility methods for passing and setting scope to the global Cobalt object
;(function(namespace) {
	namespace.setScope = function(scope, func) {
		return function() {
			return func.apply(scope, arguments);
		}
	};
})(Cobalt.Core.Util);
