Added fix for jQuery.extend( Object, null || undefined ) lapsing back to just jQuery...
[jquery.git] / src / jquery / jquery.js
1 /*
2  * jQuery @VERSION - New Wave Javascript
3  *
4  * Copyright (c) 2006 John Resig (jquery.com)
5  * Dual licensed under the MIT (MIT-LICENSE.txt)
6  * and GPL (GPL-LICENSE.txt) licenses.
7  *
8  * $Date$
9  * $Rev$
10  */
11
12 // Global undefined variable
13 window.undefined = window.undefined;
14
15 /**
16  * Create a new jQuery Object
17  *
18  * @test ok( Array.prototype.push, "Array.push()" );
19  * ok( Function.prototype.apply, "Function.apply()" );
20  * ok( document.getElementById, "getElementById" );
21  * ok( document.getElementsByTagName, "getElementsByTagName" );
22  * ok( RegExp, "RegExp" );
23  * ok( jQuery, "jQuery" );
24  * ok( $, "$()" );
25  *
26  * @constructor
27  * @private
28  * @name jQuery
29  * @cat Core
30  */
31 function jQuery(a,c) {
32
33         // Shortcut for document ready (because $(document).each() is silly)
34         if ( a && typeof a == "function" && jQuery.fn.ready )
35                 return jQuery(document).ready(a);
36
37         // Make sure that a selection was provided
38         a = a || jQuery.context || document;
39
40         // Watch for when a jQuery object is passed as the selector
41         if ( a.jquery )
42                 return jQuery( jQuery.merge( a, [] ) );
43
44         // Watch for when a jQuery object is passed at the context
45         if ( c && c.jquery )
46                 return jQuery( c ).find(a);
47
48         // If the context is global, return a new object
49         if ( window == this )
50                 return new jQuery(a,c);
51
52         // Handle HTML strings
53         if ( a.constructor == String ) {
54                 var m = /^[^<]*(<.+>)[^>]*$/.exec(a);
55                 if ( m ) a = jQuery.clean( [ m[1] ] );
56         }
57
58         // Watch for when an array is passed in
59         this.get( a.constructor == Array || a.length && !a.nodeType && a[0] != undefined && a[0].nodeType ?
60                 // Assume that it is an array of DOM Elements
61                 jQuery.merge( a, [] ) :
62
63                 // Find the matching elements and save them for later
64                 jQuery.find( a, c ) );
65
66         // See if an extra function was provided
67         var fn = arguments[ arguments.length - 1 ];
68
69         // If so, execute it in context
70         if ( fn && typeof fn == "function" )
71                 this.each(fn);
72
73         return this;
74 }
75
76 // Map over the $ in case of overwrite
77 if ( typeof $ != "undefined" )
78         jQuery._$ = $;
79
80 /**
81  * This function accepts a string containing a CSS selector,
82  * basic XPath, or raw HTML, which is then used to match a set of elements.
83  * The HTML string is different from the traditional selectors in that
84  * it creates the DOM elements representing that HTML string, on the fly,
85  * to be (assumedly) inserted into the document later.
86  *
87  * The core functionality of jQuery centers around this function.
88  * Everything in jQuery is based upon this, or uses this in some way.
89  * The most basic use of this function is to pass in an expression
90  * (usually consisting of CSS or XPath), which then finds all matching
91  * elements and remembers them for later use.
92  *
93  * By default, $() looks for DOM elements within the context of the
94  * current HTML document.
95  *
96  * @example $("div > p")
97  * @desc This finds all p elements that are children of a div element.
98  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
99  * @result [ <p>two</p> ]
100  *
101  * @example $("<div><p>Hello</p></div>").appendTo("#body")
102  * @desc Creates a div element (and all of its contents) dynamically, 
103  * and appends it to the element with the ID of body. Internally, an
104  * element is created and it's innerHTML property set to the given markup.
105  * It is therefore both quite flexible and limited. 
106  *
107  * @name $
108  * @param String expr An expression to search with, or a string of HTML to create on the fly.
109  * @cat Core
110  * @type jQuery
111  */
112
113 /**
114  * This function accepts a string containing a CSS selector, or
115  * basic XPath, which is then used to match a set of elements with the
116  * context of the specified DOM element, or document
117  *
118  * @example $("div", xml.responseXML)
119  * @desc This finds all div elements within the specified XML document.
120  *
121  * @name $
122  * @param String expr An expression to search with.
123  * @param Element context A DOM Element, or Document, representing the base context.
124  * @cat Core
125  * @type jQuery
126  */
127
128 /**
129  * Wrap jQuery functionality around a specific DOM Element.
130  * This function also accepts XML Documents and Window objects
131  * as valid arguments (even though they are not DOM Elements).
132  *
133  * @example $(document).find("div > p")
134  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
135  * @result [ <p>two</p> ]
136  *
137  * @example $(document.body).background( "black" );
138  * @desc Sets the background color of the page to black.
139  *
140  * @name $
141  * @param Element elem A DOM element to be encapsulated by a jQuery object.
142  * @cat Core
143  * @type jQuery
144  */
145
146 /**
147  * Wrap jQuery functionality around a set of DOM Elements.
148  *
149  * @example $( myForm.elements ).hide()
150  * @desc Hides all the input elements within a form
151  *
152  * @name $
153  * @param Array<Element> elems An array of DOM elements to be encapsulated by a jQuery object.
154  * @cat Core
155  * @type jQuery
156  */
157
158 /**
159  * A shorthand for $(document).ready(), allowing you to bind a function
160  * to be executed when the DOM document has finished loading. This function
161  * behaves just like $(document).ready(), in that it should be used to wrap
162  * all of the other $() operations on your page. While this function is,
163  * technically, chainable - there really isn't much use for chaining against it.
164  * You can have as many $(document).ready events on your page as you like.
165  *
166  * @example $(function(){
167  *   // Document is ready
168  * });
169  * @desc Executes the function when the DOM is ready to be used.
170  *
171  * @name $
172  * @param Function fn The function to execute when the DOM is ready.
173  * @cat Core
174  * @type jQuery
175  */
176
177 /**
178  * A means of creating a cloned copy of a jQuery object. This function
179  * copies the set of matched elements from one jQuery object and creates
180  * another, new, jQuery object containing the same elements.
181  *
182  * @example var div = $("div");
183  * $( div ).find("p");
184  * @desc Locates all p elements with all div elements, without disrupting the original jQuery object contained in 'div' (as would normally be the case if a simple div.find("p") was done).
185  *
186  * @name $
187  * @param jQuery obj The jQuery object to be cloned.
188  * @cat Core
189  * @type jQuery
190  */
191
192 // Map the jQuery namespace to the '$' one
193 var $ = jQuery;
194
195 jQuery.fn = jQuery.prototype = {
196         /**
197          * The current version of jQuery.
198          *
199          * @private
200          * @property
201          * @name jquery
202          * @type String
203          * @cat Core
204          */
205         jquery: "@VERSION",
206
207         /**
208          * The number of elements currently matched.
209          *
210          * @example $("img").length;
211          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
212          * @result 2
213          *
214          * @test ok( $("div").length == 2, "Get Number of Elements Found" );
215          *
216          * @property
217          * @name length
218          * @type Number
219          * @cat Core
220          */
221
222         /**
223          * The number of elements currently matched.
224          *
225          * @example $("img").size();
226          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
227          * @result 2
228          *
229          * @test ok( $("div").size() == 2, "Get Number of Elements Found" );
230          *
231          * @name size
232          * @type Number
233          * @cat Core
234          */
235         size: function() {
236                 return this.length;
237         },
238
239         /**
240          * Access all matched elements. This serves as a backwards-compatible
241          * way of accessing all matched elements (other than the jQuery object
242          * itself, which is, in fact, an array of elements).
243          *
244          * @example $("img").get();
245          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
246          * @result [ <img src="test1.jpg"/> <img src="test2.jpg"/> ]
247          *
248          * @test isSet( $("div").get(), q("main","foo"), "Get All Elements" );
249          *
250          * @name get
251          * @type Array<Element>
252          * @cat Core
253          */
254
255         /**
256          * Access a single matched element. num is used to access the
257          * Nth element matched.
258          *
259          * @example $("img").get(1);
260          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
261          * @result [ <img src="test1.jpg"/> ]
262          *
263          * @test ok( $("div").get(0) == document.getElementById("main"), "Get A Single Element" );
264          *
265          * @name get
266          * @type Element
267          * @param Number num Access the element in the Nth position.
268          * @cat Core
269          */
270
271         /**
272          * Set the jQuery object to an array of elements.
273          *
274          * @example $("img").get([ document.body ]);
275          * @result $("img").get() == [ document.body ]
276          *
277          * @private
278          * @name get
279          * @type jQuery
280          * @param Elements elems An array of elements
281          * @cat Core
282          */
283         get: function( num ) {
284                 // Watch for when an array (of elements) is passed in
285                 if ( num && num.constructor == Array ) {
286
287                         // Use a tricky hack to make the jQuery object
288                         // look and feel like an array
289                         this.length = 0;
290                         [].push.apply( this, num );
291
292                         return this;
293                 } else
294                         return num == undefined ?
295
296                                 // Return a 'clean' array
297                                 jQuery.merge( this, [] ) :
298
299                                 // Return just the object
300                                 this[num];
301         },
302
303         /**
304          * Execute a function within the context of every matched element.
305          * This means that every time the passed-in function is executed
306          * (which is once for every element matched) the 'this' keyword
307          * points to the specific element.
308          *
309          * Additionally, the function, when executed, is passed a single
310          * argument representing the position of the element in the matched
311          * set.
312          *
313          * @example $("img").each(function(){
314          *   this.src = "test.jpg";
315          * });
316          * @before <img/> <img/>
317          * @result <img src="test.jpg"/> <img src="test.jpg"/>
318          *
319          * @example $("img").each(function(i){
320          *   alert( "Image #" + i + " is " + this );
321          * });
322          * @before <img/> <img/>
323          * @result <img src="test.jpg"/> <img src="test.jpg"/>
324          *
325          * @test var div = $("div");
326          * div.each(function(){this.foo = 'zoo';});
327          * var pass = true;
328          * for ( var i = 0; i < div.size(); i++ ) {
329          *   if ( div.get(i).foo != "zoo" ) pass = false;
330          * }
331          * ok( pass, "Execute a function, Relative" );
332          *
333          * @name each
334          * @type jQuery
335          * @param Function fn A function to execute
336          * @cat Core
337          */
338         each: function( fn, args ) {
339                 return jQuery.each( this, fn, args );
340         },
341
342         /**
343          * Searches every matched element for the object and returns
344          * the index of the element, if found, starting with zero. 
345          * Returns -1 if the object wasn't found.
346          *
347          * @example $("*").index(document.getElementById('foobar')) 
348          * @before <div id="foobar"></div><b></b><span id="foo"></span>
349          * @result 0
350          *
351          * @example $("*").index(document.getElementById('foo')) 
352          * @before <div id="foobar"></div><b></b><span id="foo"></span>
353          * @result 2
354          *
355          * @example $("*").index(document.getElementById('bar')) 
356          * @before <div id="foobar"></div><b></b><span id="foo"></span>
357          * @result -1
358          *
359          * @test ok( $([window, document]).index(window) == 0, "Check for index of elements" );
360          * ok( $([window, document]).index(document) == 1, "Check for index of elements" );
361          * var inputElements = $('#radio1,#radio2,#check1,#check2');
362          * ok( inputElements.index(document.getElementById('radio1')) == 0, "Check for index of elements" );
363          * ok( inputElements.index(document.getElementById('radio2')) == 1, "Check for index of elements" );
364          * ok( inputElements.index(document.getElementById('check1')) == 2, "Check for index of elements" );
365          * ok( inputElements.index(document.getElementById('check2')) == 3, "Check for index of elements" );
366          * ok( inputElements.index(window) == -1, "Check for not found index" );
367          * ok( inputElements.index(document) == -1, "Check for not found index" );
368          * 
369          * @name index
370          * @type Number
371          * @param Object obj Object to search for
372          * @cat Core
373          */
374         index: function( obj ) {
375                 var pos = -1;
376                 this.each(function(i){
377                         if ( this == obj ) pos = i;
378                 });
379                 return pos;
380         },
381
382         /**
383          * Access a property on the first matched element.
384          * This method makes it easy to retrieve a property value
385          * from the first matched element.
386          *
387          * @example $("img").attr("src");
388          * @before <img src="test.jpg"/>
389          * @result test.jpg
390          *
391          * @test ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
392          * ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
393          * ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
394          * ok( $('#check1').attr('type') == "checkbox", 'Check for type attribute' );
395          * ok( $('#simon1').attr('rel') == "bookmark", 'Check for rel attribute' );
396          * ok( $('#google').attr('title') == "Google!", 'Check for title attribute' );
397          * ok( $('#mark').attr('hreflang') == "en", 'Check for hreflang attribute' );
398          * ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
399          * ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
400          * ok( $('#name').attr('name') == "name", 'Check for name attribute' );
401          * ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
402          * ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
403          *
404          * @name attr
405          * @type Object
406          * @param String name The name of the property to access.
407          * @cat DOM
408          */
409
410         /**
411          * Set a hash of key/value object properties to all matched elements.
412          * This serves as the best way to set a large number of properties
413          * on all matched elements.
414          *
415          * @example $("img").attr({ src: "test.jpg", alt: "Test Image" });
416          * @before <img/>
417          * @result <img src="test.jpg" alt="Test Image"/>
418          *
419          * @test var pass = true;
420          * $("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
421          *   if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
422          * });
423          * ok( pass, "Set Multiple Attributes" );
424          *
425          * @name attr
426          * @type jQuery
427          * @param Hash prop A set of key/value pairs to set as object properties.
428          * @cat DOM
429          */
430
431         /**
432          * Set a single property to a value, on all matched elements.
433          *
434          * @example $("img").attr("src","test.jpg");
435          * @before <img/>
436          * @result <img src="test.jpg"/>
437          *
438          * @test var div = $("div");
439          * div.attr("foo", "bar");
440          * var pass = true;
441          * for ( var i = 0; i < div.size(); i++ ) {
442          *   if ( div.get(i).getAttribute('foo') != "bar" ) pass = false;
443          * }
444          * ok( pass, "Set Attribute" );
445          *
446          * $("#name").attr('name', 'something');
447          * ok( $("#name").name() == 'something', 'Set name attribute' );
448          * $("#check2").attr('checked', true);
449          * ok( document.getElementById('check2').checked == true, 'Set checked attribute' );
450          * $("#check2").attr('checked', false);
451          * ok( document.getElementById('check2').checked == false, 'Set checked attribute' );
452          *
453          * @test stop();
454          * $.get('data/dashboard.xml', function(xml) { 
455          *   var titles = [];
456          *   $('tab', xml).each(function() {
457          *     titles.push($(this).attr('title'));
458          *   });
459          *   ok( titles[0] == 'Location', 'attr() in XML context: Check first title' );
460          *   ok( titles[1] == 'Users', 'attr() in XML context: Check second title' );
461          *   start();
462          * });
463          *
464          * @name attr
465          * @type jQuery
466          * @param String key The name of the property to set.
467          * @param Object value The value to set the property to.
468          * @cat DOM
469          */
470         attr: function( key, value, type ) {
471                 // Check to see if we're setting style values
472                 return key.constructor != String || value != undefined ?
473                         this.each(function(){
474                                 // See if we're setting a hash of styles
475                                 if ( value == undefined )
476                                         // Set all the styles
477                                         for ( var prop in key )
478                                                 jQuery.attr(
479                                                         type ? this.style : this,
480                                                         prop, key[prop]
481                                                 );
482
483                                 // See if we're setting a single key/value style
484                                 else
485                                         jQuery.attr(
486                                                 type ? this.style : this,
487                                                 key, value
488                                         );
489                         }) :
490
491                         // Look for the case where we're accessing a style value
492                         jQuery[ type || "attr" ]( this[0], key );
493         },
494
495         /**
496          * Access a style property on the first matched element.
497          * This method makes it easy to retrieve a style property value
498          * from the first matched element.
499          *
500          * @example $("p").css("color");
501          * @before <p style="color:red;">Test Paragraph.</p>
502          * @result red
503          * @desc Retrieves the color style of the first paragraph
504          *
505          * @example $("p").css("fontWeight");
506          * @before <p style="font-weight: bold;">Test Paragraph.</p>
507          * @result bold
508          * @desc Retrieves the font-weight style of the first paragraph.
509          * Note that for all style properties with a dash (like 'font-weight'), you have to
510          * write it in camelCase. In other words: Every time you have a '-' in a 
511          * property, remove it and replace the next character with an uppercase 
512          * representation of itself. Eg. fontWeight, fontSize, fontFamily, borderWidth,
513          * borderStyle, borderBottomWidth etc.
514          *
515          * @test ok( $('#main').css("display") == 'none', 'Check for css property "display"');
516          *
517          * @name css
518          * @type Object
519          * @param String name The name of the property to access.
520          * @cat CSS
521          */
522
523         /**
524          * Set a hash of key/value style properties to all matched elements.
525          * This serves as the best way to set a large number of style properties
526          * on all matched elements.
527          *
528          * @example $("p").css({ color: "red", background: "blue" });
529          * @before <p>Test Paragraph.</p>
530          * @result <p style="color:red; background:blue;">Test Paragraph.</p>
531          *
532          * @test ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
533          * $('#foo').css({display: 'none'});
534          * ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
535          * $('#foo').css({display: 'block'});
536          * ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
537          * 
538          * @name css
539          * @type jQuery
540          * @param Hash prop A set of key/value pairs to set as style properties.
541          * @cat CSS
542          */
543
544         /**
545          * Set a single style property to a value, on all matched elements.
546          *
547          * @example $("p").css("color","red");
548          * @before <p>Test Paragraph.</p>
549          * @result <p style="color:red;">Test Paragraph.</p>
550          * @desc Changes the color of all paragraphs to red
551          *
552          *
553          * @test ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
554          * $('#foo').css('display', 'none');
555          * ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
556          * $('#foo').css('display', 'block');
557          * ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
558          *
559          * @name css
560          * @type jQuery
561          * @param String key The name of the property to set.
562          * @param Object value The value to set the property to.
563          * @cat CSS
564          */
565         css: function( key, value ) {
566                 return this.attr( key, value, "curCSS" );
567         },
568
569         /**
570          * Retrieve the text contents of all matched elements. The result is
571          * a string that contains the combined text contents of all matched
572          * elements. This method works on both HTML and XML documents.
573          *
574          * @example $("p").text();
575          * @before <p>Test Paragraph.</p>
576          * @result Test Paragraph.
577          *
578          * @test var expected = "This link has class=\"blog\": Simon Willison's Weblog";
579          * ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' );
580          *
581          * @name text
582          * @type String
583          * @cat DOM
584          */
585         text: function(e) {
586                 e = e || this;
587                 var t = "";
588                 for ( var j = 0; j < e.length; j++ ) {
589                         var r = e[j].childNodes;
590                         for ( var i = 0; i < r.length; i++ )
591                                 if ( r[i].nodeType != 8 )
592                                         t += r[i].nodeType != 1 ?
593                                                 r[i].nodeValue : jQuery.fn.text([ r[i] ]);
594                 }
595                 return t;
596         },
597
598         /**
599          * Wrap all matched elements with a structure of other elements.
600          * This wrapping process is most useful for injecting additional
601          * stucture into a document, without ruining the original semantic
602          * qualities of a document.
603          *
604          * This works by going through the first element
605          * provided (which is generated, on the fly, from the provided HTML)
606          * and finds the deepest ancestor element within its
607          * structure - it is that element that will en-wrap everything else.
608          *
609          * This does not work with elements that contain text. Any necessary text
610          * must be added after the wrapping is done.
611          *
612          * @example $("p").wrap("<div class='wrap'></div>");
613          * @before <p>Test Paragraph.</p>
614          * @result <div class='wrap'><p>Test Paragraph.</p></div>
615          * 
616          * @test var defaultText = 'Try them out:'
617          * var result = $('#first').wrap('<div class="red"><span></span></div>').text();
618          * ok( defaultText == result, 'Check for wrapping of on-the-fly html' );
619          * ok( $('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
620          *
621          * @name wrap
622          * @type jQuery
623          * @param String html A string of HTML, that will be created on the fly and wrapped around the target.
624          * @cat DOM/Manipulation
625          */
626
627         /**
628          * Wrap all matched elements with a structure of other elements.
629          * This wrapping process is most useful for injecting additional
630          * stucture into a document, without ruining the original semantic
631          * qualities of a document.
632          *
633          * This works by going through the first element
634          * provided and finding the deepest ancestor element within its
635          * structure - it is that element that will en-wrap everything else.
636          *
637          * This does not work with elements that contain text. Any necessary text
638          * must be added after the wrapping is done.
639          *
640          * @example $("p").wrap( document.getElementById('content') );
641          * @before <p>Test Paragraph.</p><div id="content"></div>
642          * @result <div id="content"><p>Test Paragraph.</p></div>
643          *
644          * @test var defaultText = 'Try them out:'
645          * var result = $('#first').wrap(document.getElementById('empty')).parent();
646          * ok( result.is('ol'), 'Check for element wrapping' );
647          * ok( result.text() == defaultText, 'Check for element wrapping' );
648          *
649          * @name wrap
650          * @type jQuery
651          * @param Element elem A DOM element that will be wrapped.
652          * @cat DOM/Manipulation
653          */
654         wrap: function() {
655                 // The elements to wrap the target around
656                 var a = jQuery.clean(arguments);
657
658                 // Wrap each of the matched elements individually
659                 return this.each(function(){
660                         // Clone the structure that we're using to wrap
661                         var b = a[0].cloneNode(true);
662
663                         // Insert it before the element to be wrapped
664                         this.parentNode.insertBefore( b, this );
665
666                         // Find the deepest point in the wrap structure
667                         while ( b.firstChild )
668                                 b = b.firstChild;
669
670                         // Move the matched element to within the wrap structure
671                         b.appendChild( this );
672                 });
673         },
674
675         /**
676          * Append any number of elements to the inside of every matched elements,
677          * generated from the provided HTML.
678          * This operation is similar to doing an appendChild to all the
679          * specified elements, adding them into the document.
680          *
681          * @example $("p").append("<b>Hello</b>");
682          * @before <p>I would like to say: </p>
683          * @result <p>I would like to say: <b>Hello</b></p>
684          *
685          * @test var defaultText = 'Try them out:'
686          * var result = $('#first').append('<b>buga</b>');
687          * ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
688          *
689          * @name append
690          * @type jQuery
691          * @param String html A string of HTML, that will be created on the fly and appended to the target.
692          * @cat DOM/Manipulation
693          */
694
695         /**
696          * Append an element to the inside of all matched elements.
697          * This operation is similar to doing an appendChild to all the
698          * specified elements, adding them into the document.
699          *
700          * @example $("p").append( $("#foo")[0] );
701          * @before <p>I would like to say: </p><b id="foo">Hello</b>
702          * @result <p>I would like to say: <b id="foo">Hello</b></p>
703          *
704          * @test var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
705          * $('#sap').append(document.getElementById('first'));
706          * ok( expected == $('#sap').text(), "Check for appending of element" );
707          *
708          * @name append
709          * @type jQuery
710          * @param Element elem A DOM element that will be appended.
711          * @cat DOM/Manipulation
712          */
713
714         /**
715          * Append any number of elements to the inside of all matched elements.
716          * This operation is similar to doing an appendChild to all the
717          * specified elements, adding them into the document.
718          *
719          * @example $("p").append( $("b") );
720          * @before <p>I would like to say: </p><b>Hello</b>
721          * @result <p>I would like to say: <b>Hello</b></p>
722          *
723          * @test var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
724          * $('#sap').append([document.getElementById('first'), document.getElementById('yahoo')]);
725          * ok( expected == $('#sap').text(), "Check for appending of array of elements" );
726          *
727          * @name append
728          * @type jQuery
729          * @param Array<Element> elems An array of elements, all of which will be appended.
730          * @cat DOM/Manipulation
731          */
732         append: function() {
733                 return this.domManip(arguments, true, 1, function(a){
734                         this.appendChild( a );
735                 });
736         },
737
738         /**
739          * Prepend any number of elements to the inside of every matched elements,
740          * generated from the provided HTML.
741          * This operation is the best way to insert dynamically created elements
742          * inside, at the beginning, of all the matched element.
743          *
744          * @example $("p").prepend("<b>Hello</b>");
745          * @before <p>I would like to say: </p>
746          * @result <p><b>Hello</b>I would like to say: </p>
747          *
748          * @test var defaultText = 'Try them out:'
749          * var result = $('#first').prepend('<b>buga</b>');
750          * ok( result.text() == 'buga' + defaultText, 'Check if text prepending works' );
751          *
752          * @name prepend
753          * @type jQuery
754          * @param String html A string of HTML, that will be created on the fly and appended to the target.
755          * @cat DOM/Manipulation
756          */
757
758         /**
759          * Prepend an element to the inside of all matched elements.
760          * This operation is the best way to insert an element inside, at the
761          * beginning, of all the matched element.
762          *
763          * @example $("p").prepend( $("#foo")[0] );
764          * @before <p>I would like to say: </p><b id="foo">Hello</b>
765          * @result <p><b id="foo">Hello</b>I would like to say: </p>
766          *       
767          * @test var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
768          * $('#sap').prepend(document.getElementById('first'));
769          * ok( expected == $('#sap').text(), "Check for prepending of element" );
770          *
771          * @name prepend
772          * @type jQuery
773          * @param Element elem A DOM element that will be appended.
774          * @cat DOM/Manipulation
775          */
776
777         /**
778          * Prepend any number of elements to the inside of all matched elements.
779          * This operation is the best way to insert a set of elements inside, at the
780          * beginning, of all the matched element.
781          *
782          * @example $("p").prepend( $("b") );
783          * @before <p>I would like to say: </p><b>Hello</b>
784          * @result <p><b>Hello</b>I would like to say: </p>
785          *
786          * @test var expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
787          * $('#sap').prepend([document.getElementById('first'), document.getElementById('yahoo')]);
788          * ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
789          *
790          * @name prepend
791          * @type jQuery
792          * @param Array<Element> elems An array of elements, all of which will be appended.
793          * @cat DOM/Manipulation
794          */
795         prepend: function() {
796                 return this.domManip(arguments, true, -1, function(a){
797                         this.insertBefore( a, this.firstChild );
798                 });
799         },
800
801         /**
802          * Insert any number of dynamically generated elements before each of the
803          * matched elements.
804          *
805          * @example $("p").before("<b>Hello</b>");
806          * @before <p>I would like to say: </p>
807          * @result <b>Hello</b><p>I would like to say: </p>
808          *
809          * @test var expected = 'This is a normal link: bugaYahoo';
810          * $('#yahoo').before('<b>buga</b>');
811          * ok( expected == $('#en').text(), 'Insert String before' );
812          *
813          * @name before
814          * @type jQuery
815          * @param String html A string of HTML, that will be created on the fly and appended to the target.
816          * @cat DOM/Manipulation
817          */
818
819         /**
820          * Insert an element before each of the matched elements.
821          *
822          * @example $("p").before( $("#foo")[0] );
823          * @before <p>I would like to say: </p><b id="foo">Hello</b>
824          * @result <b id="foo">Hello</b><p>I would like to say: </p>
825          *
826          * @test var expected = "This is a normal link: Try them out:Yahoo";
827          * $('#yahoo').before(document.getElementById('first'));
828          * ok( expected == $('#en').text(), "Insert element before" );
829          *
830          * @name before
831          * @type jQuery
832          * @param Element elem A DOM element that will be appended.
833          * @cat DOM/Manipulation
834          */
835
836         /**
837          * Insert any number of elements before each of the matched elements.
838          *
839          * @example $("p").before( $("b") );
840          * @before <p>I would like to say: </p><b>Hello</b>
841          * @result <b>Hello</b><p>I would like to say: </p>
842          *
843          * @test var expected = "This is a normal link: Try them out:diveintomarkYahoo";
844          * $('#yahoo').before([document.getElementById('first'), document.getElementById('mark')]);
845          * ok( expected == $('#en').text(), "Insert array of elements before" );
846          *
847          * @name before
848          * @type jQuery
849          * @param Array<Element> elems An array of elements, all of which will be appended.
850          * @cat DOM/Manipulation
851          */
852         before: function() {
853                 return this.domManip(arguments, false, 1, function(a){
854                         this.parentNode.insertBefore( a, this );
855                 });
856         },
857
858         /**
859          * Insert any number of dynamically generated elements after each of the
860          * matched elements.
861          *
862          * @example $("p").after("<b>Hello</b>");
863          * @before <p>I would like to say: </p>
864          * @result <p>I would like to say: </p><b>Hello</b>
865          *
866          * @test var expected = 'This is a normal link: Yahoobuga';
867          * $('#yahoo').after('<b>buga</b>');
868          * ok( expected == $('#en').text(), 'Insert String after' );
869          *
870          * @name after
871          * @type jQuery
872          * @param String html A string of HTML, that will be created on the fly and appended to the target.
873          * @cat DOM/Manipulation
874          */
875
876         /**
877          * Insert an element after each of the matched elements.
878          *
879          * @example $("p").after( $("#foo")[0] );
880          * @before <b id="foo">Hello</b><p>I would like to say: </p>
881          * @result <p>I would like to say: </p><b id="foo">Hello</b>
882          *
883          * @test var expected = "This is a normal link: YahooTry them out:";
884          * $('#yahoo').after(document.getElementById('first'));
885          * ok( expected == $('#en').text(), "Insert element after" );
886          *
887          * @name after
888          * @type jQuery
889          * @param Element elem A DOM element that will be appended.
890          * @cat DOM/Manipulation
891          */
892
893         /**
894          * Insert any number of elements after each of the matched elements.
895          *
896          * @example $("p").after( $("b") );
897          * @before <b>Hello</b><p>I would like to say: </p>
898          * @result <p>I would like to say: </p><b>Hello</b>
899          *
900          * @test var expected = "This is a normal link: YahooTry them out:diveintomark";
901          * $('#yahoo').after([document.getElementById('first'), document.getElementById('mark')]);
902          * ok( expected == $('#en').text(), "Insert array of elements after" );
903          *
904          * @name after
905          * @type jQuery
906          * @param Array<Element> elems An array of elements, all of which will be appended.
907          * @cat DOM/Manipulation
908          */
909         after: function() {
910                 return this.domManip(arguments, false, -1, function(a){
911                         this.parentNode.insertBefore( a, this.nextSibling );
912                 });
913         },
914
915         /**
916          * End the most recent 'destructive' operation, reverting the list of matched elements
917          * back to its previous state. After an end operation, the list of matched elements will
918          * revert to the last state of matched elements.
919          *
920          * @example $("p").find("span").end();
921          * @before <p><span>Hello</span>, how are you?</p>
922          * @result $("p").find("span").end() == [ <p>...</p> ]
923          *
924          * @test ok( 'Yahoo' == $('#yahoo').parent().end().text(), 'Check for end' );
925          *
926          * @name end
927          * @type jQuery
928          * @cat DOM/Traversing
929          */
930         end: function() {
931                 return this.get( this.stack.pop() );
932         },
933
934         /**
935          * Searches for all elements that match the specified expression.
936          * This method is the optimal way of finding additional descendant
937          * elements with which to process.
938          *
939          * All searching is done using a jQuery expression. The expression can be
940          * written using CSS 1-3 Selector syntax, or basic XPath.
941          *
942          * @example $("p").find("span");
943          * @before <p><span>Hello</span>, how are you?</p>
944          * @result $("p").find("span") == [ <span>Hello</span> ]
945          *
946          * @test ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' );
947          *
948          * @name find
949          * @type jQuery
950          * @param String expr An expression to search with.
951          * @cat DOM/Traversing
952          */
953         find: function(t) {
954                 return this.pushStack( jQuery.map( this, function(a){
955                         return jQuery.find(t,a);
956                 }), arguments );
957         },
958
959         /**
960          * Create cloned copies of all matched DOM Elements. This does
961          * not create a cloned copy of this particular jQuery object,
962          * instead it creates duplicate copies of all DOM Elements.
963          * This is useful for moving copies of the elements to another
964          * location in the DOM.
965          *
966          * @example $("b").clone().prependTo("p");
967          * @before <b>Hello</b><p>, how are you?</p>
968          * @result <b>Hello</b><p><b>Hello</b>, how are you?</p>
969          *
970          * @test ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
971          * var clone = $('#yahoo').clone();
972          * ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
973          * ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Reassert text for #en' );
974          *
975          * @name clone
976          * @type jQuery
977          * @cat DOM/Manipulation
978          */
979         clone: function(deep) {
980                 return this.pushStack( jQuery.map( this, function(a){
981                         return a.cloneNode( deep != undefined ? deep : true );
982                 }), arguments );
983         },
984
985         /**
986          * Removes all elements from the set of matched elements that do not
987          * match the specified expression. This method is used to narrow down
988          * the results of a search.
989          *
990          * All searching is done using a jQuery expression. The expression
991          * can be written using CSS 1-3 Selector syntax, or basic XPath.
992          *
993          * @example $("p").filter(".selected")
994          * @before <p class="selected">Hello</p><p>How are you?</p>
995          * @result $("p").filter(".selected") == [ <p class="selected">Hello</p> ]
996          *
997          * @test isSet( $("input").filter(":checked").get(), q("radio2", "check1"), "Filter elements" );
998          * @test $("input").filter(":checked",function(i){ 
999          *   ok( this == q("radio2", "check1")[i], "Filter elements, context" );
1000          * });
1001          * @test $("#main > p#ap > a").filter("#foobar",function(){},function(i){
1002          *   ok( this == q("google","groups", "mark")[i], "Filter elements, else context" );
1003          * });
1004          *
1005          * @name filter
1006          * @type jQuery
1007          * @param String expr An expression to search with.
1008          * @cat DOM/Traversing
1009          */
1010
1011         /**
1012          * Removes all elements from the set of matched elements that do not
1013          * match at least one of the expressions passed to the function. This
1014          * method is used when you want to filter the set of matched elements
1015          * through more than one expression.
1016          *
1017          * Elements will be retained in the jQuery object if they match at
1018          * least one of the expressions passed.
1019          *
1020          * @example $("p").filter([".selected", ":first"])
1021          * @before <p>Hello</p><p>Hello Again</p><p class="selected">And Again</p>
1022          * @result $("p").filter([".selected", ":first"]) == [ <p>Hello</p>, <p class="selected">And Again</p> ]
1023          *
1024          * @name filter
1025          * @type jQuery
1026          * @param Array<String> exprs A set of expressions to evaluate against
1027          * @cat DOM/Traversing
1028          */
1029         filter: function(t) {
1030                 return this.pushStack(
1031                         t.constructor == Array &&
1032                         jQuery.map(this,function(a){
1033                                 for ( var i = 0; i < t.length; i++ )
1034                                         if ( jQuery.filter(t[i],[a]).r.length )
1035                                                 return a;
1036                                 return false;
1037                         }) ||
1038
1039                         t.constructor == Boolean &&
1040                         ( t ? this.get() : [] ) ||
1041
1042                         typeof t == "function" &&
1043                         jQuery.grep( this, t ) ||
1044
1045                         jQuery.filter(t,this).r, arguments );
1046         },
1047
1048         /**
1049          * Removes the specified Element from the set of matched elements. This
1050          * method is used to remove a single Element from a jQuery object.
1051          *
1052          * @example $("p").not( document.getElementById("selected") )
1053          * @before <p>Hello</p><p id="selected">Hello Again</p>
1054          * @result [ <p>Hello</p> ]
1055          *
1056          * @name not
1057          * @type jQuery
1058          * @param Element el An element to remove from the set
1059          * @cat DOM/Traversing
1060          */
1061
1062         /**
1063          * Removes elements matching the specified expression from the set
1064          * of matched elements. This method is used to remove one or more
1065          * elements from a jQuery object.
1066          *
1067          * @example $("p").not("#selected")
1068          * @before <p>Hello</p><p id="selected">Hello Again</p>
1069          * @result [ <p>Hello</p> ]
1070          *
1071          * @test ok($("#main > p#ap > a").not("#google").length == 2, ".not")
1072          *
1073          * @name not
1074          * @type jQuery
1075          * @param String expr An expression with which to remove matching elements
1076          * @cat DOM/Traversing
1077          */
1078         not: function(t) {
1079                 return this.pushStack( t.constructor == String ?
1080                         jQuery.filter(t,this,false).r :
1081                         jQuery.grep(this,function(a){ return a != t; }), arguments );
1082         },
1083
1084         /**
1085          * Adds the elements matched by the expression to the jQuery object. This
1086          * can be used to concatenate the result sets of two expressions.
1087          *
1088          * @example $("p").add("span")
1089          * @before <p>Hello</p><p><span>Hello Again</span></p>
1090          * @result [ <p>Hello</p>, <span>Hello Again</span> ]
1091          *
1092          * @name add
1093          * @type jQuery
1094          * @param String expr An expression whose matched elements are added
1095          * @cat DOM/Traversing
1096          */
1097
1098         /**
1099          * Adds each of the Elements in the array to the set of matched elements.
1100          * This is used to add a set of Elements to a jQuery object.
1101          *
1102          * @example $("p").add([document.getElementById("a"), document.getElementById("b")])
1103          * @before <p>Hello</p><p><span id="a">Hello Again</span><span id="b">And Again</span></p>
1104          * @result [ <p>Hello</p>, <span id="a">Hello Again</span>, <span id="b">And Again</span> ]
1105          *
1106          * @name add
1107          * @type jQuery
1108          * @param Array<Element> els An array of Elements to add
1109          * @cat DOM/Traversing
1110          */
1111
1112         /**
1113          * Adds a single Element to the set of matched elements. This is used to
1114          * add a single Element to a jQuery object.
1115          *
1116          * @example $("p").add( document.getElementById("a") )
1117          * @before <p>Hello</p><p><span id="a">Hello Again</span></p>
1118          * @result [ <p>Hello</p>, <span id="a">Hello Again</span> ]
1119          *
1120          * @name add
1121          * @type jQuery
1122          * @param Element el An Element to add
1123          * @cat DOM/Traversing
1124          */
1125         add: function(t) {
1126                 return this.pushStack( jQuery.merge( this, t.constructor == String ?
1127                         jQuery.find(t) : t.constructor == Array ? t : [t] ), arguments );
1128         },
1129
1130         /**
1131          * Checks the current selection against an expression and returns true,
1132          * if the selection fits the given expression. Does return false, if the
1133          * selection does not fit or the expression is not valid.
1134          *
1135          * @example $("input[@type='checkbox']").parent().is("form")
1136          * @before <form><input type="checkbox" /></form>
1137          * @result true
1138          * @desc Returns true, because the parent of the input is a form element
1139          * 
1140          * @example $("input[@type='checkbox']").parent().is("form")
1141          * @before <form><p><input type="checkbox" /></p></form>
1142          * @result false
1143          * @desc Returns false, because the parent of the input is a p element
1144          *
1145          * @example $("form").is(null)
1146          * @before <form></form>
1147          * @result false
1148          * @desc An invalid expression always returns false.
1149          *
1150          * @test ok( $('#form').is('form'), 'Check for element: A form must be a form' );
1151          * ok( !$('#form').is('div'), 'Check for element: A form is not a div' );
1152          * ok( $('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
1153          * ok( !$('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
1154          * ok( $('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
1155          * ok( !$('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
1156          * ok( $('#en').is('[@lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
1157          * ok( !$('#en').is('[@lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
1158          * ok( $('#text1').is('[@type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
1159          * ok( !$('#text1').is('[@type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
1160          * ok( $('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
1161          * ok( !$('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
1162          * ok( $('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
1163          * ok( !$('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
1164          * ok( $('#foo').is('[p]'), 'Check for child: Expected a child "p" element' );
1165          * ok( !$('#foo').is('[ul]'), 'Check for child: Did not expect "ul" element' );
1166          * ok( $('#foo').is('[p][a][code]'), 'Check for childs: Expected "p", "a" and "code" child elements' );
1167          * ok( !$('#foo').is('[p][a][code][ol]'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
1168          * ok( !$('#foo').is(0), 'Expected false for an invalid expression - 0' );
1169          * ok( !$('#foo').is(null), 'Expected false for an invalid expression - null' );
1170          * ok( !$('#foo').is(''), 'Expected false for an invalid expression - ""' );
1171          * ok( !$('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
1172          *
1173          * @name is
1174          * @type Boolean
1175          * @param String expr The expression with which to filter
1176          * @cat DOM/Traversing
1177          */
1178         is: function(expr) {
1179                 return expr ? jQuery.filter(expr,this).r.length > 0 : false;
1180         },
1181         
1182         /**
1183          *
1184          *
1185          * @private
1186          * @name domManip
1187          * @param Array args
1188          * @param Boolean table
1189          * @param Number int
1190          * @param Function fn The function doing the DOM manipulation.
1191          * @type jQuery
1192          * @cat Core
1193          */
1194         domManip: function(args, table, dir, fn){
1195                 var clone = this.size() > 1;
1196                 var a = jQuery.clean(args);
1197
1198                 return this.each(function(){
1199                         var obj = this;
1200
1201                         if ( table && this.nodeName.toUpperCase() == "TABLE" && a[0].nodeName.toUpperCase() != "THEAD" ) {
1202                                 var tbody = this.getElementsByTagName("tbody");
1203
1204                                 if ( !tbody.length ) {
1205                                         obj = document.createElement("tbody");
1206                                         this.appendChild( obj );
1207                                 } else
1208                                         obj = tbody[0];
1209                         }
1210
1211                         for ( var i = ( dir < 0 ? a.length - 1 : 0 );
1212                                 i != ( dir < 0 ? dir : a.length ); i += dir ) {
1213                                         fn.apply( obj, [ clone ? a[i].cloneNode(true) : a[i] ] );
1214                         }
1215                 });
1216         },
1217
1218         /**
1219          *
1220          *
1221          * @private
1222          * @name pushStack
1223          * @param Array a
1224          * @param Array args
1225          * @type jQuery
1226          * @cat Core
1227          */
1228         pushStack: function(a,args) {
1229                 var fn = args && args[args.length-1];
1230                 var fn2 = args && args[args.length-2];
1231                 
1232                 if ( fn && fn.constructor != Function ) fn = null;
1233                 if ( fn2 && fn2.constructor != Function ) fn2 = null;
1234
1235                 if ( !fn ) {
1236                         if ( !this.stack ) this.stack = [];
1237                         this.stack.push( this.get() );
1238                         this.get( a );
1239                 } else {
1240                         var old = this.get();
1241                         this.get( a );
1242
1243                         if ( fn2 && a.length || !fn2 )
1244                                 this.each( fn2 || fn ).get( old );
1245                         else
1246                                 this.get( old ).each( fn );
1247                 }
1248
1249                 return this;
1250         }
1251 };
1252
1253 /**
1254  * Extends the jQuery object itself. Can be used to add both static
1255  * functions and plugin methods.
1256  * 
1257  * @example $.fn.extend({
1258  *   check: function() {
1259  *     this.each(function() { this.checked = true; });
1260  *   ),
1261  *   uncheck: function() {
1262  *     this.each(function() { this.checked = false; });
1263  *   }
1264  * });
1265  * $("input[@type=checkbox]").check();
1266  * $("input[@type=radio]").uncheck();
1267  * @desc Adds two plugin methods.
1268  *
1269  * @private
1270  * @name extend
1271  * @param Object obj
1272  * @type Object
1273  * @cat Core
1274  */
1275
1276 /**
1277  * Extend one object with another, returning the original,
1278  * modified, object. This is a great utility for simple inheritance.
1279  * 
1280  * @example var settings = { validate: false, limit: 5, name: "foo" };
1281  * var options = { validate: true, name: "bar" };
1282  * jQuery.extend(settings, options);
1283  * @result settings == { validate: true, limit: 5, name: "bar" }
1284  *
1285  * @test var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" };
1286  * var options =     { xnumber2: 1, xstring2: "x", xxx: "newstring" };
1287  * var optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" };
1288  * var merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" };
1289  * jQuery.extend(settings, options);
1290  * isSet( settings, merged, "Check if extended: settings must be extended" );
1291  * isSet ( options, optionsCopy, "Check if not modified: options must not be modified" );
1292  *
1293  * @name $.extend
1294  * @param Object obj The object to extend
1295  * @param Object prop The object that will be merged into the first.
1296  * @type Object
1297  * @cat Javascript
1298  */
1299 jQuery.extend = jQuery.fn.extend = function(obj,prop) {
1300         // Watch for the case where null or undefined gets passed in by accident
1301         if ( arguments.length > 1 && (prop === null || prop == undefined) )
1302                 return obj;
1303
1304         // If no property object was provided, then we're extending jQuery
1305         if ( !prop ) { prop = obj; obj = this; }
1306
1307         // Extend the base object
1308         for ( var i in prop ) obj[i] = prop[i];
1309
1310         // Return the modified object
1311         return obj;
1312 };
1313
1314 jQuery.extend({
1315         /**
1316          * @private
1317          * @name init
1318          * @type undefined
1319          * @cat Core
1320          */
1321         init: function(){
1322                 jQuery.initDone = true;
1323
1324                 jQuery.each( jQuery.macros.axis, function(i,n){
1325                         jQuery.fn[ i ] = function(a) {
1326                                 var ret = jQuery.map(this,n);
1327                                 if ( a && a.constructor == String )
1328                                         ret = jQuery.filter(a,ret).r;
1329                                 return this.pushStack( ret, arguments );
1330                         };
1331                 });
1332
1333                 jQuery.each( jQuery.macros.to, function(i,n){
1334                         jQuery.fn[ i ] = function(){
1335                                 var a = arguments;
1336                                 return this.each(function(){
1337                                         for ( var j = 0; j < a.length; j++ )
1338                                                 jQuery(a[j])[n]( this );
1339                                 });
1340                         };
1341                 });
1342
1343                 jQuery.each( jQuery.macros.each, function(i,n){
1344                         jQuery.fn[ i ] = function() {
1345                                 return this.each( n, arguments );
1346                         };
1347                 });
1348
1349                 jQuery.each( jQuery.macros.filter, function(i,n){
1350                         jQuery.fn[ n ] = function(num,fn) {
1351                                 return this.filter( ":" + n + "(" + num + ")", fn );
1352                         };
1353                 });
1354
1355                 jQuery.each( jQuery.macros.attr, function(i,n){
1356                         n = n || i;
1357                         jQuery.fn[ i ] = function(h) {
1358                                 return h == undefined ?
1359                                         this.length ? this[0][n] : null :
1360                                         this.attr( n, h );
1361                         };
1362                 });
1363
1364                 jQuery.each( jQuery.macros.css, function(i,n){
1365                         jQuery.fn[ n ] = function(h) {
1366                                 return h == undefined ?
1367                                         ( this.length ? jQuery.css( this[0], n ) : null ) :
1368                                         this.css( n, h );
1369                         };
1370                 });
1371
1372         },
1373
1374         /**
1375          * A generic iterator function, which can be used to seemlessly
1376          * iterate over both objects and arrays. This function is not the same
1377          * as $().each() - which is used to iterate, exclusively, over a jQuery
1378          * object. This function can be used to iterate over anything.
1379          *
1380          * @example $.each( [0,1,2], function(i){
1381          *   alert( "Item #" + i + ": " + this );
1382          * });
1383          * @desc This is an example of iterating over the items in an array, accessing both the current item and its index.
1384          *
1385          * @example $.each( { name: "John", lang: "JS" }, function(i){
1386          *   alert( "Name: " + i + ", Value: " + this );
1387          * });
1388          * @desc This is an example of iterating over the properties in an Object, accessing both the current item and its key.
1389          *
1390          * @name $.each
1391          * @param Object obj The object, or array, to iterate over.
1392          * @param Function fn The function that will be executed on every object.
1393          * @type Object
1394          * @cat Javascript
1395          */
1396         each: function( obj, fn, args ) {
1397                 if ( obj.length == undefined )
1398                         for ( var i in obj )
1399                                 fn.apply( obj[i], args || [i, obj[i]] );
1400                 else
1401                         for ( var i = 0; i < obj.length; i++ )
1402                                 if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break;
1403                 return obj;
1404         },
1405
1406         className: {
1407                 add: function(o,c){
1408                         if (jQuery.className.has(o,c)) return;
1409                         o.className += ( o.className ? " " : "" ) + c;
1410                 },
1411                 remove: function(o,c){
1412                         if( !c ) {
1413                                 o.className = "";
1414                         } else {
1415                                 var classes = o.className.split(" ");
1416                                 for(var i=0; i<classes.length; i++) {
1417                                         if(classes[i] == c) {
1418                                                 classes.splice(i, 1);
1419                                                 break;
1420                                         }
1421                                 }
1422                                 o.className = classes.join(' ');
1423                         }
1424                 },
1425                 has: function(e,a) {
1426                         if ( e.className != undefined )
1427                                 e = e.className;
1428                         return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
1429                 }
1430         },
1431
1432         /**
1433          * Swap in/out style options.
1434          * @private
1435          */
1436         swap: function(e,o,f) {
1437                 for ( var i in o ) {
1438                         e.style["old"+i] = e.style[i];
1439                         e.style[i] = o[i];
1440                 }
1441                 f.apply( e, [] );
1442                 for ( var i in o )
1443                         e.style[i] = e.style["old"+i];
1444         },
1445
1446         css: function(e,p) {
1447                 if ( p == "height" || p == "width" ) {
1448                         var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"];
1449
1450                         for ( var i in d ) {
1451                                 old["padding" + d[i]] = 0;
1452                                 old["border" + d[i] + "Width"] = 0;
1453                         }
1454
1455                         jQuery.swap( e, old, function() {
1456                                 if (jQuery.css(e,"display") != "none") {
1457                                         oHeight = e.offsetHeight;
1458                                         oWidth = e.offsetWidth;
1459                                 } else {
1460                                         e = jQuery(e.cloneNode(true)).css({
1461                                                 visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0"
1462                                         }).appendTo(e.parentNode)[0];
1463
1464                                         var parPos = jQuery.css(e.parentNode,"position");
1465                                         if ( parPos == "" || parPos == "static" )
1466                                                 e.parentNode.style.position = "relative";
1467
1468                                         oHeight = e.clientHeight;
1469                                         oWidth = e.clientWidth;
1470
1471                                         if ( parPos == "" || parPos == "static" )
1472                                                 e.parentNode.style.position = "static";
1473
1474                                         e.parentNode.removeChild(e);
1475                                 }
1476                         });
1477
1478                         return p == "height" ? oHeight : oWidth;
1479                 }
1480
1481                 return jQuery.curCSS( e, p );
1482         },
1483
1484         curCSS: function(elem, prop, force) {
1485                 var ret;
1486                 
1487                 if (prop == 'opacity' && jQuery.browser.msie)
1488                         return jQuery.attr(elem.style, 'opacity');
1489                         
1490                 if (prop == "float" || prop == "cssFloat")
1491                     prop = jQuery.browser.msie ? "styleFloat" : "cssFloat";
1492
1493                 if (!force && elem.style[prop]) {
1494
1495                         ret = elem.style[prop];
1496
1497                 } else if (elem.currentStyle) {
1498
1499                         var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});
1500                         ret = elem.currentStyle[prop] || elem.currentStyle[newProp];
1501
1502                 } else if (document.defaultView && document.defaultView.getComputedStyle) {
1503
1504                         prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase();
1505                         var cur = document.defaultView.getComputedStyle(elem, null);
1506
1507                         if ( cur )
1508                                 ret = cur.getPropertyValue(prop);
1509                         else if ( prop == 'display' )
1510                                 ret = 'none';
1511                         else
1512                                 jQuery.swap(elem, { display: 'block' }, function() {
1513                                         ret = document.defaultView.getComputedStyle(this,null).getPropertyValue(prop);
1514                                 });
1515
1516                 }
1517
1518                 return ret;
1519         },
1520
1521         clean: function(a) {
1522                 var r = [];
1523                 for ( var i = 0; i < a.length; i++ ) {
1524                         if ( a[i].constructor == String ) {
1525                                 // trim whitespace, otherwise indexOf won't work as expected
1526                                 a[i] = jQuery.trim(a[i]);
1527                                 
1528                                 var table = "";
1529
1530                                 if ( !a[i].indexOf("<thead") || !a[i].indexOf("<tbody") ) {
1531                                         table = "thead";
1532                                         a[i] = "<table>" + a[i] + "</table>";
1533                                 } else if ( !a[i].indexOf("<tr") ) {
1534                                         table = "tr";
1535                                         a[i] = "<table>" + a[i] + "</table>";
1536                                 } else if ( !a[i].indexOf("<td") || !a[i].indexOf("<th") ) {
1537                                         table = "td";
1538                                         a[i] = "<table><tbody><tr>" + a[i] + "</tr></tbody></table>";
1539                                 }
1540
1541                                 var div = document.createElement("div");
1542                                 div.innerHTML = a[i];
1543
1544                                 if ( table ) {
1545                                         div = div.firstChild;
1546                                         if ( table != "thead" ) div = div.firstChild;
1547                                         if ( table == "td" ) div = div.firstChild;
1548                                 }
1549
1550                                 for ( var j = 0; j < div.childNodes.length; j++ )
1551                                         r.push( div.childNodes[j] );
1552                                 } else if ( a[i].jquery || a[i].length && !a[i].nodeType )
1553                                         for ( var k = 0; k < a[i].length; k++ )
1554                                                 r.push( a[i][k] );
1555                                 else if ( a[i] !== null )
1556                                         r.push( a[i].nodeType ? a[i] : document.createTextNode(a[i].toString()) );
1557                 }
1558                 return r;
1559         },
1560
1561         expr: {
1562                 "": "m[2]== '*'||a.nodeName.toUpperCase()==m[2].toUpperCase()",
1563                 "#": "a.getAttribute('id')&&a.getAttribute('id')==m[2]",
1564                 ":": {
1565                         // Position Checks
1566                         lt: "i<m[3]-0",
1567                         gt: "i>m[3]-0",
1568                         nth: "m[3]-0==i",
1569                         eq: "m[3]-0==i",
1570                         first: "i==0",
1571                         last: "i==r.length-1",
1572                         even: "i%2==0",
1573                         odd: "i%2",
1574
1575                         // Child Checks
1576                         "nth-child": "jQuery.sibling(a,m[3]).cur",
1577                         "first-child": "jQuery.sibling(a,0).cur",
1578                         "last-child": "jQuery.sibling(a,0).last",
1579                         "only-child": "jQuery.sibling(a).length==1",
1580
1581                         // Parent Checks
1582                         parent: "a.childNodes.length",
1583                         empty: "!a.childNodes.length",
1584
1585                         // Text Check
1586                         contains: "jQuery.fn.text.apply([a]).indexOf(m[3])>=0",
1587
1588                         // Visibility
1589                         visible: "a.type!='hidden'&&jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!='hidden'",
1590                         hidden: "a.type=='hidden'||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')=='hidden'",
1591
1592                         // Form attributes
1593                         enabled: "!a.disabled",
1594                         disabled: "a.disabled",
1595                         checked: "a.checked",
1596                         selected: "a.selected || jQuery.attr(a, 'selected')",
1597
1598                         // Form elements
1599                         text: "a.type=='text'",
1600                         radio: "a.type=='radio'",
1601                         checkbox: "a.type=='checkbox'",
1602                         file: "a.type=='file'",
1603                         password: "a.type=='password'",
1604                         submit: "a.type=='submit'",
1605                         image: "a.type=='image'",
1606                         reset: "a.type=='reset'",
1607                         button: "a.type=='button'",
1608                         input: "a.nodeName.toLowerCase().match(/input|select|textarea|button/)"
1609                 },
1610                 ".": "jQuery.className.has(a,m[2])",
1611                 "@": {
1612                         "=": "z==m[4]",
1613                         "!=": "z!=m[4]",
1614                         "^=": "z && !z.indexOf(m[4])",
1615                         "$=": "z && z.substr(z.length - m[4].length,m[4].length)==m[4]",
1616                         "*=": "z && z.indexOf(m[4])>=0",
1617                         "": "z"
1618                 },
1619                 "[": "jQuery.find(m[2],a).length"
1620         },
1621
1622         token: [
1623                 "\\.\\.|/\\.\\.", "a.parentNode",
1624                 ">|/", "jQuery.sibling(a.firstChild)",
1625                 "\\+", "jQuery.sibling(a).next",
1626                 "~", function(a){
1627                         var r = [];
1628                         var s = jQuery.sibling(a);
1629                         if ( s.n > 0 )
1630                                 for ( var i = s.n; i < s.length; i++ )
1631                                         r.push( s[i] );
1632                         return r;
1633                 }
1634         ],
1635
1636         /**
1637          *
1638          * @test t( "Element Selector", "div", ["main","foo"] );
1639          * t( "Element Selector", "body", ["body"] );
1640          * t( "Element Selector", "html", ["html"] );
1641          * ok( $("*").size() >= 30, "Element Selector" );
1642          * t( "Parent Element", "div div", ["foo"] );
1643          *
1644          * t( "ID Selector", "#body", ["body"] );
1645          * t( "ID Selector w/ Element", "body#body", ["body"] );
1646          * t( "ID Selector w/ Element", "ul#first", [] );
1647          *
1648          * t( "Class Selector", ".blog", ["mark","simon"] );
1649          * t( "Class Selector", ".blog.link", ["simon"] );
1650          * t( "Class Selector w/ Element", "a.blog", ["mark","simon"] );
1651          * t( "Parent Class Selector", "p .blog", ["mark","simon"] );
1652          *
1653          * t( "Comma Support", "a.blog, div", ["mark","simon","main","foo"] );
1654          * t( "Comma Support", "a.blog , div", ["mark","simon","main","foo"] );
1655          * t( "Comma Support", "a.blog ,div", ["mark","simon","main","foo"] );
1656          * t( "Comma Support", "a.blog,div", ["mark","simon","main","foo"] );
1657          *
1658          * t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
1659          * t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
1660          * t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
1661          * t( "Child", "p>a", ["simon1","google","groups","mark","yahoo","simon"] );
1662          * t( "Child w/ Class", "p > a.blog", ["mark","simon"] );
1663          * t( "All Children", "code > *", ["anchor1","anchor2"] );
1664          * t( "All Grandchildren", "p > * > *", ["anchor1","anchor2"] );
1665          * t( "Adjacent", "a + a", ["groups"] );
1666          * t( "Adjacent", "a +a", ["groups"] );
1667          * t( "Adjacent", "a+ a", ["groups"] );
1668          * t( "Adjacent", "a+a", ["groups"] );
1669          * t( "Adjacent", "p + p", ["ap","en","sap"] );
1670          * t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
1671          * t( "First Child", "p:first-child", ["firstp","sndp"] );
1672          * t( "Attribute Exists", "a[@title]", ["google"] );
1673          * t( "Attribute Exists", "*[@title]", ["google"] );
1674          * t( "Attribute Exists", "[@title]", ["google"] );
1675          * 
1676          * t( "Non-existing part of attribute", "[@name*=bla]", [] ); 
1677          * t( "Non-existing start of attribute", "[@name^=bla]", [] ); 
1678          * t( "Non-existing end of attribute", "[@name$=bla]", [] ); 
1679          *
1680          * t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] );
1681          * t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] );
1682          * t( "Attribute Equals", "a[@rel=bookmark]", ["simon1"] );
1683          * t( "Multiple Attribute Equals", "input[@type='hidden'],input[@type='radio']", ["hidden1","radio1","radio2"] );
1684          * t( "Multiple Attribute Equals", "input[@type=\"hidden\"],input[@type='radio']", ["hidden1","radio1","radio2"] );
1685          * t( "Multiple Attribute Equals", "input[@type=hidden],input[@type=radio]", ["hidden1","radio1","radio2"] );
1686          *
1687          * t( "Attribute Begins With", "a[@href ^= 'http://www']", ["google","yahoo"] );
1688          * t( "Attribute Ends With", "a[@href $= 'org/']", ["mark"] );
1689          * t( "Attribute Contains", "a[@href *= 'google']", ["google","groups"] );
1690          * t( "First Child", "p:first-child", ["firstp","sndp"] );
1691          * t( "Last Child", "p:last-child", ["sap"] );
1692          * t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
1693          * t( "Empty", "ul:empty", ["firstUL"] );
1694          * t( "Enabled UI Element", "input:enabled", ["text1","radio1","radio2","check1","check2","hidden1","hidden2","name"] );
1695          * t( "Disabled UI Element", "input:disabled", ["text2"] );
1696          * t( "Checked UI Element", "input:checked", ["radio2","check1"] );
1697          * t( "Selected Option Element", "option:selected", ["option1a","option2d","option3b","option3c"] );
1698          * t( "Text Contains", "a:contains('Google')", ["google","groups"] );
1699          * t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
1700          * t( "Element Preceded By", "p ~ div", ["foo"] );
1701          * t( "Not", "a.blog:not(.link)", ["mark"] );
1702          *
1703          * ok( jQuery.find("//*").length >= 30, "All Elements (//*)" );
1704          * t( "All Div Elements", "//div", ["main","foo"] );
1705          * t( "Absolute Path", "/html/body", ["body"] );
1706          * t( "Absolute Path w/ *", "/* /body", ["body"] );
1707          * t( "Long Absolute Path", "/html/body/dl/div/div/p", ["sndp","en","sap"] );
1708          * t( "Absolute and Relative Paths", "/html//div", ["main","foo"] );
1709          * t( "All Children, Explicit", "//code/*", ["anchor1","anchor2"] );
1710          * t( "All Children, Implicit", "//code/", ["anchor1","anchor2"] );
1711          * t( "Attribute Exists", "//a[@title]", ["google"] );
1712          * t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
1713          * t( "Parent Axis", "//p/..", ["main","foo"] );
1714          * t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","sndp","en","sap"] );
1715          * t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","sndp","en","sap"] );
1716          * t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] );
1717          *
1718          * t( "nth Element", "p:nth(1)", ["ap"] );
1719          * t( "First Element", "p:first", ["firstp"] );
1720          * t( "Last Element", "p:last", ["first"] );
1721          * t( "Even Elements", "p:even", ["firstp","sndp","sap"] );
1722          * t( "Odd Elements", "p:odd", ["ap","en","first"] );
1723          * t( "Position Equals", "p:eq(1)", ["ap"] );
1724          * t( "Position Greater Than", "p:gt(0)", ["ap","sndp","en","sap","first"] );
1725          * t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] );
1726          * t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
1727          * t( "Is Visible", "input:visible", ["text1","text2","radio1","radio2","check1","check2","name"] );
1728          * t( "Is Hidden", "input:hidden", ["hidden1","hidden2"] );
1729          *
1730          * t( "Grouped Form Elements", "input[@name='foo[bar]']", ["hidden2"] );
1731          *
1732          * t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"]  );
1733          * t( "All Children of ID with no children", "#firstUL/*", []  );
1734          *
1735          * t( "Form element :input", ":input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "button", "area1", "select1", "select2", "select3"] );
1736          * t( "Form element :radio", ":radio", ["radio1", "radio2"] );
1737          * t( "Form element :checkbox", ":checkbox", ["check1", "check2"] );
1738          * t( "Form element :text", ":text", ["text1", "text2", "hidden2", "name"] );
1739          * t( "Form element :radio:checked", ":radio:checked", ["radio2"] );
1740          * t( "Form element :checkbox:checked", ":checkbox:checked", ["check1"] );
1741          * t( "Form element :checkbox:checked, :radio:checked", ":checkbox:checked, :radio:checked", ["check1", "radio2"] );
1742          *
1743          * t( ":not() Existing attribute", "select:not([@multiple])", ["select1", "select2"]);
1744          * t( ":not() Equals attribute", "select:not([@name=select1])", ["select2", "select3"]);
1745          * t( ":not() Equals quoted attribute", "select:not([@name='select1'])", ["select2", "select3"]);
1746          *
1747          * @name $.find
1748          * @type Array<Element>
1749          * @private
1750          * @cat Core
1751          */
1752         find: function( t, context ) {
1753                 // Make sure that the context is a DOM Element
1754                 if ( context && context.nodeType == undefined )
1755                         context = null;
1756
1757                 // Set the correct context (if none is provided)
1758                 context = context || jQuery.context || document;
1759
1760                 if ( t.constructor != String ) return [t];
1761
1762                 if ( !t.indexOf("//") ) {
1763                         context = context.documentElement;
1764                         t = t.substr(2,t.length);
1765                 } else if ( !t.indexOf("/") ) {
1766                         context = context.documentElement;
1767                         t = t.substr(1,t.length);
1768                         // FIX Assume the root element is right :(
1769                         if ( t.indexOf("/") >= 1 )
1770                                 t = t.substr(t.indexOf("/"),t.length);
1771                 }
1772
1773                 var ret = [context];
1774                 var done = [];
1775                 var last = null;
1776
1777                 while ( t.length > 0 && last != t ) {
1778                         var r = [];
1779                         last = t;
1780
1781                         t = jQuery.trim(t).replace( /^\/\//i, "" );
1782
1783                         var foundToken = false;
1784
1785                         for ( var i = 0; i < jQuery.token.length; i += 2 ) {
1786                                 if ( foundToken ) continue;
1787
1788                                 var re = new RegExp("^(" + jQuery.token[i] + ")");
1789                                 var m = re.exec(t);
1790
1791                                 if ( m ) {
1792                                         r = ret = jQuery.map( ret, jQuery.token[i+1] );
1793                                         t = jQuery.trim( t.replace( re, "" ) );
1794                                         foundToken = true;
1795                                 }
1796                         }
1797
1798                         if ( !foundToken ) {
1799                                 if ( !t.indexOf(",") || !t.indexOf("|") ) {
1800                                         if ( ret[0] == context ) ret.shift();
1801                                         done = jQuery.merge( done, ret );
1802                                         r = ret = [context];
1803                                         t = " " + t.substr(1,t.length);
1804                                 } else {
1805                                         var re2 = /^([#.]?)([a-z0-9\\*_-]*)/i;
1806                                         var m = re2.exec(t);
1807
1808                                         if ( m[1] == "#" ) {
1809                                                 // Ummm, should make this work in all XML docs
1810                                                 var oid = document.getElementById(m[2]);
1811                                                 r = ret = oid ? [oid] : [];
1812                                                 t = t.replace( re2, "" );
1813                                         } else {
1814                                                 if ( !m[2] || m[1] == "." ) m[2] = "*";
1815
1816                                                 for ( var i = 0; i < ret.length; i++ )
1817                                                         r = jQuery.merge( r,
1818                                                                 m[2] == "*" ?
1819                                                                         jQuery.getAll(ret[i]) :
1820                                                                         ret[i].getElementsByTagName(m[2])
1821                                                         );
1822                                         }
1823                                 }
1824
1825                         }
1826
1827                         if ( t ) {
1828                                 var val = jQuery.filter(t,r);
1829                                 ret = r = val.r;
1830                                 t = jQuery.trim(val.t);
1831                         }
1832                 }
1833
1834                 if ( ret && ret[0] == context ) ret.shift();
1835                 done = jQuery.merge( done, ret );
1836
1837                 return done;
1838         },
1839
1840         getAll: function(o,r) {
1841                 r = r || [];
1842                 var s = o.childNodes;
1843                 for ( var i = 0; i < s.length; i++ )
1844                         if ( s[i].nodeType == 1 ) {
1845                                 r.push( s[i] );
1846                                 jQuery.getAll( s[i], r );
1847                         }
1848                 return r;
1849         },
1850
1851         attr: function(elem, name, value){
1852                 var fix = {
1853                         "for": "htmlFor",
1854                         "class": "className",
1855                         "float": jQuery.browser.msie ? "styleFloat" : "cssFloat",
1856                         cssFloat: jQuery.browser.msie ? "styleFloat" : "cssFloat",
1857                         innerHTML: "innerHTML",
1858                         className: "className",
1859                         value: "value",
1860                         disabled: "disabled",
1861                         checked: "checked"
1862                 };
1863                 
1864                 // IE actually uses filters for opacity ... elem is actually elem.style
1865                 if (name == "opacity" && jQuery.browser.msie && value != undefined) {
1866                         // IE has trouble with opacity if it does not have layout
1867                         // Would prefer to check element.hasLayout first but don't have access to the element here
1868                         elem['zoom'] = 1; 
1869                         if (value == 1) // Remove filter to avoid more IE weirdness
1870                                 return elem["filter"] = elem["filter"].replace(/alpha\([^\)]*\)/gi,"");
1871                         else
1872                                 return elem["filter"] = elem["filter"].replace(/alpha\([^\)]*\)/gi,"") + "alpha(opacity=" + value * 100 + ")";
1873                 } else if (name == "opacity" && jQuery.browser.msie) {
1874                         return elem["filter"] ? parseFloat( elem["filter"].match(/alpha\(opacity=(.*)\)/)[1] )/100 : 1;
1875                 }
1876                 
1877                 // Mozilla doesn't play well with opacity 1
1878                 if (name == "opacity" && jQuery.browser.mozilla && value == 1) value = 0.9999;
1879
1880                 if ( fix[name] ) {
1881                         if ( value != undefined ) elem[fix[name]] = value;
1882                         return elem[fix[name]];
1883                 } else if( value == undefined && jQuery.browser.msie && elem.nodeName && elem.nodeName.toUpperCase() == 'FORM' && (name == 'action' || name == 'method') ) {
1884                         return elem.getAttributeNode(name).nodeValue;
1885                 } else if ( elem.getAttribute != undefined && elem.tagName ) { // IE elem.getAttribute passes even for style
1886                         if ( value != undefined ) elem.setAttribute( name, value );
1887                         return elem.getAttribute( name );
1888                 } else {
1889                         name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});
1890                         if ( value != undefined ) elem[name] = value;
1891                         return elem[name];
1892                 }
1893         },
1894
1895         // The regular expressions that power the parsing engine
1896         parse: [
1897                 // Match: [@value='test'], [@foo]
1898                 "\\[ *(@)S *([!*$^=]*) *('?\"?)(.*?)\\4 *\\]",
1899
1900                 // Match: [div], [div p]
1901                 "(\\[)\s*(.*?)\s*\\]",
1902
1903                 // Match: :contains('foo')
1904                 "(:)S\\(\"?'?([^\\)]*?)\"?'?\\)",
1905
1906                 // Match: :even, :last-chlid
1907                 "([:.#]*)S"
1908         ],
1909
1910         filter: function(t,r,not) {
1911                 // Figure out if we're doing regular, or inverse, filtering
1912                 var g = not !== false ? jQuery.grep :
1913                         function(a,f) {return jQuery.grep(a,f,true);};
1914
1915                 while ( t && /^[a-z[({<*:.#]/i.test(t) ) {
1916
1917                         var p = jQuery.parse;
1918
1919                         for ( var i = 0; i < p.length; i++ ) {
1920                 
1921                                 // Look for, and replace, string-like sequences
1922                                 // and finally build a regexp out of it
1923                                 var re = new RegExp(
1924                                         "^" + p[i].replace("S", "([a-z*_-][a-z0-9_-]*)"), "i" );
1925
1926                                 var m = re.exec( t );
1927
1928                                 if ( m ) {
1929                                         // Re-organize the first match
1930                                         if ( !i )
1931                                                 m = ["",m[1], m[3], m[2], m[5]];
1932
1933                                         // Remove what we just matched
1934                                         t = t.replace( re, "" );
1935
1936                                         break;
1937                                 }
1938                         }
1939
1940                         // :not() is a special case that can be optimized by
1941                         // keeping it out of the expression list
1942                         if ( m[1] == ":" && m[2] == "not" )
1943                                 r = jQuery.filter(m[3],r,false).r;
1944
1945                         // Otherwise, find the expression to execute
1946                         else {
1947                                 var f = jQuery.expr[m[1]];
1948                                 if ( f.constructor != String )
1949                                         f = jQuery.expr[m[1]][m[2]];
1950
1951                                 // Build a custom macro to enclose it
1952                                 eval("f = function(a,i){" +
1953                                         ( m[1] == "@" ? "z=jQuery.attr(a,m[3]);" : "" ) +
1954                                         "return " + f + "}");
1955
1956                                 // Execute it against the current filter
1957                                 r = g( r, f );
1958                         }
1959                 }
1960
1961                 // Return an array of filtered elements (r)
1962                 // and the modified expression string (t)
1963                 return { r: r, t: t };
1964         },
1965
1966         /**
1967          * Remove the whitespace from the beginning and end of a string.
1968          *
1969          * @example $.trim("  hello, how are you?  ");
1970          * @result "hello, how are you?"
1971          *
1972          * @name $.trim
1973          * @type String
1974          * @param String str The string to trim.
1975          * @cat Javascript
1976          */
1977         trim: function(t){
1978                 return t.replace(/^\s+|\s+$/g, "");
1979         },
1980
1981         /**
1982          * All ancestors of a given element.
1983          *
1984          * @private
1985          * @name $.parents
1986          * @type Array<Element>
1987          * @param Element elem The element to find the ancestors of.
1988          * @cat DOM/Traversing
1989          */
1990         parents: function( elem ){
1991                 var matched = [];
1992                 var cur = elem.parentNode;
1993                 while ( cur && cur != document ) {
1994                         matched.push( cur );
1995                         cur = cur.parentNode;
1996                 }
1997                 return matched;
1998         },
1999
2000         /**
2001          * All elements on a specified axis.
2002          *
2003          * @private
2004          * @name $.sibling
2005          * @type Array
2006          * @param Element elem The element to find all the siblings of (including itself).
2007          * @cat DOM/Traversing
2008          */
2009         sibling: function(elem, pos, not) {
2010                 var elems = [];
2011                 
2012                 if(elem) {
2013                         var siblings = elem.parentNode.childNodes;
2014                         for ( var i = 0; i < siblings.length; i++ ) {
2015                                 if ( not === true && siblings[i] == elem ) continue;
2016         
2017                                 if ( siblings[i].nodeType == 1 )
2018                                         elems.push( siblings[i] );
2019                                 if ( siblings[i] == elem )
2020                                         elems.n = elems.length - 1;
2021                         }
2022                 }
2023
2024                 return jQuery.extend( elems, {
2025                         last: elems.n == elems.length - 1,
2026                         cur: pos == "even" && elems.n % 2 == 0 || pos == "odd" && elems.n % 2 || elems[pos] == elem,
2027                         prev: elems[elems.n - 1],
2028                         next: elems[elems.n + 1]
2029                 });
2030         },
2031
2032         /**
2033          * Merge two arrays together, removing all duplicates. The final order
2034          * or the new array is: All the results from the first array, followed
2035          * by the unique results from the second array.
2036          *
2037          * @example $.merge( [0,1,2], [2,3,4] )
2038          * @result [0,1,2,3,4]
2039          *
2040          * @example $.merge( [3,2,1], [4,3,2] )
2041          * @result [3,2,1,4]
2042          *
2043          * @name $.merge
2044          * @type Array
2045          * @param Array first The first array to merge.
2046          * @param Array second The second array to merge.
2047          * @cat Javascript
2048          */
2049         merge: function(first, second) {
2050                 var result = [];
2051
2052                 // Move b over to the new array (this helps to avoid
2053                 // StaticNodeList instances)
2054                 for ( var k = 0; k < first.length; k++ )
2055                         result[k] = first[k];
2056
2057                 // Now check for duplicates between a and b and only
2058                 // add the unique items
2059                 for ( var i = 0; i < second.length; i++ ) {
2060                         var noCollision = true;
2061
2062                         // The collision-checking process
2063                         for ( var j = 0; j < first.length; j++ )
2064                                 if ( second[i] == first[j] )
2065                                         noCollision = false;
2066
2067                         // If the item is unique, add it
2068                         if ( noCollision )
2069                                 result.push( second[i] );
2070                 }
2071
2072                 return result;
2073         },
2074
2075         /**
2076          * Filter items out of an array, by using a filter function.
2077          * The specified function will be passed two arguments: The
2078          * current array item and the index of the item in the array. The
2079          * function should return 'true' if you wish to keep the item in
2080          * the array, false if it should be removed.
2081          *
2082          * @example $.grep( [0,1,2], function(i){
2083          *   return i > 0;
2084          * });
2085          * @result [1, 2]
2086          *
2087          * @name $.grep
2088          * @type Array
2089          * @param Array array The Array to find items in.
2090          * @param Function fn The function to process each item against.
2091          * @param Boolean inv Invert the selection - select the opposite of the function.
2092          * @cat Javascript
2093          */
2094         grep: function(elems, fn, inv) {
2095                 // If a string is passed in for the function, make a function
2096                 // for it (a handy shortcut)
2097                 if ( fn.constructor == String )
2098                         fn = new Function("a","i","return " + fn);
2099
2100                 var result = [];
2101
2102                 // Go through the array, only saving the items
2103                 // that pass the validator function
2104                 for ( var i = 0; i < elems.length; i++ )
2105                         if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) )
2106                                 result.push( elems[i] );
2107
2108                 return result;
2109         },
2110
2111         /**
2112          * Translate all items in an array to another array of items. 
2113          * The translation function that is provided to this method is 
2114          * called for each item in the array and is passed one argument: 
2115          * The item to be translated. The function can then return:
2116          * The translated value, 'null' (to remove the item), or 
2117          * an array of values - which will be flattened into the full array.
2118          *
2119          * @example $.map( [0,1,2], function(i){
2120          *   return i + 4;
2121          * });
2122          * @result [4, 5, 6]
2123          *
2124          * @example $.map( [0,1,2], function(i){
2125          *   return i > 0 ? i + 1 : null;
2126          * });
2127          * @result [2, 3]
2128          * 
2129          * @example $.map( [0,1,2], function(i){
2130          *   return [ i, i + 1 ];
2131          * });
2132          * @result [0, 1, 1, 2, 2, 3]
2133          *
2134          * @name $.map
2135          * @type Array
2136          * @param Array array The Array to translate.
2137          * @param Function fn The function to process each item against.
2138          * @cat Javascript
2139          */
2140         map: function(elems, fn) {
2141                 // If a string is passed in for the function, make a function
2142                 // for it (a handy shortcut)
2143                 if ( fn.constructor == String )
2144                         fn = new Function("a","return " + fn);
2145
2146                 var result = [];
2147
2148                 // Go through the array, translating each of the items to their
2149                 // new value (or values).
2150                 for ( var i = 0; i < elems.length; i++ ) {
2151                         var val = fn(elems[i],i);
2152
2153                         if ( val !== null && val != undefined ) {
2154                                 if ( val.constructor != Array ) val = [val];
2155                                 result = jQuery.merge( result, val );
2156                         }
2157                 }
2158
2159                 return result;
2160         },
2161
2162         /*
2163          * A number of helper functions used for managing events.
2164          * Many of the ideas behind this code orignated from Dean Edwards' addEvent library.
2165          */
2166         event: {
2167
2168                 // Bind an event to an element
2169                 // Original by Dean Edwards
2170                 add: function(element, type, handler) {
2171                         // For whatever reason, IE has trouble passing the window object
2172                         // around, causing it to be cloned in the process
2173                         if ( jQuery.browser.msie && element.setInterval != undefined )
2174                                 element = window;
2175
2176                         // Make sure that the function being executed has a unique ID
2177                         if ( !handler.guid )
2178                                 handler.guid = this.guid++;
2179
2180                         // Init the element's event structure
2181                         if (!element.events)
2182                                 element.events = {};
2183
2184                         // Get the current list of functions bound to this event
2185                         var handlers = element.events[type];
2186
2187                         // If it hasn't been initialized yet
2188                         if (!handlers) {
2189                                 // Init the event handler queue
2190                                 handlers = element.events[type] = {};
2191
2192                                 // Remember an existing handler, if it's already there
2193                                 if (element["on" + type])
2194                                         handlers[0] = element["on" + type];
2195                         }
2196
2197                         // Add the function to the element's handler list
2198                         handlers[handler.guid] = handler;
2199
2200                         // And bind the global event handler to the element
2201                         element["on" + type] = this.handle;
2202
2203                         // Remember the function in a global list (for triggering)
2204                         if (!this.global[type])
2205                                 this.global[type] = [];
2206                         this.global[type].push( element );
2207                 },
2208
2209                 guid: 1,
2210                 global: {},
2211
2212                 // Detach an event or set of events from an element
2213                 remove: function(element, type, handler) {
2214                         if (element.events)
2215                                 if (type && element.events[type])
2216                                         if ( handler )
2217                                                 delete element.events[type][handler.guid];
2218                                         else
2219                                                 for ( var i in element.events[type] )
2220                                                         delete element.events[type][i];
2221                                 else
2222                                         for ( var j in element.events )
2223                                                 this.remove( element, j );
2224                 },
2225
2226                 trigger: function(type,data,element) {
2227                         // Touch up the incoming data
2228                         data = data || [];
2229
2230                         // Handle a global trigger
2231                         if ( !element ) {
2232                                 var g = this.global[type];
2233                                 if ( g )
2234                                         for ( var i = 0; i < g.length; i++ )
2235                                                 this.trigger( type, data, g[i] );
2236
2237                         // Handle triggering a single element
2238                         } else if ( element["on" + type] ) {
2239                                 // Pass along a fake event
2240                                 data.unshift( this.fix({ type: type, target: element }) );
2241
2242                                 // Trigger the event
2243                                 element["on" + type].apply( element, data );
2244                         }
2245                 },
2246
2247                 handle: function(event) {
2248                         if ( typeof jQuery == "undefined" ) return false;
2249
2250                         event = event || jQuery.event.fix( window.event );
2251
2252                         // If no correct event was found, fail
2253                         if ( !event ) return false;
2254
2255                         var returnValue = true;
2256
2257                         var c = this.events[event.type];
2258
2259                         var args = [].slice.call( arguments, 1 );
2260                         args.unshift( event );
2261
2262                         for ( var j in c ) {
2263                                 if ( c[j].apply( this, args ) === false ) {
2264                                         event.preventDefault();
2265                                         event.stopPropagation();
2266                                         returnValue = false;
2267                                 }
2268                         }
2269
2270                         return returnValue;
2271                 },
2272
2273                 fix: function(event) {
2274                         if ( event ) {
2275                                 event.preventDefault = function() {
2276                                         this.returnValue = false;
2277                                 };
2278
2279                                 event.stopPropagation = function() {
2280                                         this.cancelBubble = true;
2281                                 };
2282                         }
2283
2284                         return event;
2285                 }
2286
2287         }
2288 });
2289
2290 /**
2291  * Contains flags for the useragent, read from navigator.userAgent.
2292  * Available flags are: safari, opera, msie, mozilla
2293  * This property is available before the DOM is ready, therefore you can
2294  * use it to add ready events only for certain browsers.
2295  *
2296  * See <a href="http://davecardwell.co.uk/geekery/javascript/jquery/jqbrowser/">
2297  * jQBrowser plugin</a> for advanced browser detection:
2298  *
2299  * @example $.browser.msie
2300  * @desc returns true if the current useragent is some version of microsoft's internet explorer
2301  *
2302  * @example if($.browser.safari) { $( function() { alert("this is safari!"); } ); }
2303  * @desc Alerts "this is safari!" only for safari browsers
2304  *
2305  * @name $.browser
2306  * @type Boolean
2307  * @cat Javascript
2308  */
2309 new function() {
2310         var b = navigator.userAgent.toLowerCase();
2311
2312         // Figure out what browser is being used
2313         jQuery.browser = {
2314                 safari: /webkit/.test(b),
2315                 opera: /opera/.test(b),
2316                 msie: /msie/.test(b) && !/opera/.test(b),
2317                 mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
2318         };
2319
2320         // Check to see if the W3C box model is being used
2321         jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
2322 };
2323
2324 jQuery.macros = {
2325         to: {
2326                 /**
2327                  * Append all of the matched elements to another, specified, set of elements.
2328                  * This operation is, essentially, the reverse of doing a regular
2329                  * $(A).append(B), in that instead of appending B to A, you're appending
2330                  * A to B.
2331                  *
2332                  * @example $("p").appendTo("#foo");
2333                  * @before <p>I would like to say: </p><div id="foo"></div>
2334                  * @result <div id="foo"><p>I would like to say: </p></div>
2335                  *
2336                  * @name appendTo
2337                  * @type jQuery
2338                  * @param String expr A jQuery expression of elements to match.
2339                  * @cat DOM/Manipulation
2340                  */
2341                 appendTo: "append",
2342
2343                 /**
2344                  * Prepend all of the matched elements to another, specified, set of elements.
2345                  * This operation is, essentially, the reverse of doing a regular
2346                  * $(A).prepend(B), in that instead of prepending B to A, you're prepending
2347                  * A to B.
2348                  *
2349                  * @example $("p").prependTo("#foo");
2350                  * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
2351                  * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
2352                  *
2353                  * @name prependTo
2354                  * @type jQuery
2355                  * @param String expr A jQuery expression of elements to match.
2356                  * @cat DOM/Manipulation
2357                  */
2358                 prependTo: "prepend",
2359
2360                 /**
2361                  * Insert all of the matched elements before another, specified, set of elements.
2362                  * This operation is, essentially, the reverse of doing a regular
2363                  * $(A).before(B), in that instead of inserting B before A, you're inserting
2364                  * A before B.
2365                  *
2366                  * @example $("p").insertBefore("#foo");
2367                  * @before <div id="foo">Hello</div><p>I would like to say: </p>
2368                  * @result <p>I would like to say: </p><div id="foo">Hello</div>
2369                  *
2370                  * @name insertBefore
2371                  * @type jQuery
2372                  * @param String expr A jQuery expression of elements to match.
2373                  * @cat DOM/Manipulation
2374                  */
2375                 insertBefore: "before",
2376
2377                 /**
2378                  * Insert all of the matched elements after another, specified, set of elements.
2379                  * This operation is, essentially, the reverse of doing a regular
2380                  * $(A).after(B), in that instead of inserting B after A, you're inserting
2381                  * A after B.
2382                  *
2383                  * @example $("p").insertAfter("#foo");
2384                  * @before <p>I would like to say: </p><div id="foo">Hello</div>
2385                  * @result <div id="foo">Hello</div><p>I would like to say: </p>
2386                  *
2387                  * @name insertAfter
2388                  * @type jQuery
2389                  * @param String expr A jQuery expression of elements to match.
2390                  * @cat DOM/Manipulation
2391                  */
2392                 insertAfter: "after"
2393         },
2394
2395         /**
2396          * Get the current CSS width of the first matched element.
2397          *
2398          * @example $("p").width();
2399          * @before <p>This is just a test.</p>
2400          * @result "300px"
2401          *
2402          * @name width
2403          * @type String
2404          * @cat CSS
2405          */
2406
2407         /**
2408          * Set the CSS width of every matched element. Be sure to include
2409          * the "px" (or other unit of measurement) after the number that you
2410          * specify, otherwise you might get strange results.
2411          *
2412          * @example $("p").width("20px");
2413          * @before <p>This is just a test.</p>
2414          * @result <p style="width:20px;">This is just a test.</p>
2415          *
2416          * @name width
2417          * @type jQuery
2418          * @param String val Set the CSS property to the specified value.
2419          * @cat CSS
2420          */
2421
2422         /**
2423          * Get the current CSS height of the first matched element.
2424          *
2425          * @example $("p").height();
2426          * @before <p>This is just a test.</p>
2427          * @result "14px"
2428          *
2429          * @name height
2430          * @type String
2431          * @cat CSS
2432          */
2433
2434         /**
2435          * Set the CSS height of every matched element. Be sure to include
2436          * the "px" (or other unit of measurement) after the number that you
2437          * specify, otherwise you might get strange results.
2438          *
2439          * @example $("p").height("20px");
2440          * @before <p>This is just a test.</p>
2441          * @result <p style="height:20px;">This is just a test.</p>
2442          *
2443          * @name height
2444          * @type jQuery
2445          * @param String val Set the CSS property to the specified value.
2446          * @cat CSS
2447          */
2448
2449         /**
2450          * Get the current CSS top of the first matched element.
2451          *
2452          * @example $("p").top();
2453          * @before <p>This is just a test.</p>
2454          * @result "0px"
2455          *
2456          * @name top
2457          * @type String
2458          * @cat CSS
2459          */
2460
2461         /**
2462          * Set the CSS top of every matched element. Be sure to include
2463          * the "px" (or other unit of measurement) after the number that you
2464          * specify, otherwise you might get strange results.
2465          *
2466          * @example $("p").top("20px");
2467          * @before <p>This is just a test.</p>
2468          * @result <p style="top:20px;">This is just a test.</p>
2469          *
2470          * @name top
2471          * @type jQuery
2472          * @param String val Set the CSS property to the specified value.
2473          * @cat CSS
2474          */
2475
2476         /**
2477          * Get the current CSS left of the first matched element.
2478          *
2479          * @example $("p").left();
2480          * @before <p>This is just a test.</p>
2481          * @result "0px"
2482          *
2483          * @name left
2484          * @type String
2485          * @cat CSS
2486          */
2487
2488         /**
2489          * Set the CSS left of every matched element. Be sure to include
2490          * the "px" (or other unit of measurement) after the number that you
2491          * specify, otherwise you might get strange results.
2492          *
2493          * @example $("p").left("20px");
2494          * @before <p>This is just a test.</p>
2495          * @result <p style="left:20px;">This is just a test.</p>
2496          *
2497          * @name left
2498          * @type jQuery
2499          * @param String val Set the CSS property to the specified value.
2500          * @cat CSS
2501          */
2502
2503         /**
2504          * Get the current CSS position of the first matched element.
2505          *
2506          * @example $("p").position();
2507          * @before <p>This is just a test.</p>
2508          * @result "static"
2509          *
2510          * @name position
2511          * @type String
2512          * @cat CSS
2513          */
2514
2515         /**
2516          * Set the CSS position of every matched element.
2517          *
2518          * @example $("p").position("relative");
2519          * @before <p>This is just a test.</p>
2520          * @result <p style="position:relative;">This is just a test.</p>
2521          *
2522          * @name position
2523          * @type jQuery
2524          * @param String val Set the CSS property to the specified value.
2525          * @cat CSS
2526          */
2527
2528         /**
2529          * Get the current CSS float of the first matched element.
2530          *
2531          * @example $("p").float();
2532          * @before <p>This is just a test.</p>
2533          * @result "none"
2534          *
2535          * @name float
2536          * @type String
2537          * @cat CSS
2538          */
2539
2540         /**
2541          * Set the CSS float of every matched element.
2542          *
2543          * @example $("p").float("left");
2544          * @before <p>This is just a test.</p>
2545          * @result <p style="float:left;">This is just a test.</p>
2546          *
2547          * @name float
2548          * @type jQuery
2549          * @param String val Set the CSS property to the specified value.
2550          * @cat CSS
2551          */
2552
2553         /**
2554          * Get the current CSS overflow of the first matched element.
2555          *
2556          * @example $("p").overflow();
2557          * @before <p>This is just a test.</p>
2558          * @result "none"
2559          *
2560          * @name overflow
2561          * @type String
2562          * @cat CSS
2563          */
2564
2565         /**
2566          * Set the CSS overflow of every matched element.
2567          *
2568          * @example $("p").overflow("auto");
2569          * @before <p>This is just a test.</p>
2570          * @result <p style="overflow:auto;">This is just a test.</p>
2571          *
2572          * @name overflow
2573          * @type jQuery
2574          * @param String val Set the CSS property to the specified value.
2575          * @cat CSS
2576          */
2577
2578         /**
2579          * Get the current CSS color of the first matched element.
2580          *
2581          * @example $("p").color();
2582          * @before <p>This is just a test.</p>
2583          * @result "black"
2584          *
2585          * @name color
2586          * @type String
2587          * @cat CSS
2588          */
2589
2590         /**
2591          * Set the CSS color of every matched element.
2592          *
2593          * @example $("p").color("blue");
2594          * @before <p>This is just a test.</p>
2595          * @result <p style="color:blue;">This is just a test.</p>
2596          *
2597          * @name color
2598          * @type jQuery
2599          * @param String val Set the CSS property to the specified value.
2600          * @cat CSS
2601          */
2602
2603         /**
2604          * Get the current CSS background of the first matched element.
2605          *
2606          * @example $("p").background();
2607          * @before <p style="background:blue;">This is just a test.</p>
2608          * @result "blue"
2609          *
2610          * @name background
2611          * @type String
2612          * @cat CSS
2613          */
2614
2615         /**
2616          * Set the CSS background of every matched element.
2617          *
2618          * @example $("p").background("blue");
2619          * @before <p>This is just a test.</p>
2620          * @result <p style="background:blue;">This is just a test.</p>
2621          *
2622          * @name background
2623          * @type jQuery
2624          * @param String val Set the CSS property to the specified value.
2625          * @cat CSS
2626          */
2627
2628         css: "width,height,top,left,position,float,overflow,color,background".split(","),
2629
2630         /**
2631          * Reduce the set of matched elements to a single element.
2632          * The position of the element in the set of matched elements
2633          * starts at 0 and goes to length - 1.
2634          *
2635          * @example $("p").eq(1)
2636          * @before <p>This is just a test.</p><p>So is this</p>
2637          * @result [ <p>So is this</p> ]
2638          *
2639          * @name eq
2640          * @type jQuery
2641          * @param Number pos The index of the element that you wish to limit to.
2642          * @cat Core
2643          */
2644
2645         /**
2646          * Reduce the set of matched elements to all elements before a given position.
2647          * The position of the element in the set of matched elements
2648          * starts at 0 and goes to length - 1.
2649          *
2650          * @example $("p").lt(1)
2651          * @before <p>This is just a test.</p><p>So is this</p>
2652          * @result [ <p>This is just a test.</p> ]
2653          *
2654          * @name lt
2655          * @type jQuery
2656          * @param Number pos Reduce the set to all elements below this position.
2657          * @cat Core
2658          */
2659
2660         /**
2661          * Reduce the set of matched elements to all elements after a given position.
2662          * The position of the element in the set of matched elements
2663          * starts at 0 and goes to length - 1.
2664          *
2665          * @example $("p").gt(0)
2666          * @before <p>This is just a test.</p><p>So is this</p>
2667          * @result [ <p>So is this</p> ]
2668          *
2669          * @name gt
2670          * @type jQuery
2671          * @param Number pos Reduce the set to all elements after this position.
2672          * @cat Core
2673          */
2674
2675         /**
2676          * Filter the set of elements to those that contain the specified text.
2677          *
2678          * @example $("p").contains("test")
2679          * @before <p>This is just a test.</p><p>So is this</p>
2680          * @result [ <p>This is just a test.</p> ]
2681          *
2682          * @name contains
2683          * @type jQuery
2684          * @param String str The string that will be contained within the text of an element.
2685          * @cat DOM/Traversing
2686          */
2687
2688         filter: [ "eq", "lt", "gt", "contains" ],
2689
2690         attr: {
2691                 /**
2692                  * Get the current value of the first matched element.
2693                  *
2694                  * @example $("input").val();
2695                  * @before <input type="text" value="some text"/>
2696                  * @result "some text"
2697                  *
2698                  * @test ok( $("#text1").val() == "Test", "Check for value of input element" );
2699                  * ok( !$("#text1").val() == "", "Check for value of input element" );
2700                  *
2701                  * @name val
2702                  * @type String
2703                  * @cat DOM/Attributes
2704                  */
2705
2706                 /**
2707                  * Set the value of every matched element.
2708                  *
2709                  * @example $("input").val("test");
2710                  * @before <input type="text" value="some text"/>
2711                  * @result <input type="text" value="test"/>
2712                  *
2713                  * @test document.getElementById('text1').value = "bla";
2714                  * ok( $("#text1").val() == "bla", "Check for modified value of input element" );
2715                  * $("#text1").val('test');
2716                  * ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
2717                  *
2718                  * @name val
2719                  * @type jQuery
2720                  * @param String val Set the property to the specified value.
2721                  * @cat DOM/Attributes
2722                  */
2723                 val: "value",
2724
2725                 /**
2726                  * Get the html contents of the first matched element.
2727                  *
2728                  * @example $("div").html();
2729                  * @before <div><input/></div>
2730                  * @result <input/>
2731                  *
2732                  * @name html
2733                  * @type String
2734                  * @cat DOM/Attributes
2735                  */
2736
2737                 /**
2738                  * Set the html contents of every matched element.
2739                  *
2740                  * @example $("div").html("<b>new stuff</b>");
2741                  * @before <div><input/></div>
2742                  * @result <div><b>new stuff</b></div>
2743                  *
2744                  * @test var div = $("div");
2745                  * div.html("<b>test</b>");
2746                  * var pass = true;
2747                  * for ( var i = 0; i < div.size(); i++ ) {
2748                  *   if ( div.get(i).childNodes.length == 0 ) pass = false;
2749                  * }
2750                  * ok( pass, "Set HTML" );
2751                  *
2752                  * @name html
2753                  * @type jQuery
2754                  * @param String val Set the html contents to the specified value.
2755                  * @cat DOM/Attributes
2756                  */
2757                 html: "innerHTML",
2758
2759                 /**
2760                  * Get the current id of the first matched element.
2761                  *
2762                  * @example $("input").id();
2763                  * @before <input type="text" id="test" value="some text"/>
2764                  * @result "test"
2765                  *
2766                  * @test ok( $(document.getElementById('main')).id() == "main", "Check for id" );
2767                  * ok( $("#foo").id() == "foo", "Check for id" );
2768                  * ok( !$("head").id(), "Check for id" );
2769                  *
2770                  * @name id
2771                  * @type String
2772                  * @cat DOM/Attributes
2773                  */
2774
2775                 /**
2776                  * Set the id of every matched element.
2777                  *
2778                  * @example $("input").id("newid");
2779                  * @before <input type="text" id="test" value="some text"/>
2780                  * @result <input type="text" id="newid" value="some text"/>
2781                  *
2782                  * @name id
2783                  * @type jQuery
2784                  * @param String val Set the property to the specified value.
2785                  * @cat DOM/Attributes
2786                  */
2787                 id: null,
2788
2789                 /**
2790                  * Get the current title of the first matched element.
2791                  *
2792                  * @example $("img").title();
2793                  * @before <img src="test.jpg" title="my image"/>
2794                  * @result "my image"
2795                  *
2796                  * @test ok( $(document.getElementById('google')).title() == "Google!", "Check for title" );
2797                  * ok( !$("#yahoo").title(), "Check for title" );
2798                  *
2799                  * @name title
2800                  * @type String
2801                  * @cat DOM/Attributes
2802                  */
2803
2804                 /**
2805                  * Set the title of every matched element.
2806                  *
2807                  * @example $("img").title("new title");
2808                  * @before <img src="test.jpg" title="my image"/>
2809                  * @result <img src="test.jpg" title="new image"/>
2810                  *
2811                  * @name title
2812                  * @type jQuery
2813                  * @param String val Set the property to the specified value.
2814                  * @cat DOM/Attributes
2815                  */
2816                 title: null,
2817
2818                 /**
2819                  * Get the current name of the first matched element.
2820                  *
2821                  * @example $("input").name();
2822                  * @before <input type="text" name="username"/>
2823                  * @result "username"
2824                  *
2825                  * @test ok( $(document.getElementById('text1')).name() == "action", "Check for name" );
2826                  * ok( $("#hidden1").name() == "hidden", "Check for name" );
2827                  * ok( !$("#area1").name(), "Check for name" );
2828                  *
2829                  * @name name
2830                  * @type String
2831                  * @cat DOM/Attributes
2832                  */
2833
2834                 /**
2835                  * Set the name of every matched element.
2836                  *
2837                  * @example $("input").name("user");
2838                  * @before <input type="text" name="username"/>
2839                  * @result <input type="text" name="user"/>
2840                  *
2841                  * @name name
2842                  * @type jQuery
2843                  * @param String val Set the property to the specified value.
2844                  * @cat DOM/Attributes
2845                  */
2846                 name: null,
2847
2848                 /**
2849                  * Get the current href of the first matched element.
2850                  *
2851                  * @example $("a").href();
2852                  * @before <a href="test.html">my link</a>
2853                  * @result "test.html"
2854                  *
2855                  * @name href
2856                  * @type String
2857                  * @cat DOM/Attributes
2858                  */
2859
2860                 /**
2861                  * Set the href of every matched element.
2862                  *
2863                  * @example $("a").href("test2.html");
2864                  * @before <a href="test.html">my link</a>
2865                  * @result <a href="test2.html">my link</a>
2866                  *
2867                  * @name href
2868                  * @type jQuery
2869                  * @param String val Set the property to the specified value.
2870                  * @cat DOM/Attributes
2871                  */
2872                 href: null,
2873
2874                 /**
2875                  * Get the current src of the first matched element.
2876                  *
2877                  * @example $("img").src();
2878                  * @before <img src="test.jpg" title="my image"/>
2879                  * @result "test.jpg"
2880                  *
2881                  * @name src
2882                  * @type String
2883                  * @cat DOM/Attributes
2884                  */
2885
2886                 /**
2887                  * Set the src of every matched element.
2888                  *
2889                  * @example $("img").src("test2.jpg");
2890                  * @before <img src="test.jpg" title="my image"/>
2891                  * @result <img src="test2.jpg" title="my image"/>
2892                  *
2893                  * @name src
2894                  * @type jQuery
2895                  * @param String val Set the property to the specified value.
2896                  * @cat DOM/Attributes
2897                  */
2898                 src: null,
2899
2900                 /**
2901                  * Get the current rel of the first matched element.
2902                  *
2903                  * @example $("a").rel();
2904                  * @before <a href="test.html" rel="nofollow">my link</a>
2905                  * @result "nofollow"
2906                  *
2907                  * @name rel
2908                  * @type String
2909                  * @cat DOM/Attributes
2910                  */
2911
2912                 /**
2913                  * Set the rel of every matched element.
2914                  *
2915                  * @example $("a").rel("nofollow");
2916                  * @before <a href="test.html">my link</a>
2917                  * @result <a href="test.html" rel="nofollow">my link</a>
2918                  *
2919                  * @name rel
2920                  * @type jQuery
2921                  * @param String val Set the property to the specified value.
2922                  * @cat DOM/Attributes
2923                  */
2924                 rel: null
2925         },
2926
2927         axis: {
2928                 /**
2929                  * Get a set of elements containing the unique parents of the matched
2930                  * set of elements.
2931                  *
2932                  * @example $("p").parent()
2933                  * @before <div><p>Hello</p><p>Hello</p></div>
2934                  * @result [ <div><p>Hello</p><p>Hello</p></div> ]
2935                  *
2936                  * @name parent
2937                  * @type jQuery
2938                  * @cat DOM/Traversing
2939                  */
2940
2941                 /**
2942                  * Get a set of elements containing the unique parents of the matched
2943                  * set of elements, and filtered by an expression.
2944                  *
2945                  * @example $("p").parent(".selected")
2946                  * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
2947                  * @result [ <div class="selected"><p>Hello Again</p></div> ]
2948                  *
2949                  * @name parent
2950                  * @type jQuery
2951                  * @param String expr An expression to filter the parents with
2952                  * @cat DOM/Traversing
2953                  */
2954                 parent: "a.parentNode",
2955
2956                 /**
2957                  * Get a set of elements containing the unique ancestors of the matched
2958                  * set of elements (except for the root element).
2959                  *
2960                  * @example $("span").ancestors()
2961                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2962                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2963                  *
2964                  * @name ancestors
2965                  * @type jQuery
2966                  * @cat DOM/Traversing
2967                  */
2968
2969                 /**
2970                  * Get a set of elements containing the unique ancestors of the matched
2971                  * set of elements, and filtered by an expression.
2972                  *
2973                  * @example $("span").ancestors("p")
2974                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2975                  * @result [ <p><span>Hello</span></p> ]
2976                  *
2977                  * @name ancestors
2978                  * @type jQuery
2979                  * @param String expr An expression to filter the ancestors with
2980                  * @cat DOM/Traversing
2981                  */
2982                 ancestors: jQuery.parents,
2983
2984                 /**
2985                  * Get a set of elements containing the unique ancestors of the matched
2986                  * set of elements (except for the root element).
2987                  *
2988                  * @example $("span").ancestors()
2989                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2990                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2991                  *
2992                  * @name parents
2993                  * @type jQuery
2994                  * @cat DOM/Traversing
2995                  */
2996
2997                 /**
2998                  * Get a set of elements containing the unique ancestors of the matched
2999                  * set of elements, and filtered by an expression.
3000                  *
3001                  * @example $("span").ancestors("p")
3002                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
3003                  * @result [ <p><span>Hello</span></p> ]
3004                  *
3005                  * @name parents
3006                  * @type jQuery
3007                  * @param String expr An expression to filter the ancestors with
3008                  * @cat DOM/Traversing
3009                  */
3010                 parents: jQuery.parents,
3011
3012                 /**
3013                  * Get a set of elements containing the unique next siblings of each of the
3014                  * matched set of elements.
3015                  *
3016                  * It only returns the very next sibling, not all next siblings.
3017                  *
3018                  * @example $("p").next()
3019                  * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
3020                  * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
3021                  *
3022                  * @name next
3023                  * @type jQuery
3024                  * @cat DOM/Traversing
3025                  */
3026
3027                 /**
3028                  * Get a set of elements containing the unique next siblings of each of the
3029                  * matched set of elements, and filtered by an expression.
3030                  *
3031                  * It only returns the very next sibling, not all next siblings.
3032                  *
3033                  * @example $("p").next(".selected")
3034                  * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
3035                  * @result [ <p class="selected">Hello Again</p> ]
3036                  *
3037                  * @name next
3038                  * @type jQuery
3039                  * @param String expr An expression to filter the next Elements with
3040                  * @cat DOM/Traversing
3041                  */
3042                 next: "jQuery.sibling(a).next",
3043
3044                 /**
3045                  * Get a set of elements containing the unique previous siblings of each of the
3046                  * matched set of elements.
3047                  *
3048                  * It only returns the immediately previous sibling, not all previous siblings.
3049                  *
3050                  * @example $("p").prev()
3051                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
3052                  * @result [ <div><span>Hello Again</span></div> ]
3053                  *
3054                  * @name prev
3055                  * @type jQuery
3056                  * @cat DOM/Traversing
3057                  */
3058
3059                 /**
3060                  * Get a set of elements containing the unique previous siblings of each of the
3061                  * matched set of elements, and filtered by an expression.
3062                  *
3063                  * It only returns the immediately previous sibling, not all previous siblings.
3064                  *
3065                  * @example $("p").previous(".selected")
3066                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
3067                  * @result [ <div><span>Hello</span></div> ]
3068                  *
3069                  * @name prev
3070                  * @type jQuery
3071                  * @param String expr An expression to filter the previous Elements with
3072                  * @cat DOM/Traversing
3073                  */
3074                 prev: "jQuery.sibling(a).prev",
3075
3076                 /**
3077                  * Get a set of elements containing all of the unique siblings of each of the
3078                  * matched set of elements.
3079                  *
3080                  * @example $("div").siblings()
3081                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
3082                  * @result [ <p>Hello</p>, <p>And Again</p> ]
3083                  *
3084                  * @test isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" ); 
3085                  *
3086                  * @name siblings
3087                  * @type jQuery
3088                  * @cat DOM/Traversing
3089                  */
3090
3091                 /**
3092                  * Get a set of elements containing all of the unique siblings of each of the
3093                  * matched set of elements, and filtered by an expression.
3094                  *
3095                  * @example $("div").siblings(".selected")
3096                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
3097                  * @result [ <p class="selected">Hello Again</p> ]
3098                  *
3099                  * @test isSet( $("#sndp").siblings("[code]").get(), q("sap"), "Check for filtered siblings (has code child element)" ); 
3100                  * isSet( $("#sndp").siblings("[a]").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
3101                  *
3102                  * @name siblings
3103                  * @type jQuery
3104                  * @param String expr An expression to filter the sibling Elements with
3105                  * @cat DOM/Traversing
3106                  */
3107                 siblings: "jQuery.sibling(a, null, true)",
3108
3109
3110                 /**
3111                  * Get a set of elements containing all of the unique children of each of the
3112                  * matched set of elements.
3113                  *
3114                  * @example $("div").children()
3115                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
3116                  * @result [ <span>Hello Again</span> ]
3117                  *
3118                  * @test isSet( $("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
3119                  *
3120                  * @name children
3121                  * @type jQuery
3122                  * @cat DOM/Traversing
3123                  */
3124
3125                 /**
3126                  * Get a set of elements containing all of the unique children of each of the
3127                  * matched set of elements, and filtered by an expression.
3128                  *
3129                  * @example $("div").children(".selected")
3130                  * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
3131                  * @result [ <p class="selected">Hello Again</p> ]
3132                  *
3133                  * @test isSet( $("#foo").children("[code]").get(), q("sndp", "sap"), "Check for filtered children" ); 
3134                  *
3135                  * @name children
3136                  * @type jQuery
3137                  * @param String expr An expression to filter the child Elements with
3138                  * @cat DOM/Traversing
3139                  */
3140                 children: "jQuery.sibling(a.firstChild)"
3141         },
3142
3143         each: {
3144
3145                 /**
3146                  * Remove an attribute from each of the matched elements.
3147                  *
3148                  * @example $("input").removeAttr("disabled")
3149                  * @before <input disabled="disabled"/>
3150                  * @result <input/>
3151                  *
3152                  * @name removeAttr
3153                  * @type jQuery
3154                  * @param String name The name of the attribute to remove.
3155                  * @cat DOM
3156                  */
3157                 removeAttr: function( key ) {
3158                         this.removeAttribute( key );
3159                 },
3160
3161                 /**
3162                  * Displays each of the set of matched elements if they are hidden.
3163                  *
3164                  * @example $("p").show()
3165                  * @before <p style="display: none">Hello</p>
3166                  * @result [ <p style="display: block">Hello</p> ]
3167                  *
3168                  * @test var pass = true, div = $("div");
3169                  * div.show().each(function(){
3170                  *   if ( this.style.display == "none" ) pass = false;
3171                  * });
3172                  * ok( pass, "Show" );
3173                  *
3174                  * @name show
3175                  * @type jQuery
3176                  * @cat Effects
3177                  */
3178                 show: function(){
3179                         this.style.display = this.oldblock ? this.oldblock : "";
3180                         if ( jQuery.css(this,"display") == "none" )
3181                                 this.style.display = "block";
3182                 },
3183
3184                 /**
3185                  * Hides each of the set of matched elements if they are shown.
3186                  *
3187                  * @example $("p").hide()
3188                  * @before <p>Hello</p>
3189                  * @result [ <p style="display: none">Hello</p> ]
3190                  *
3191                  * var pass = true, div = $("div");
3192                  * div.hide().each(function(){
3193                  *   if ( this.style.display != "none" ) pass = false;
3194                  * });
3195                  * ok( pass, "Hide" );
3196                  *
3197                  * @name hide
3198                  * @type jQuery
3199                  * @cat Effects
3200                  */
3201                 hide: function(){
3202                         this.oldblock = this.oldblock || jQuery.css(this,"display");
3203                         if ( this.oldblock == "none" )
3204                                 this.oldblock = "block";
3205                         this.style.display = "none";
3206                 },
3207
3208                 /**
3209                  * Toggles each of the set of matched elements. If they are shown,
3210                  * toggle makes them hidden. If they are hidden, toggle
3211                  * makes them shown.
3212                  *
3213                  * @example $("p").toggle()
3214                  * @before <p>Hello</p><p style="display: none">Hello Again</p>
3215                  * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
3216                  *
3217                  * @name toggle
3218                  * @type jQuery
3219                  * @cat Effects
3220                  */
3221                 toggle: function(){
3222                         jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ].apply( jQuery(this), arguments );
3223                 },
3224
3225                 /**
3226                  * Adds the specified class to each of the set of matched elements.
3227                  *
3228                  * @example $("p").addClass("selected")
3229                  * @before <p>Hello</p>
3230                  * @result [ <p class="selected">Hello</p> ]
3231                  *
3232                  * @test var div = $("div");
3233                  * div.addClass("test");
3234                  * var pass = true;
3235                  * for ( var i = 0; i < div.size(); i++ ) {
3236                  *  if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
3237                  * }
3238                  * ok( pass, "Add Class" );
3239                  *
3240                  * @name addClass
3241                  * @type jQuery
3242                  * @param String class A CSS class to add to the elements
3243                  * @cat DOM
3244                  */
3245                 addClass: function(c){
3246                         jQuery.className.add(this,c);
3247                 },
3248
3249                 /**
3250                  * Removes the specified class from the set of matched elements.
3251                  *
3252                  * @example $("p").removeClass("selected")
3253                  * @before <p class="selected">Hello</p>
3254                  * @result [ <p>Hello</p> ]
3255                  *
3256                  * @test var div = $("div").addClass("test");
3257                  * div.removeClass("test");
3258                  * var pass = true;
3259                  * for ( var i = 0; i < div.size(); i++ ) {
3260                  *  if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
3261                  * }
3262                  * ok( pass, "Remove Class" );
3263                  * 
3264                  * reset();
3265                  *
3266                  * var div = $("div").addClass("test").addClass("foo").addClass("bar");
3267                  * div.removeClass("test").removeClass("bar").removeClass("foo");
3268                  * var pass = true;
3269                  * for ( var i = 0; i < div.size(); i++ ) {
3270                  *  if ( div.get(i).className.match(/test|bar|foo/) ) pass = false;
3271                  * }
3272                  * ok( pass, "Remove multiple classes" );
3273                  *
3274                  * @name removeClass
3275                  * @type jQuery
3276                  * @param String class A CSS class to remove from the elements
3277                  * @cat DOM
3278                  */
3279                 removeClass: function(c){
3280                         jQuery.className.remove(this,c);
3281                 },
3282
3283                 /**
3284                  * Adds the specified class if it is present, removes it if it is
3285                  * not present.
3286                  *
3287                  * @example $("p").toggleClass("selected")
3288                  * @before <p>Hello</p><p class="selected">Hello Again</p>
3289                  * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
3290                  *
3291                  * @name toggleClass
3292                  * @type jQuery
3293                  * @param String class A CSS class with which to toggle the elements
3294                  * @cat DOM
3295                  */
3296                 toggleClass: function( c ){
3297                         jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this,c);
3298                 },
3299
3300                 /**
3301                  * Removes all matched elements from the DOM. This does NOT remove them from the
3302                  * jQuery object, allowing you to use the matched elements further.
3303                  *
3304                  * @example $("p").remove();
3305                  * @before <p>Hello</p> how are <p>you?</p>
3306                  * @result how are
3307                  *
3308                  * @name remove
3309                  * @type jQuery
3310                  * @cat DOM/Manipulation
3311                  */
3312
3313                 /**
3314                  * Removes only elements (out of the list of matched elements) that match
3315                  * the specified jQuery expression. This does NOT remove them from the
3316                  * jQuery object, allowing you to use the matched elements further.
3317                  *
3318                  * @example $("p").remove(".hello");
3319                  * @before <p class="hello">Hello</p> how are <p>you?</p>
3320                  * @result how are <p>you?</p>
3321                  *
3322                  * @name remove
3323                  * @type jQuery
3324                  * @param String expr A jQuery expression to filter elements by.
3325                  * @cat DOM/Manipulation
3326                  */
3327                 remove: function(a){
3328                         if ( !a || jQuery.filter( a, [this] ).r )
3329                                 this.parentNode.removeChild( this );
3330                 },
3331
3332                 /**
3333                  * Removes all child nodes from the set of matched elements.
3334                  *
3335                  * @example $("p").empty()
3336                  * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
3337                  * @result [ <p></p> ]
3338                  *
3339                  * @name empty
3340                  * @type jQuery
3341                  * @cat DOM/Manipulation
3342                  */
3343                 empty: function(){
3344                         while ( this.firstChild )
3345                                 this.removeChild( this.firstChild );
3346                 },
3347
3348                 /**
3349                  * Binds a handler to a particular event (like click) for each matched element.
3350                  * The event handler is passed an event object that you can use to prevent
3351                  * default behaviour. To stop both default action and event bubbling, your handler
3352                  * has to return false.
3353                  *
3354                  * @example $("p").bind( "click", function() {
3355                  *   alert( $(this).text() );
3356                  * } )
3357                  * @before <p>Hello</p>
3358                  * @result alert("Hello")
3359                  *
3360                  * @example $("form").bind( "submit", function() { return false; } )
3361                  * @desc Cancel a default action and prevent it from bubbling by returning false
3362                  * from your function.
3363                  *
3364                  * @example $("form").bind( "submit", function(event) {
3365                  *   event.preventDefault();
3366                  * } );
3367                  * @desc Cancel only the default action by using the preventDefault method.
3368                  *
3369                  *
3370                  * @example $("form").bind( "submit", function(event) {
3371                  *   event.stopPropagation();
3372                  * } )
3373                  * @desc Stop only an event from bubbling by using the stopPropagation method.
3374                  *
3375                  * @name bind
3376                  * @type jQuery
3377                  * @param String type An event type
3378                  * @param Function fn A function to bind to the event on each of the set of matched elements
3379                  * @cat Events
3380                  */
3381                 bind: function( type, fn ) {
3382                         if ( fn.constructor == String )
3383                                 fn = new Function("e", ( !fn.indexOf(".") ? "jQuery(this)" : "return " ) + fn);
3384                         jQuery.event.add( this, type, fn );
3385                 },
3386
3387                 /**
3388                  * The opposite of bind, removes a bound event from each of the matched
3389                  * elements. You must pass the identical function that was used in the original
3390                  * bind method.
3391                  *
3392                  * @example $("p").unbind( "click", function() { alert("Hello"); } )
3393                  * @before <p onclick="alert('Hello');">Hello</p>
3394                  * @result [ <p>Hello</p> ]
3395                  *
3396                  * @name unbind
3397                  * @type jQuery
3398                  * @param String type An event type
3399                  * @param Function fn A function to unbind from the event on each of the set of matched elements
3400                  * @cat Events
3401                  */
3402
3403                 /**
3404                  * Removes all bound events of a particular type from each of the matched
3405                  * elements.
3406                  *
3407                  * @example $("p").unbind( "click" )
3408                  * @before <p onclick="alert('Hello');">Hello</p>
3409                  * @result [ <p>Hello</p> ]
3410                  *
3411                  * @name unbind
3412                  * @type jQuery
3413                  * @param String type An event type
3414                  * @cat Events
3415                  */
3416
3417                 /**
3418                  * Removes all bound events from each of the matched elements.
3419                  *
3420                  * @example $("p").unbind()
3421                  * @before <p onclick="alert('Hello');">Hello</p>
3422                  * @result [ <p>Hello</p> ]
3423                  *
3424                  * @name unbind
3425                  * @type jQuery
3426                  * @cat Events
3427                  */
3428                 unbind: function( type, fn ) {
3429                         jQuery.event.remove( this, type, fn );
3430                 },
3431
3432                 /**
3433                  * Trigger a type of event on every matched element.
3434                  *
3435                  * @example $("p").trigger("click")
3436                  * @before <p click="alert('hello')">Hello</p>
3437                  * @result alert('hello')
3438                  *
3439                  * @name trigger
3440                  * @type jQuery
3441                  * @param String type An event type to trigger.
3442                  * @cat Events
3443                  */
3444                 trigger: function( type, data ) {
3445                         jQuery.event.trigger( type, data, this );
3446                 }
3447         }
3448 };
3449
3450 jQuery.init();