[jQuery] is this possible in jQ: plugin namespaces?

[jQuery] is this possible in jQ: plugin namespaces?


Hi, all!
Is it possible, using the current jQ API, to add plugins such that
they live in their own namespaces?
For example, let's say we have a plugin with 'start' and 'stop'
functions and we want to avoid any potential name collisions with
other plugins (or with [rumored] up-coming stop-animation support in
jQ). Is there a way to register the plugin such that we can do this:
$(...).myPlugin.start(...);
$(...).myPlugin.stop(...);
or a longer example:
$(...).blair.timer.start(...);
???
This ability would free plugin writers (and users) of worrying about
naming collisions.