jQuery.extend({
	scope: function(fn, scope) {
		return function()
		{
			return fn.apply(scope, arguments);
		}
	}
});