Fixed two bugs with togglling.
[jquery.git] / jquery / jquery.js
index 4cbe61f..369ff88 100644 (file)
@@ -18,6 +18,9 @@ window.undefined = window.undefined;
  */
 function jQuery(a,c) {
 
+       // Initalize the extra macro functions
+       if ( !jQuery.initDone ) jQuery.init();
+
        // Shortcut for document ready (because $(document).each() is silly)
        if ( a && a.constructor == Function && jQuery.fn.ready )
                return jQuery(document).ready(a);
@@ -29,7 +32,7 @@ function jQuery(a,c) {
         * Handle support for overriding other $() functions. Way too many libraries
         * provide this function to simply ignore it and overwrite it.
         */
-
+       /*
        // Check to see if this is a possible collision case
        if ( jQuery._$ && !c && a.constructor == String && 
       
@@ -42,6 +45,7 @@ function jQuery(a,c) {
 
                        // Use the default method, in case it works some voodoo
                        return jQuery._$( a );
+       */
 
        // Watch for when a jQuery object is passed as the selector
        if ( a.jquery )
@@ -55,10 +59,14 @@ function jQuery(a,c) {
        if ( window == this )
                return new jQuery(a,c);
 
+       // Handle HTML strings
+       var m = /^[^<]*(<.+>)[^>]*$/.exec(a);
+       if ( m ) a = jQuery.clean( [ m[1] ] );
+
        // Watch for when an array is passed in
-       this.get( a.constructor == Array ?
-               // Assume that it's an array of DOM Elements
-               a :
+       this.get( a.constructor == Array || a.length && !a.nodeType && a[0] != undefined && a[0].nodeType ?
+               // Assume that it is an array of DOM Elements
+               jQuery.merge( a, [] ) :
 
                // Find the matching elements and save them for later
                jQuery.find( a, c ) );
@@ -168,7 +176,7 @@ jQuery.fn = jQuery.prototype = {
                                // Return just the object
                                this[num];
        },
-       
+
        /**
         * Execute a function within the context of every matched element.
         * This means that every time the passed-in function is executed
@@ -188,13 +196,7 @@ jQuery.fn = jQuery.prototype = {
         * @param Function fn A function to execute
         */
        each: function( fn, args ) {
-               // Iterate through all of the matched elements
-               for ( var i = 0; i < this.length; i++ )
-               
-                       // Execute the function within the context of each element
-                       fn.apply( this[i], args || [i] );
-               
-               return this;
+               return jQuery.each( this, fn, args );
        },
        
        /**
@@ -303,7 +305,7 @@ jQuery.fn = jQuery.prototype = {
         * @param Object value The value to set the property to.
         */
        css: function( key, value ) {
-               return this.attr( key, value, "css" );
+               return this.attr( key, value, "curCSS" );
        },
        
        /**
@@ -511,33 +513,39 @@ jQuery.fn = jQuery.prototype = {
         * @param String expr An expression to search with.
         */
 
-        /**
-         * Removes all elements from the set of matched elements that do not
-         * match at least one of the expressions passed to the function. This 
-         * method is used when you want to filter the set of matched elements 
-         * through more than one expression.
-         *
-         * Elements will be retained in the jQuery object if they match at
-         * least one of the expressions passed.
-         *
-         * @example $("p").filter([".selected", ":first"])
-         * @before <p>Hello</p><p>Hello Again</p><p class="selected">And Again</p>
-         * @result $("p").filter([".selected", ":first"]) == [ <p>Hello</p>, <p class="selected">And Again</p> ]
-         *
-         * @name filter
-         * @type jQuery
-         * @param Array<String> exprs A set of expressions to evaluate against
-         */
+       /**
+        * Removes all elements from the set of matched elements that do not
+        * match at least one of the expressions passed to the function. This 
+        * method is used when you want to filter the set of matched elements 
+        * through more than one expression.
+        *
+        * Elements will be retained in the jQuery object if they match at
+        * least one of the expressions passed.
+        *
+        * @example $("p").filter([".selected", ":first"])
+        * @before <p>Hello</p><p>Hello Again</p><p class="selected">And Again</p>
+        * @result $("p").filter([".selected", ":first"]) == [ <p>Hello</p>, <p class="selected">And Again</p> ]
+        *
+        * @name filter
+        * @type jQuery
+        * @param Array<String> exprs A set of expressions to evaluate against
+        */
        filter: function(t) {
-               return t.constructor == Array ?
-                       // Multi Filtering
-                       this.pushStack( jQuery.map(this,function(a){
+               return this.pushStack(
+                       t.constructor == Array &&
+                       jQuery.map(this,function(a){
                                for ( var i = 0; i < t.length; i++ )
                                        if ( jQuery.filter(t[i],[a]).r.length )
                                                return a;
-                       }), arguments ) :
-                       
-                       this.pushStack( jQuery.filter(t,this).r, arguments );
+                       }) ||
+
+                       t.constructor == Boolean &&
+                       ( t ? this.get() : [] ) ||
+
+                       t.constructor == Function &&
+                       jQuery.grep( this, t ) ||
+
+                       jQuery.filter(t,this).r, arguments );
        },
        
        /**
@@ -598,18 +606,18 @@ jQuery.fn = jQuery.prototype = {
         * @param Array<Element> els An array of Elements to add
         */
 
-        /**
-         * Adds a single Element to the set of matched elements. This is used to
-         * add a single Element to a jQuery object.
-         *
-         * @example $("p").add( document.getElementById("a") )
-         * @before <p>Hello</p><p><span id="a">Hello Again</span></p>
-         * @result [ <p>Hello</p>, <span id="a">Hello Again</span> ]
-         *
-         * @name add
-         * @type jQuery
-         * @param Element el An Element to add
-         */
+       /**
+        * Adds a single Element to the set of matched elements. This is used to
+        * add a single Element to a jQuery object.
+        *
+        * @example $("p").add( document.getElementById("a") )
+        * @before <p>Hello</p><p><span id="a">Hello Again</span></p>
+        * @result [ <p>Hello</p>, <span id="a">Hello Again</span> ]
+        *
+        * @name add
+        * @type jQuery
+        * @param Element el An Element to add
+        */
        add: function(t) {
                return this.pushStack( jQuery.merge( this, t.constructor == String ?
                        jQuery.find(t) : t.constructor == Array ? t : [t] ), arguments );
@@ -625,7 +633,7 @@ jQuery.fn = jQuery.prototype = {
         * @type Boolean
         */
        is: function(expr) {
-               return jQuery.filter(expr,this).r.length > 0;
+               return expr ? jQuery.filter(expr,this).r.length > 0 : this.length > 0;
        },
        
        /**
@@ -655,10 +663,11 @@ jQuery.fn = jQuery.prototype = {
                                } else
                                        obj = tbody[0];
                        }
-       
+
                        for ( var i = ( dir < 0 ? a.length - 1 : 0 );
-                               i != ( dir < 0 ? dir : a.length ); i += dir )
-                                       fn.apply( obj, [ a[i] ] );
+                               i != ( dir < 0 ? dir : a.length ); i += dir ) {
+                                       fn.apply( obj, [ clone ? a[i].cloneNode(true) : a[i] ] );
+                       }
                });
        },
        
@@ -687,433 +696,117 @@ jQuery.fn = jQuery.prototype = {
                }
 
                return this;
-       },
-       
-       extend: function(obj,prop) {
-               if ( !prop ) { prop = obj; obj = this; }
-               for ( var i in prop ) obj[i] = prop[i];
-               return obj;
        }
 };
 
-jQuery.extend = jQuery.fn.extend;
-
-new function() {
-       var b = navigator.userAgent.toLowerCase();
-
-       // Figure out what browser is being used
-       jQuery.browser = {
-               safari: /webkit/.test(b),
-               opera: /opera/.test(b),
-               msie: /msie/.test(b) && !/opera/.test(b),
-               mozilla: /mozilla/.test(b) && !/compatible/.test(b)
-       };
-
-       // Check to see if the W3C box model is being used
-       jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
-
-       var axis = {
-               /**
-                * Get a set of elements containing the unique parents of the matched
-                * set of elements.
-                *
-                * @example $("p").parent()
-                * @before <div><p>Hello</p><p>Hello</p></div>
-                * @result [ <div><p>Hello</p><p>Hello</p></div> ]
-                *
-                * @name parent
-                * @type jQuery
-                */
-
-               /**
-                * Get a set of elements containing the unique parents of the matched
-                * set of elements, and filtered by an expression.
-                *
-                * @example $("p").parent(".selected")
-                * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
-                * @result [ <div class="selected"><p>Hello Again</p></div> ]
-                *
-                * @name parent
-                * @type jQuery
-                * @param String expr An expression to filter the parents with
-                */
-               parent: "a.parentNode",
-
-               /**
-                * Get a set of elements containing the unique ancestors of the matched
-                * set of elements.
-                *
-                * @example $("span").ancestors()
-                * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
-                * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ] 
-                *
-                * @name ancestors
-                * @type jQuery
-                */
+/**
+ * 
+ *
+ * @private
+ * @name extend
+ * @param Object obj
+ * @param Object prop
+ * @type Object
+ */
+/**
+ * Extend one object with another, returning the original,
+ * modified, object. This is a great utility for simple inheritance.
+ *
+ * @name $.extend
+ * @param Object obj The object to extend
+ * @param Object prop The object that will be merged into the first.
+ * @type Object
+ */
+jQuery.extend = jQuery.fn.extend = function(obj,prop) {
+       if ( !prop ) { prop = obj; obj = this; }
+       for ( var i in prop ) obj[i] = prop[i];
+       return obj;
+};
 
-               /**
-                * Get a set of elements containing the unique ancestors of the matched
-                * set of elements, and filtered by an expression.
-                *
-                * @example $("span").ancestors("p")
-                * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
-                * @result [ <p><span>Hello</span></p> ] 
-                *
-                * @name ancestors
-                * @type jQuery
-                * @param String expr An expression to filter the ancestors with
-                */
-               ancestors: jQuery.parents,
+jQuery.extend({
+       /**
+        * 
+        *
+        * @private
+        * @name init
+        * @type undefined
+        */
+       init: function(){
+               jQuery.initDone = true;
                
-               /**
-                * A synonym for ancestors
-                */
-               parents: jQuery.parents,
-
-               /**
-                * Get a set of elements containing the unique next siblings of each of the 
-                * matched set of elements.
-                * 
-                * It only returns the very next sibling, not all next siblings.
-                *
-                * @example $("p").next()
-                * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
-                * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
-                *
-                * @name next
-                * @type jQuery
-                */
-
-               /**
-                * Get a set of elements containing the unique next siblings of each of the 
-                * matched set of elements, and filtered by an expression.
-                * 
-                * It only returns the very next sibling, not all next siblings.
-                *
-                * @example $("p").next(".selected")
-                * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
-                * @result [ <p class="selected">Hello Again</p> ]
-                *
-                * @name next
-                * @type jQuery
-                * @param String expr An expression to filter the next Elements with
-                */
-               next: "a.nextSibling",
-
-               /**
-                * Get a set of elements containing the unique previous siblings of each of the 
-                * matched set of elements.
-                * 
-                * It only returns the immediately previous sibling, not all previous siblings.
-                *
-                * @example $("p").previous()
-                * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
-                * @result [ <div><span>Hello Again</span></div> ]
-                *
-                * @name prev
-                * @type jQuery
-                */
-
-               /**
-                * Get a set of elements containing the unique previous siblings of each of the 
-                * matched set of elements, and filtered by an expression.
-                * 
-                * It only returns the immediately previous sibling, not all previous siblings.
-                *
-                * @example $("p").previous("selected")
-                * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
-                * @result [ <div><span>Hello</span></div> ]
-                *
-                * @name prev
-                * @type jQuery
-                * @param String expr An expression to filter the previous Elements with
-                */
-               prev: "a.previousSibling",
-
-               /**
-                * Get a set of elements containing all of the unique siblings of each of the 
-                * matched set of elements.
-                * 
-                * @example $("div").siblings()
-                * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
-                * @result [ <p>Hello</p>, <p>And Again</p> ]
-                *
-                * @name siblings
-                * @type jQuery
-                */
-
-               /**
-                * Get a set of elements containing all of the unique siblings of each of the 
-                * matched set of elements, and filtered by an expression.
-                *
-                * @example $("div").siblings("selected")
-                * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
-                * @result [ <p class="selected">Hello Again</p> ]
-                *
-                * @name siblings
-                * @type jQuery
-                * @param String expr An expression to filter the sibling Elements with
-                */
-               siblings: jQuery.sibling
-       };
+               jQuery.each( jQuery.macros.axis, function(i,n){
+                       jQuery.fn[ i ] = function(a) {
+                               var ret = jQuery.map(this,n);
+                               if ( a && a.constructor == String )
+                                       ret = jQuery.filter(a,ret).r;
+                               return this.pushStack( ret, arguments );
+                       };
+               });
+               
+               jQuery.each( jQuery.macros.to, function(i,n){
+                       jQuery.fn[ i ] = function(){
+                               var a = arguments;
+                               return this.each(function(){
+                                       for ( var j = 0; j < a.length; j++ )
+                                               $(a[j])[n]( this );
+                               });
+                       };
+               });
+               
+               jQuery.each( jQuery.macros.each, function(i,n){
+                       jQuery.fn[ i ] = function() {
+                               return this.each( n, arguments );
+                       };
+               });
+               
+               jQuery.each( jQuery.macros.attr, function(i,n){
+                       n = n || i;
+                       jQuery.fn[ i ] = function(h) {
+                               return h == undefined ?
+                                       this.length ? this[0][n] : null :
+                                       this.attr( n, h );
+                       };
+               });
        
-       for ( var i in axis ) new function(){
-               var t = axis[i];
-               jQuery.fn[ i ] = function(a) {
-                       var ret = jQuery.map(this,t);
-                       if ( a ) ret = jQuery.filter(a,ret).r;
-                       return this.pushStack( ret, arguments );
-               };
-       }
+               jQuery.each( jQuery.macros.css, function(i,n){
+                       jQuery.fn[ i ] = function(h) {
+                               return h == undefined ?
+                                       ( this.length ? jQuery.css( this[0], n ) : null ) :
+                                       this.css( n, h );
+                       };
+               });
        
-       /*var to = ["append","prepend","before","after"];
+       },
        
-       for ( var i = 0; i < to.length; i++ ) new function(){
-               var n = to[i];
-               jQuery.fn[ n + "To" ] = function(){
-                       var a = arguments;
-                       return this.each(function(){
-                               for ( var i = 0; i < a.length; i++ )
-                                       $(a[i])[n]( this );
-                       });
-               };
-       }*/
+       /**
+        * A generic iterator function, which can be used to seemlessly
+        * iterate over both objects and arrays.
+        *
+        * @name $.each
+        * @param Object obj The object, or array, to iterate over.
+        * @param Object fn The function that will be executed on every object.
+        * @type Object
+        */
+       each: function( obj, fn, args ) {
+               if ( obj.length == undefined )
+                       for ( var i in obj )
+                               fn.apply( obj[i], args || [i, obj[i]] );
+               else
+                       for ( var i = 0; i < obj.length; i++ )
+                               fn.apply( obj[i], args || [i, obj[i]] );
+               return obj;
+       },
        
-       var each = {
-               /**
-                * Displays each of the set of matched elements if they are hidden.
-                * 
-                * @example $("p").show()
-                * @before <p style="display: none">Hello</p>
-                * @result [ <p style="display: block">Hello</p> ]
-                *
-                * @name show
-                * @type jQuery
-                */
-               show: function(){
-                       this.style.display = this.oldblock ? this.oldblock : "";
-                       if ( jQuery.css(this,"display") == "none" )
-                               this.style.display = "block";
+       className: {
+               add: function(o,c){
+                       if (jQuery.className.has(o,c)) return;
+                       o.className += ( o.className ? " " : "" ) + c;
                },
-
-               /**
-                * Hides each of the set of matched elements if they are shown.
-                *
-                * @example $("p").hide()
-                * @before <p>Hello</p>
-                * @result [ <p style="display: none">Hello</p> ]
-                *
-                * @name hide
-                * @type jQuery
-                */
-               hide: function(){
-                       this.oldblock = jQuery.css(this,"display");
-                       if ( this.oldblock == "none" )
-                               this.oldblock = "block";
-                       this.style.display = "none";
-               },
-               
-               /**
-                * Toggles each of the set of matched elements. If they are shown,
-                * toggle makes them hidden. If they are hidden, toggle
-                * makes them shown.
-                *
-                * @example $("p").toggle()
-                * @before <p>Hello</p><p style="display: none">Hello Again</p>
-                * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
-                *
-                * @name toggle
-                * @type jQuery
-                */
-               toggle: function(){
-                       var d = jQuery.css(this,"display");
-                       $(this)[ !d || d == "none" ? "show" : "hide" ]();
-               },
-               
-               /**
-                * Adds the specified class to each of the set of matched elements.
-                *
-                * @example ("p").addClass("selected")
-                * @before <p>Hello</p>
-                * @result [ <p class="selected">Hello</p> ]
-                * 
-                * @name addClass
-                * @type jQuery
-                * @param String class A CSS class to add to the elements
-                */
-               addClass: function(c){
-                       jQuery.className.add(this,c);
-               },
-               
-               /**
-                * The opposite of addClass. Removes the specified class from the
-                * set of matched elements.
-                *
-                * @example ("p").removeClass("selected")
-                * @before <p class="selected">Hello</p>
-                * @result [ <p>Hello</p> ]
-                *
-                * @name removeClass
-                * @type jQuery
-                * @param String class A CSS class to remove from the elements
-                */
-               removeClass: function(c){
-                       jQuery.className.remove(this,c);
-               },
-       
-               /**
-                * Adds the specified class if it is present. Remove it if it is
-                * not present.
-                *
-                * @example ("p").toggleClass("selected")
-                * @before <p>Hello</p><p class="selected">Hello Again</p>
-                * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
-                *
-                * @name toggleClass
-                * @type jQuery
-                * @param String class A CSS class with which to toggle the elements
-                */
-               toggleClass: function( c ){
-                       jQuery.className[ jQuery.className.has(this,a) ? "remove" : "add" ](this,c);
-               },
-               
-               /**
-                * TODO: Document
-                */
-               remove: function(a){
-                       if ( !a || jQuery.filter( [this], a ).r )
-                               this.parentNode.removeChild( this );
-               },
-       
-               /**
-                * Removes all child nodes from the set of matched elements.
-                *
-                * @example ("p").empty()
-                * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
-                * @result [ <p></p> ]
-                *
-                * @name empty
-                * @type jQuery
-                */
-               empty: function(){
-                       while ( this.firstChild )
-                               this.removeChild( this.firstChild );
-               },
-               
-               /**
-                * Binds a particular event (like click) to a each of a set of match elements.
-                *
-                * @example $("p").bind( "click", function() { alert("Hello"); } )
-                * @before <p>Hello</p>
-                * @result [ <p>Hello</p> ]
-                *
-                * Cancel a default action and prevent it from bubbling by returning false
-                * from your function.
-         *
-                * @example $("form").bind( "submit", function() { return false; } )
-                *
-                * Cancel a default action by using the preventDefault method.
-                *
-                * @example $("form").bind( "submit", function() { e.preventDefault(); } )
-                *
-                * Stop an event from bubbling by using the stopPropogation method.
-                *
-                * @example $("form").bind( "submit", function() { e.stopPropogation(); } )
-                *
-                * @name bind
-                * @type jQuery
-                * @param String type An event type
-                * @param Function fn A function to bind to the event on each of the set of matched elements
-                */
-               bind: function( type, fn ) {
-                       jQuery.event.add( this, type, fn );
-               },
-               
-               /**
-                * The opposite of bind. Removes a bound event from each of a set of matched
-                * elements. You must pass the identical function that was used in the original 
-                * bind method.
-                *
-                * @example $("p").unbind( "click", function() { alert("Hello"); } )
-                * @before <p>Hello</p>
-                * @result [ <p>Hello</p> ]
-                *
-                * @name unbind
-                * @type jQuery
-                * @param String type An event type
-                * @param Function fn A function to unbind from the event on each of the set of matched elements
-                */
-               unbind: function( type, fn ) {
-                       jQuery.event.remove( this, type, fn );
-               },
-               
-               /**
-                * Trigger a particular event.
-                *
-                * @example $("p").trigger("click")
-                * @before <p>Hello</p>
-                * @result [ <p>Hello</p> ]
-                *
-                * @name trigger
-                * @type jQuery
-                * @param String type An event type
-                */
-               trigger: function( type ) {
-                       jQuery.event.trigger( this, type );
-               }
-       };
-       
-       for ( var i in each ) new function() {
-               var n = each[i];
-               jQuery.fn[ i ] = function() {
-                       return this.each( n, arguments );
-               };
-       };
-       
-       var attr = {
-               val: "value",
-               html: "innerHTML",
-               value: null,
-               id: null,
-               title: null,
-               name: null,
-               href: null,
-               src: null,
-               rel: null
-       };
-       
-       for ( var i in attr ) new function() {
-               var n = attr[i];
-               jQuery.fn[ i ] = function(h) {
-                       return h == undefined ?
-                               this.length ? this[0][n] : null :
-                               this.attr( n, h );
-               };
-       }
-       
-       var css = "width,height,top,left,position,float,overflow,color,background".split(",");
-       
-       for ( var i in css ) new function() {
-               var n = css[i];
-               jQuery.fn[ i ] = function(h) {
-                       return h == undefined ?
-                               this.length ? jQuery.css( this[0], n ) : null :
-                               this.css( n, h );
-               };
-       }
-
-}
-
-jQuery.extend({
-       className: {
-               add: function(o,c){
-                       if (jQuery.className.has(o,c)) return;
-                       o.className += ( o.className ? " " : "" ) + c;
-               },
-               remove: function(o,c){
-                       o.className = !c ? "" :
-                               o.className.replace(
-                                       new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
+               remove: function(o,c){
+                       o.className = !c ? "" :
+                               o.className.replace(
+                                       new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
                },
                has: function(e,a) {
                        if ( e.className )
@@ -1158,15 +851,21 @@ jQuery.extend({
                        });
        
                        return p == "height" ? oHeight : oWidth;
-               }
-               
+               } else if ( p == "opacity" && jQuery.browser.msie )
+                       return parseFloat(  jQuery.curCSS(e,"filter").replace(/[^0-9.]/,"") ) || 1;
+
+               return jQuery.curCSS( e, p );
+       },
+
+       curCSS: function(e,p,force) {
                var r;
        
-               if (e.style[p])
+               if (!force && e.style[p])
                        r = e.style[p];
-               else if (e.currentStyle)
+               else if (e.currentStyle) {
+                       p = p.replace(/\-(\w)/g,function(m,c){return c.toUpperCase()}); 
                        r = e.currentStyle[p];
-               else if (document.defaultView && document.defaultView.getComputedStyle) {
+               } else if (document.defaultView && document.defaultView.getComputedStyle) {
                        p = p.replace(/([A-Z])/g,"-$1").toLowerCase();
                        var s = document.defaultView.getComputedStyle(e,"");
                        r = s ? s.getPropertyValue(p) : null;
@@ -1234,8 +933,8 @@ jQuery.extend({
                        contains: "(a.innerText||a.innerHTML).indexOf(m[3])>=0",
                        
                        // Visibility
-                       visible: "jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!='hidden'",
-                       hidden: "jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')=='hidden'",
+                       visible: "a.type!='hidden'&&jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!='hidden'",
+                       hidden: "a.type=='hidden'||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')=='hidden'",
                        
                        // Form elements
                        enabled: "!a.disabled",
@@ -1270,7 +969,7 @@ jQuery.extend({
        
        find: function( t, context ) {
                // Make sure that the context is a DOM Element
-               if ( context && context.getElementsByTagName == undefined )
+               if ( context && context.nodeType == undefined )
                        context = null;
        
                // Set the correct context (if none is provided)
@@ -1387,50 +1086,53 @@ jQuery.extend({
                } else
                        return "";
        },
+
+       // The regular expressions that power the parsing engine
+       parse: [
+               // Match: [@value='test'], [@foo]
+               [ "\\[ *(@)S *([!*$^=]*) *Q\\]", 1 ],
+
+               // Match: [div], [div p]
+               [ "(\\[)Q\\]", 0 ],
+
+               // Match: :contains('foo')
+               [ "(:)S\\(Q\\)", 0 ],
+
+               // Match: :even, :last-chlid
+               [ "([:.#]*)S", 0 ]
+       ],
        
        filter: function(t,r,not) {
                // Figure out if we're doing regular, or inverse, filtering
                var g = not !== false ? jQuery.grep :
                        function(a,f) {return jQuery.grep(a,f,true);};
                
-               // Look for a string-like sequence
-               var str = "([a-zA-Z*_-][a-zA-Z0-9_-]*)";
-               
-               // Look for something (optionally) enclosed with quotes
-               var qstr = " *'?\"?([^'\"]*)'?\"? *";
-       
-               while ( t && /^[a-zA-Z\[*:.#]/.test(t) ) {
-                       // Handles:
-                       // [@foo], [@foo=bar], etc.
-                       var re = new RegExp("^\\[ *@" + str + " *([!*$^=]*) *" + qstr + "\\]");
-                       var m = re.exec(t);
-       
-                       // Re-organize the match
-                       if ( m ) m = ["", "@", m[2], m[1], m[3]];
-                               
-                       // Handles:
-                       // [div], [.foo]
-                       if ( !m ) {
-                               re = new RegExp("^(\\[)" + qstr + "\\]");
-                               m = re.exec(t);
-                       }
-                       
-                       // Handles:
-                       // :contains(test), :not(.foo)
-                       if ( !m ) {
-                               re = new RegExp("^(:)" + str + "\\(" + qstr + "\\)");
-                               m = re.exec(t);
-                       }
-                       
-                       // Handles:
-                       // :foo, .foo, #foo, foo
-                       if ( !m ) {
-                               re = new RegExp("^([:.#]*)" + str);
-                               m = re.exec(t);
+               while ( t && /^[a-z[({<*:.#]/i.test(t) ) {
+
+                       var p = jQuery.parse;
+
+                       for ( var i = 0; i < p.length; i++ ) {
+                               var re = new RegExp( "^" + p[i][0]
+
+                                       // Look for a string-like sequence
+                                       .replace( 'S', "([a-z*_-][a-z0-9_-]*)" )
+
+                                       // Look for something (optionally) enclosed with quotes
+                                       .replace( 'Q', " *'?\"?([^'\"]*)'?\"? *" ), "i" );
+
+                               var m = re.exec( t );
+
+                               if ( m ) {
+                                       // Re-organize the match
+                                       if ( p[i][1] )
+                                               m = ["", m[1], m[3], m[2], m[4]];
+
+                                       // Remove what we just matched
+                                       t = t.replace( re, "" );
+
+                                       break;
+                               }
                        }
-                       
-                       // Remove what we just matched
-                       t = t.replace( re, "" );
        
                        // :not() is a special case that can be optomized by
                        // keeping it out of the expression list
@@ -1510,6 +1212,7 @@ jQuery.extend({
                        n == "even" && type.n % 2 == 0 ||
                        n == "odd" && type.n % 2 ||
                        type[n] == a;
+               type.prev = type[type.n - 1];
                type.next = type[type.n + 1];
                return type;
        },
@@ -1698,6 +1401,8 @@ jQuery.extend({
                },
                
                handle: function(event) {
+                       if ( typeof jQuery == "undefined" ) return;
+
                        event = event || jQuery.event.fix( window.event );
        
                        // If no correct event was found, fail
@@ -1734,3 +1439,900 @@ jQuery.extend({
        
        }
 });
+
+new function() {
+       var b = navigator.userAgent.toLowerCase();
+
+       // Figure out what browser is being used
+       jQuery.browser = {
+               safari: /webkit/.test(b),
+               opera: /opera/.test(b),
+               msie: /msie/.test(b) && !/opera/.test(b),
+               mozilla: /mozilla/.test(b) && !/compatible/.test(b)
+       };
+
+       // Check to see if the W3C box model is being used
+       jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
+};
+
+jQuery.macros = {
+       to: {
+               /**
+                * Append all of the matched elements to another, specified, set of elements.
+                * This operation is, essentially, the reverse of doing a regular
+                * $(A).append(B), in that instead of appending B to A, you're appending
+                * A to B.
+                * 
+                * @example $("p").appendTo("#foo");
+                * @before <p>I would like to say: </p><div id="foo"></div>
+                * @result <div id="foo"><p>I would like to say: </p></div>
+                *
+                * @name appendTo
+                * @type jQuery
+                * @param String expr A jQuery expression of elements to match.
+                */
+               append: "appendTo",
+               
+               /**
+                * Prepend all of the matched elements to another, specified, set of elements.
+                * This operation is, essentially, the reverse of doing a regular
+                * $(A).prepend(B), in that instead of prepending B to A, you're prepending
+                * A to B.
+                * 
+                * @example $("p").prependTo("#foo");
+                * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
+                * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
+                *
+                * @name prependTo
+                * @type jQuery
+                * @param String expr A jQuery expression of elements to match.
+                */
+               prepend: "prependTo",
+               
+               /**
+                * Insert all of the matched elements before another, specified, set of elements.
+                * This operation is, essentially, the reverse of doing a regular
+                * $(A).before(B), in that instead of inserting B before A, you're inserting
+                * A before B.
+                * 
+                * @example $("p").insertBefore("#foo");
+                * @before <div id="foo">Hello</div><p>I would like to say: </p>
+                * @result <p>I would like to say: </p><div id="foo">Hello</div>
+                *
+                * @name insertBefore
+                * @type jQuery
+                * @param String expr A jQuery expression of elements to match.
+                */
+               before: "insertBefore",
+               
+               /**
+                * Insert all of the matched elements after another, specified, set of elements.
+                * This operation is, essentially, the reverse of doing a regular
+                * $(A).after(B), in that instead of inserting B after A, you're inserting
+                * A after B.
+                * 
+                * @example $("p").insertAfter("#foo");
+                * @before <p>I would like to say: </p><div id="foo">Hello</div>
+                * @result <div id="foo">Hello</div><p>I would like to say: </p>
+                *
+                * @name insertAfter
+                * @type jQuery
+                * @param String expr A jQuery expression of elements to match.
+                */
+               after: "insertAfter"
+       },
+       
+       /**
+        * Get the current CSS width of the first matched element.
+        * 
+        * @example $("p").width();
+        * @before <p>This is just a test.</p>
+        * @result "300px"
+        *
+        * @name width
+        * @type String
+        */
+        
+       /**
+        * Set the CSS width of every matched element. Be sure to include
+        * the "px" (or other unit of measurement) after the number that you 
+        * specify, otherwise you might get strange results.
+        * 
+        * @example $("p").width("20px");
+        * @before <p>This is just a test.</p>
+        * @result <p style="width:20px;">This is just a test.</p>
+        *
+        * @name width
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+       
+       /**
+        * Get the current CSS height of the first matched element.
+        * 
+        * @example $("p").height();
+        * @before <p>This is just a test.</p>
+        * @result "14px"
+        *
+        * @name height
+        * @type String
+        */
+        
+       /**
+        * Set the CSS height of every matched element. Be sure to include
+        * the "px" (or other unit of measurement) after the number that you 
+        * specify, otherwise you might get strange results.
+        * 
+        * @example $("p").height("20px");
+        * @before <p>This is just a test.</p>
+        * @result <p style="height:20px;">This is just a test.</p>
+        *
+        * @name height
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS top of the first matched element.
+        * 
+        * @example $("p").top();
+        * @before <p>This is just a test.</p>
+        * @result "0px"
+        *
+        * @name top
+        * @type String
+        */
+        
+       /**
+        * Set the CSS top of every matched element. Be sure to include
+        * the "px" (or other unit of measurement) after the number that you 
+        * specify, otherwise you might get strange results.
+        * 
+        * @example $("p").top("20px");
+        * @before <p>This is just a test.</p>
+        * @result <p style="top:20px;">This is just a test.</p>
+        *
+        * @name top
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS left of the first matched element.
+        * 
+        * @example $("p").left();
+        * @before <p>This is just a test.</p>
+        * @result "0px"
+        *
+        * @name left
+        * @type String
+        */
+        
+       /**
+        * Set the CSS left of every matched element. Be sure to include
+        * the "px" (or other unit of measurement) after the number that you 
+        * specify, otherwise you might get strange results.
+        * 
+        * @example $("p").left("20px");
+        * @before <p>This is just a test.</p>
+        * @result <p style="left:20px;">This is just a test.</p>
+        *
+        * @name left
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS position of the first matched element.
+        * 
+        * @example $("p").position();
+        * @before <p>This is just a test.</p>
+        * @result "static"
+        *
+        * @name position
+        * @type String
+        */
+        
+       /**
+        * Set the CSS position of every matched element.
+        * 
+        * @example $("p").position("relative");
+        * @before <p>This is just a test.</p>
+        * @result <p style="position:relative;">This is just a test.</p>
+        *
+        * @name position
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS float of the first matched element.
+        * 
+        * @example $("p").float();
+        * @before <p>This is just a test.</p>
+        * @result "none"
+        *
+        * @name float
+        * @type String
+        */
+        
+       /**
+        * Set the CSS float of every matched element.
+        * 
+        * @example $("p").float("left");
+        * @before <p>This is just a test.</p>
+        * @result <p style="float:left;">This is just a test.</p>
+        *
+        * @name float
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS overflow of the first matched element.
+        * 
+        * @example $("p").overflow();
+        * @before <p>This is just a test.</p>
+        * @result "none"
+        *
+        * @name overflow
+        * @type String
+        */
+        
+       /**
+        * Set the CSS overflow of every matched element.
+        * 
+        * @example $("p").overflow("auto");
+        * @before <p>This is just a test.</p>
+        * @result <p style="overflow:auto;">This is just a test.</p>
+        *
+        * @name overflow
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS color of the first matched element.
+        * 
+        * @example $("p").color();
+        * @before <p>This is just a test.</p>
+        * @result "black"
+        *
+        * @name color
+        * @type String
+        */
+        
+       /**
+        * Set the CSS color of every matched element.
+        * 
+        * @example $("p").color("blue");
+        * @before <p>This is just a test.</p>
+        * @result <p style="color:blue;">This is just a test.</p>
+        *
+        * @name color
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+        
+       /**
+        * Get the current CSS background of the first matched element.
+        * 
+        * @example $("p").background();
+        * @before <p>This is just a test.</p>
+        * @result ""
+        *
+        * @name background
+        * @type String
+        */
+        
+       /**
+        * Set the CSS background of every matched element.
+        * 
+        * @example $("p").background("blue");
+        * @before <p>This is just a test.</p>
+        * @result <p style="background:blue;">This is just a test.</p>
+        *
+        * @name background
+        * @type jQuery
+        * @param String val Set the CSS property to the specified value.
+        */
+       
+       css: "width,height,top,left,position,float,overflow,color,background".split(","),
+
+       attr: {
+               /**
+                * Get the current value of the first matched element.
+                * 
+                * @example $("input").val();
+                * @before <input type="text" value="some text"/>
+                * @result "some text"
+                *
+                * @name val
+                * @type String
+                */
+                
+               /**
+                * Set the value of every matched element.
+                * 
+                * @example $("input").value("test");
+                * @before <input type="text" value="some text"/>
+                * @result <input type="text" value="test"/>
+                *
+                * @name val
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               val: "value",
+               
+               /**
+                * Get the html contents of the first matched element.
+                * 
+                * @example $("div").html();
+                * @before <div><input/></div>
+                * @result <input/>
+                *
+                * @name html
+                * @type String
+                */
+                
+               /**
+                * Set the html contents of every matched element.
+                * 
+                * @example $("div").html("<b>new stuff</b>");
+                * @before <div><input/></div>
+                * @result <div><b>new stuff</b</div>
+                *
+                * @name html
+                * @type jQuery
+                * @param String val Set the html contents to the specified value.
+                */
+               html: "innerHTML",
+               
+               /**
+                * Get the current id of the first matched element.
+                * 
+                * @example $("input").id();
+                * @before <input type="text" id="test" value="some text"/>
+                * @result "test"
+                *
+                * @name id
+                * @type String
+                */
+                
+               /**
+                * Set the id of every matched element.
+                * 
+                * @example $("input").id("newid");
+                * @before <input type="text" id="test" value="some text"/>
+                * @result <input type="text" id="newid" value="some text"/>
+                *
+                * @name id
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               id: null,
+               
+               /**
+                * Get the current title of the first matched element.
+                * 
+                * @example $("img").title();
+                * @before <img src="test.jpg" title="my image"/>
+                * @result "my image"
+                *
+                * @name title
+                * @type String
+                */
+                
+               /**
+                * Set the title of every matched element.
+                * 
+                * @example $("img").title("new title");
+                * @before <img src="test.jpg" title="my image"/>
+                * @result <img src="test.jpg" title="new image"/>
+                *
+                * @name title
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               title: null,
+               
+               /**
+                * Get the current name of the first matched element.
+                * 
+                * @example $("input").name();
+                * @before <input type="text" name="username"/>
+                * @result "username"
+                *
+                * @name name
+                * @type String
+                */
+                
+               /**
+                * Set the name of every matched element.
+                * 
+                * @example $("input").name("user");
+                * @before <input type="text" name="username"/>
+                * @result <input type="text" name="user"/>
+                *
+                * @name name
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               name: null,
+               
+               /**
+                * Get the current href of the first matched element.
+                * 
+                * @example $("a").href();
+                * @before <a href="test.html">my link</a>
+                * @result "test.html"
+                *
+                * @name href
+                * @type String
+                */
+                
+               /**
+                * Set the href of every matched element.
+                * 
+                * @example $("a").href("test2.html");
+                * @before <a href="test.html">my link</a>
+                * @result <a href="test2.html">my link</a>
+                *
+                * @name href
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               href: null,
+               
+               /**
+                * Get the current src of the first matched element.
+                * 
+                * @example $("img").src();
+                * @before <img src="test.jpg" title="my image"/>
+                * @result "test.jpg"
+                *
+                * @name src
+                * @type String
+                */
+                
+               /**
+                * Set the src of every matched element.
+                * 
+                * @example $("img").src("test2.jpg");
+                * @before <img src="test.jpg" title="my image"/>
+                * @result <img src="test2.jpg" title="my image"/>
+                *
+                * @name src
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               src: null,
+               
+               /**
+                * Get the current rel of the first matched element.
+                * 
+                * @example $("a").rel();
+                * @before <a href="test.html" rel="nofollow">my link</a>
+                * @result "nofollow"
+                *
+                * @name rel
+                * @type String
+                */
+                
+               /**
+                * Set the rel of every matched element.
+                * 
+                * @example $("a").rel("nofollow");
+                * @before <a href="test.html">my link</a>
+                * @result <a href="test.html" rel="nofollow">my link</a>
+                *
+                * @name rel
+                * @type jQuery
+                * @param String val Set the property to the specified value.
+                */
+               rel: null
+       },
+       
+       axis: {
+               /**
+                * Get a set of elements containing the unique parents of the matched
+                * set of elements.
+                *
+                * @example $("p").parent()
+                * @before <div><p>Hello</p><p>Hello</p></div>
+                * @result [ <div><p>Hello</p><p>Hello</p></div> ]
+                *
+                * @name parent
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing the unique parents of the matched
+                * set of elements, and filtered by an expression.
+                *
+                * @example $("p").parent(".selected")
+                * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
+                * @result [ <div class="selected"><p>Hello Again</p></div> ]
+                *
+                * @name parent
+                * @type jQuery
+                * @param String expr An expression to filter the parents with
+                */
+               parent: "a.parentNode",
+
+               /**
+                * Get a set of elements containing the unique ancestors of the matched
+                * set of elements.
+                *
+                * @example $("span").ancestors()
+                * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
+                * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ] 
+                *
+                * @name ancestors
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing the unique ancestors of the matched
+                * set of elements, and filtered by an expression.
+                *
+                * @example $("span").ancestors("p")
+                * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
+                * @result [ <p><span>Hello</span></p> ] 
+                *
+                * @name ancestors
+                * @type jQuery
+                * @param String expr An expression to filter the ancestors with
+                */
+               ancestors: jQuery.parents,
+               
+               /**
+                * Get a set of elements containing the unique ancestors of the matched
+                * set of elements.
+                *
+                * @example $("span").ancestors()
+                * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
+                * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ] 
+                *
+                * @name parents
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing the unique ancestors of the matched
+                * set of elements, and filtered by an expression.
+                *
+                * @example $("span").ancestors("p")
+                * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
+                * @result [ <p><span>Hello</span></p> ] 
+                *
+                * @name parents
+                * @type jQuery
+                * @param String expr An expression to filter the ancestors with
+                */
+               parents: jQuery.parents,
+
+               /**
+                * Get a set of elements containing the unique next siblings of each of the 
+                * matched set of elements.
+                * 
+                * It only returns the very next sibling, not all next siblings.
+                *
+                * @example $("p").next()
+                * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
+                * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
+                *
+                * @name next
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing the unique next siblings of each of the 
+                * matched set of elements, and filtered by an expression.
+                * 
+                * It only returns the very next sibling, not all next siblings.
+                *
+                * @example $("p").next(".selected")
+                * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
+                * @result [ <p class="selected">Hello Again</p> ]
+                *
+                * @name next
+                * @type jQuery
+                * @param String expr An expression to filter the next Elements with
+                */
+               next: "jQuery.sibling(a).next",
+
+               /**
+                * Get a set of elements containing the unique previous siblings of each of the 
+                * matched set of elements.
+                * 
+                * It only returns the immediately previous sibling, not all previous siblings.
+                *
+                * @example $("p").previous()
+                * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
+                * @result [ <div><span>Hello Again</span></div> ]
+                *
+                * @name prev
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing the unique previous siblings of each of the 
+                * matched set of elements, and filtered by an expression.
+                * 
+                * It only returns the immediately previous sibling, not all previous siblings.
+                *
+                * @example $("p").previous(".selected")
+                * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
+                * @result [ <div><span>Hello</span></div> ]
+                *
+                * @name prev
+                * @type jQuery
+                * @param String expr An expression to filter the previous Elements with
+                */
+               prev: "jQuery.sibling(a).prev",
+
+               /**
+                * Get a set of elements containing all of the unique siblings of each of the 
+                * matched set of elements.
+                * 
+                * @example $("div").siblings()
+                * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
+                * @result [ <p>Hello</p>, <p>And Again</p> ]
+                *
+                * @name siblings
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing all of the unique siblings of each of the 
+                * matched set of elements, and filtered by an expression.
+                *
+                * @example $("div").siblings(".selected")
+                * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
+                * @result [ <p class="selected">Hello Again</p> ]
+                *
+                * @name siblings
+                * @type jQuery
+                * @param String expr An expression to filter the sibling Elements with
+                */
+               siblings: jQuery.sibling,
+               
+               
+               /**
+                * Get a set of elements containing all of the unique children of each of the 
+                * matched set of elements.
+                * 
+                * @example $("div").children()
+                * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
+                * @result [ <span>Hello Again</span> ]
+                *
+                * @name children
+                * @type jQuery
+                */
+
+               /**
+                * Get a set of elements containing all of the unique siblings of each of the 
+                * matched set of elements, and filtered by an expression.
+                *
+                * @example $("div").children(".selected")
+                * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
+                * @result [ <p class="selected">Hello Again</p> ]
+                *
+                * @name children
+                * @type jQuery
+                * @param String expr An expression to filter the child Elements with
+                */
+               children: "a.childNodes"
+       },
+
+       each: {
+               /**
+                * Displays each of the set of matched elements if they are hidden.
+                * 
+                * @example $("p").show()
+                * @before <p style="display: none">Hello</p>
+                * @result [ <p style="display: block">Hello</p> ]
+                *
+                * @name show
+                * @type jQuery
+                */
+               _show: function(){
+                       this.style.display = this.oldblock ? this.oldblock : "";
+                       if ( jQuery.css(this,"display") == "none" )
+                               this.style.display = "block";
+               },
+
+               /**
+                * Hides each of the set of matched elements if they are shown.
+                *
+                * @example $("p").hide()
+                * @before <p>Hello</p>
+                * @result [ <p style="display: none">Hello</p> ]
+                *
+                * @name hide
+                * @type jQuery
+                */
+               _hide: function(){
+                       this.oldblock = this.oldblock || jQuery.css(this,"display");
+                       if ( this.oldblock == "none" )
+                               this.oldblock = "block";
+                       this.style.display = "none";
+               },
+               
+               /**
+                * Toggles each of the set of matched elements. If they are shown,
+                * toggle makes them hidden. If they are hidden, toggle
+                * makes them shown.
+                *
+                * @example $("p").toggle()
+                * @before <p>Hello</p><p style="display: none">Hello Again</p>
+                * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
+                *
+                * @name toggle
+                * @type jQuery
+                */
+               _toggle: function(){
+                       var d = jQuery.css(this,"display");
+                       $(this)[ !d || d == "none" ? "show" : "hide" ]();
+               },
+               
+               /**
+                * Adds the specified class to each of the set of matched elements.
+                *
+                * @example ("p").addClass("selected")
+                * @before <p>Hello</p>
+                * @result [ <p class="selected">Hello</p> ]
+                * 
+                * @name addClass
+                * @type jQuery
+                * @param String class A CSS class to add to the elements
+                */
+               addClass: function(c){
+                       jQuery.className.add(this,c);
+               },
+               
+               /**
+                * The opposite of addClass. Removes the specified class from the
+                * set of matched elements.
+                *
+                * @example ("p").removeClass("selected")
+                * @before <p class="selected">Hello</p>
+                * @result [ <p>Hello</p> ]
+                *
+                * @name removeClass
+                * @type jQuery
+                * @param String class A CSS class to remove from the elements
+                */
+               removeClass: function(c){
+                       jQuery.className.remove(this,c);
+               },
+       
+               /**
+                * Adds the specified class if it is present. Remove it if it is
+                * not present.
+                *
+                * @example ("p").toggleClass("selected")
+                * @before <p>Hello</p><p class="selected">Hello Again</p>
+                * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
+                *
+                * @name toggleClass
+                * @type jQuery
+                * @param String class A CSS class with which to toggle the elements
+                */
+               toggleClass: function( c ){
+                       jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this,c);
+               },
+               
+               /**
+                * TODO: Document
+                */
+               remove: function(a){
+                       if ( !a || jQuery.filter( [this], a ).r )
+                               this.parentNode.removeChild( this );
+               },
+       
+               /**
+                * Removes all child nodes from the set of matched elements.
+                *
+                * @example ("p").empty()
+                * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
+                * @result [ <p></p> ]
+                *
+                * @name empty
+                * @type jQuery
+                */
+               empty: function(){
+                       while ( this.firstChild )
+                               this.removeChild( this.firstChild );
+               },
+               
+               /**
+                * Binds a particular event (like click) to a each of a set of match elements.
+                *
+                * @example $("p").bind( "click", function() { alert("Hello"); } )
+                * @before <p>Hello</p>
+                * @result [ <p>Hello</p> ]
+                *
+                * Cancel a default action and prevent it from bubbling by returning false
+                * from your function.
+                *
+                * @example $("form").bind( "submit", function() { return false; } )
+                *
+                * Cancel a default action by using the preventDefault method.
+                *
+                * @example $("form").bind( "submit", function() { e.preventDefault(); } )
+                *
+                * Stop an event from bubbling by using the stopPropogation method.
+                *
+                * @example $("form").bind( "submit", function() { e.stopPropogation(); } )
+                *
+                * @name bind
+                * @type jQuery
+                * @param String type An event type
+                * @param Function fn A function to bind to the event on each of the set of matched elements
+                */
+               bind: function( type, fn ) {
+                       if ( fn.constructor == String )
+                               fn = new Function("e", ( !fn.indexOf(".") ? "$(this)" : "return " ) + fn);
+                       jQuery.event.add( this, type, fn );
+               },
+               
+               /**
+                * The opposite of bind, removes a bound event from each of the matched
+                * elements. You must pass the identical function that was used in the original 
+                * bind method.
+                *
+                * @example $("p").unbind( "click", function() { alert("Hello"); } )
+                * @before <p onclick="alert('Hello');">Hello</p>
+                * @result [ <p>Hello</p> ]
+                *
+                * @name unbind
+                * @type jQuery
+                * @param String type An event type
+                * @param Function fn A function to unbind from the event on each of the set of matched elements
+                */
+                
+               /**
+                * Removes all bound events of a particular type from each of the matched
+                * elements.
+                *
+                * @example $("p").unbind( "click" )
+                * @before <p onclick="alert('Hello');">Hello</p>
+                * @result [ <p>Hello</p> ]
+                *
+                * @name unbind
+                * @type jQuery
+                * @param String type An event type
+                */
+                
+               /**
+                * Removes all bound events from each of the matched elements.
+                *
+                * @example $("p").unbind()
+                * @before <p onclick="alert('Hello');">Hello</p>
+                * @result [ <p>Hello</p> ]
+                *
+                * @name unbind
+                * @type jQuery
+                */
+               unbind: function( type, fn ) {
+                       jQuery.event.remove( this, type, fn );
+               },
+               
+               /**
+                * Trigger a type of event on every matched element.
+                *
+                * @example $("p").trigger("click")
+                * @before <p click="alert('hello')">Hello</p>
+                * @result alert('hello')
+                *
+                * @name trigger
+                * @type jQuery
+                * @param String type An event type to trigger.
+                */
+               trigger: function( type, data ) {
+                       jQuery.event.trigger( type, data, this );
+               }
+       }
+};