I have seen a few different approaches to create jQuery(-namespaced) functions, but I cannot quite tell the actual difference between them.
jQuery.fn.myFunction = function() { ... };
jQuery.myFunction = function() { ... };
jQuery.fn.extend({ myFunction: function() { ... } });