3a9eaa7de7741a93b646a54ec9f79a8bf433e427
[jquery.git] / src / core.js
1 var 
2         // Will speed up references to window, and allows munging its name.
3         window = this,
4         // Will speed up references to undefined, and allows munging its name.
5         undefined,
6         // Map over jQuery in case of overwrite
7         _jQuery = window.jQuery,
8         // Map over the $ in case of overwrite
9         _$ = window.$,
10
11         jQuery = window.jQuery = window.$ = function( selector, context ) {
12                 // The jQuery object is actually just the init constructor 'enhanced'
13                 return new jQuery.fn.init( selector, context );
14         },
15
16         // A simple way to check for HTML strings or ID strings
17         // (both of which we optimize for)
18         quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
19         // Is it a simple selector
20         isSimple = /^.[^:#\[\.,]*$/;
21
22 jQuery.fn = jQuery.prototype = {
23         init: function( selector, context ) {
24                 // Make sure that a selection was provided
25                 selector = selector || document;
26
27                 // Handle $(DOMElement)
28                 if ( selector.nodeType ) {
29                         this[0] = selector;
30                         this.length = 1;
31                         this.context = selector;
32                         return this;
33                 }
34                 // Handle HTML strings
35                 if ( typeof selector === "string" ) {
36                         // Are we dealing with HTML string or an ID?
37                         var match = quickExpr.exec( selector );
38
39                         // Verify a match, and that no context was specified for #id
40                         if ( match && (match[1] || !context) ) {
41
42                                 // HANDLE: $(html) -> $(array)
43                                 if ( match[1] )
44                                         selector = jQuery.clean( [ match[1] ], context );
45
46                                 // HANDLE: $("#id")
47                                 else {
48                                         var elem = document.getElementById( match[3] );
49
50                                         // Handle the case where IE and Opera return items
51                                         // by name instead of ID
52                                         if ( elem && elem.id != match[3] )
53                                                 return jQuery().find( selector );
54
55                                         // Otherwise, we inject the element directly into the jQuery object
56                                         var ret = jQuery( elem || [] );
57                                         ret.context = document;
58                                         ret.selector = selector;
59                                         return ret;
60                                 }
61
62                         // HANDLE: $(expr, [context])
63                         // (which is just equivalent to: $(content).find(expr)
64                         } else
65                                 return jQuery( context ).find( selector );
66
67                 // HANDLE: $(function)
68                 // Shortcut for document ready
69                 } else if ( jQuery.isFunction( selector ) )
70                         return jQuery( document ).ready( selector );
71
72                 // Make sure that old selector state is passed along
73                 if ( selector.selector && selector.context ) {
74                         this.selector = selector.selector;
75                         this.context = selector.context;
76                 }
77
78                 return this.setArray(jQuery.makeArray(selector));
79         },
80
81         // Start with an empty selector
82         selector: "",
83
84         // The current version of jQuery being used
85         jquery: "@VERSION",
86
87         // The number of elements contained in the matched element set
88         size: function() {
89                 return this.length;
90         },
91
92         // Get the Nth element in the matched element set OR
93         // Get the whole matched element set as a clean array
94         get: function( num ) {
95                 return num === undefined ?
96
97                         // Return a 'clean' array
98                         jQuery.makeArray( this ) :
99
100                         // Return just the object
101                         this[ num ];
102         },
103
104         // Take an array of elements and push it onto the stack
105         // (returning the new matched element set)
106         pushStack: function( elems, name, selector ) {
107                 // Build a new jQuery matched element set
108                 var ret = jQuery( elems );
109
110                 // Add the old object onto the stack (as a reference)
111                 ret.prevObject = this;
112
113                 ret.context = this.context;
114
115                 if ( name === "find" )
116                         ret.selector = this.selector + (this.selector ? " " : "") + selector;
117                 else if ( name )
118                         ret.selector = this.selector + "." + name + "(" + selector + ")";
119
120                 // Return the newly-formed element set
121                 return ret;
122         },
123
124         // Force the current matched set of elements to become
125         // the specified array of elements (destroying the stack in the process)
126         // You should use pushStack() in order to do this, but maintain the stack
127         setArray: function( elems ) {
128                 // Resetting the length to 0, then using the native Array push
129                 // is a super-fast way to populate an object with array-like properties
130                 this.length = 0;
131                 Array.prototype.push.apply( this, elems );
132
133                 return this;
134         },
135
136         // Execute a callback for every element in the matched set.
137         // (You can seed the arguments with an array of args, but this is
138         // only used internally.)
139         each: function( callback, args ) {
140                 return jQuery.each( this, callback, args );
141         },
142
143         // Determine the position of an element within
144         // the matched set of elements
145         index: function( elem ) {
146                 // Locate the position of the desired element
147                 return jQuery.inArray(
148                         // If it receives a jQuery object, the first element is used
149                         elem && elem.jquery ? elem[0] : elem
150                 , this );
151         },
152
153         attr: function( name, value, type ) {
154                 var options = name;
155
156                 // Look for the case where we're accessing a style value
157                 if ( typeof name === "string" )
158                         if ( value === undefined )
159                                 return this[0] && jQuery[ type || "attr" ]( this[0], name );
160
161                         else {
162                                 options = {};
163                                 options[ name ] = value;
164                         }
165
166                 // Check to see if we're setting style values
167                 return this.each(function(i){
168                         // Set all the styles
169                         for ( name in options )
170                                 jQuery.attr(
171                                         type ?
172                                                 this.style :
173                                                 this,
174                                         name, jQuery.prop( this, options[ name ], type, i, name )
175                                 );
176                 });
177         },
178
179         css: function( key, value ) {
180                 // ignore negative width and height values
181                 if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
182                         value = undefined;
183                 return this.attr( key, value, "curCSS" );
184         },
185
186         text: function( text ) {
187                 if ( typeof text !== "object" && text != null )
188                         return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );
189
190                 var ret = "";
191
192                 jQuery.each( text || this, function(){
193                         jQuery.each( this.childNodes, function(){
194                                 if ( this.nodeType != 8 )
195                                         ret += this.nodeType != 1 ?
196                                                 this.nodeValue :
197                                                 jQuery.fn.text( [ this ] );
198                         });
199                 });
200
201                 return ret;
202         },
203
204         wrapAll: function( html ) {
205                 if ( this[0] ) {
206                         // The elements to wrap the target around
207                         var wrap = jQuery( html, this[0].ownerDocument ).clone();
208
209                         if ( this[0].parentNode )
210                                 wrap.insertBefore( this[0] );
211
212                         wrap.map(function(){
213                                 var elem = this;
214
215                                 while ( elem.firstChild )
216                                         elem = elem.firstChild;
217
218                                 return elem;
219                         }).append(this);
220                 }
221
222                 return this;
223         },
224
225         wrapInner: function( html ) {
226                 return this.each(function(){
227                         jQuery( this ).contents().wrapAll( html );
228                 });
229         },
230
231         wrap: function( html ) {
232                 return this.each(function(){
233                         jQuery( this ).wrapAll( html );
234                 });
235         },
236
237         append: function() {
238                 return this.domManip(arguments, true, function(elem){
239                         if (this.nodeType == 1)
240                                 this.appendChild( elem );
241                 });
242         },
243
244         prepend: function() {
245                 return this.domManip(arguments, true, function(elem){
246                         if (this.nodeType == 1)
247                                 this.insertBefore( elem, this.firstChild );
248                 });
249         },
250
251         before: function() {
252                 return this.domManip(arguments, false, function(elem){
253                         this.parentNode.insertBefore( elem, this );
254                 });
255         },
256
257         after: function() {
258                 return this.domManip(arguments, false, function(elem){
259                         this.parentNode.insertBefore( elem, this.nextSibling );
260                 });
261         },
262
263         end: function() {
264                 return this.prevObject || jQuery( [] );
265         },
266
267         // For internal use only.
268         // Behaves like an Array's .push method, not like a jQuery method.
269         push: [].push,
270
271         find: function( selector ) {
272                 if ( this.length === 1 && !/,/.test(selector) ) {
273                         var ret = this.pushStack( [], "find", selector );
274                         ret.length = 0;
275                         jQuery.find( selector, this[0], ret );
276                         return ret;
277                 } else {
278                         var elems = jQuery.map(this, function(elem){
279                                 return jQuery.find( selector, elem );
280                         });
281
282                         return this.pushStack( /[^+>] [^+>]/.test( selector ) ?
283                                 jQuery.unique( elems ) :
284                                 elems, "find", selector );
285                 }
286         },
287
288         clone: function( events ) {
289                 // Do the clone
290                 var ret = this.map(function(){
291                         if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
292                                 // IE copies events bound via attachEvent when
293                                 // using cloneNode. Calling detachEvent on the
294                                 // clone will also remove the events from the orignal
295                                 // In order to get around this, we use innerHTML.
296                                 // Unfortunately, this means some modifications to
297                                 // attributes in IE that are actually only stored
298                                 // as properties will not be copied (such as the
299                                 // the name attribute on an input).
300                                 var html = this.outerHTML;
301                                 if ( !html ) {
302                                         var div = this.ownerDocument.createElement("div");
303                                         div.appendChild( this.cloneNode(true) );
304                                         html = div.innerHTML;
305                                 }
306
307                                 return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")])[0];
308                         } else
309                                 return this.cloneNode(true);
310                 });
311
312                 // Copy the events from the original to the clone
313                 if ( events === true ) {
314                         var orig = this.find("*").andSelf(), i = 0;
315
316                         ret.find("*").andSelf().each(function(){
317                                 if ( this.nodeName !== orig[i].nodeName )
318                                         return;
319
320                                 var events = jQuery.data( orig[i], "events" );
321
322                                 for ( var type in events ) {
323                                         for ( var handler in events[ type ] ) {
324                                                 jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
325                                         }
326                                 }
327
328                                 i++;
329                         });
330                 }
331
332                 // Return the cloned set
333                 return ret;
334         },
335
336         filter: function( selector ) {
337                 return this.pushStack(
338                         jQuery.isFunction( selector ) &&
339                         jQuery.grep(this, function(elem, i){
340                                 return selector.call( elem, i );
341                         }) ||
342
343                         jQuery.multiFilter( selector, jQuery.grep(this, function(elem){
344                                 return elem.nodeType === 1;
345                         }) ), "filter", selector );
346         },
347
348         closest: function( selector ) {
349                 var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null;
350
351                 return this.map(function(){
352                         var cur = this;
353                         while ( cur && cur.ownerDocument ) {
354                                 if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) )
355                                         return cur;
356                                 cur = cur.parentNode;
357                         }
358                 });
359         },
360
361         not: function( selector ) {
362                 if ( typeof selector === "string" )
363                         // test special case where just one selector is passed in
364                         if ( isSimple.test( selector ) )
365                                 return this.pushStack( jQuery.multiFilter( selector, this, true ), "not", selector );
366                         else
367                                 selector = jQuery.multiFilter( selector, this );
368
369                 var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
370                 return this.filter(function() {
371                         return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
372                 });
373         },
374
375         add: function( selector ) {
376                 return this.pushStack( jQuery.unique( jQuery.merge(
377                         this.get(),
378                         typeof selector === "string" ?
379                                 jQuery( selector ) :
380                                 jQuery.makeArray( selector )
381                 )));
382         },
383
384         is: function( selector ) {
385                 return !!selector && jQuery.multiFilter( selector, this ).length > 0;
386         },
387
388         hasClass: function( selector ) {
389                 return !!selector && this.is( "." + selector );
390         },
391
392         val: function( value ) {
393                 if ( value === undefined ) {                    
394                         var elem = this[0];
395
396                         if ( elem ) {
397                                 if( jQuery.nodeName( elem, 'option' ) )
398                                         return (elem.attributes.value || {}).specified ? elem.value : elem.text;
399                                 
400                                 // We need to handle select boxes special
401                                 if ( jQuery.nodeName( elem, "select" ) ) {
402                                         var index = elem.selectedIndex,
403                                                 values = [],
404                                                 options = elem.options,
405                                                 one = elem.type == "select-one";
406
407                                         // Nothing was selected
408                                         if ( index < 0 )
409                                                 return null;
410
411                                         // Loop through all the selected options
412                                         for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
413                                                 var option = options[ i ];
414
415                                                 if ( option.selected ) {
416                                                         // Get the specifc value for the option
417                                                         value = jQuery(option).val();
418
419                                                         // We don't need an array for one selects
420                                                         if ( one )
421                                                                 return value;
422
423                                                         // Multi-Selects return an array
424                                                         values.push( value );
425                                                 }
426                                         }
427
428                                         return values;                          
429                                 }
430
431                                 // Everything else, we just grab the value
432                                 return (elem.value || "").replace(/\r/g, "");
433
434                         }
435
436                         return undefined;
437                 }
438
439                 if ( typeof value === "number" )
440                         value += '';
441
442                 return this.each(function(){
443                         if ( this.nodeType != 1 )
444                                 return;
445
446                         if ( jQuery.isArray(value) && /radio|checkbox/.test( this.type ) )
447                                 this.checked = (jQuery.inArray(this.value, value) >= 0 ||
448                                         jQuery.inArray(this.name, value) >= 0);
449
450                         else if ( jQuery.nodeName( this, "select" ) ) {
451                                 var values = jQuery.makeArray(value);
452
453                                 jQuery( "option", this ).each(function(){
454                                         this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
455                                                 jQuery.inArray( this.text, values ) >= 0);
456                                 });
457
458                                 if ( !values.length )
459                                         this.selectedIndex = -1;
460
461                         } else
462                                 this.value = value;
463                 });
464         },
465
466         html: function( value ) {
467                 return value === undefined ?
468                         (this[0] ?
469                                 this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g, "") :
470                                 null) :
471                         this.empty().append( value );
472         },
473
474         replaceWith: function( value ) {
475                 return this.after( value ).remove();
476         },
477
478         eq: function( i ) {
479                 return this.slice( i, +i + 1 );
480         },
481
482         slice: function() {
483                 return this.pushStack( Array.prototype.slice.apply( this, arguments ),
484                         "slice", Array.prototype.slice.call(arguments).join(",") );
485         },
486
487         map: function( callback ) {
488                 return this.pushStack( jQuery.map(this, function(elem, i){
489                         return callback.call( elem, i, elem );
490                 }));
491         },
492
493         andSelf: function() {
494                 return this.add( this.prevObject );
495         },
496
497         domManip: function( args, table, callback ) {
498                 if ( this[0] ) {
499                         var fragment = (this[0].ownerDocument || this[0]).createDocumentFragment(),
500                                 scripts = jQuery.clean( args, (this[0].ownerDocument || this[0]), fragment ),
501                                 first = fragment.firstChild,
502                                 extra = this.length > 1 ? fragment.cloneNode(true) : fragment;
503
504                         if ( first )
505                                 for ( var i = 0, l = this.length; i < l; i++ )
506                                         callback.call( root(this[i], first), i > 0 ? extra.cloneNode(true) : fragment );
507                         
508                         if ( scripts )
509                                 jQuery.each( scripts, evalScript );
510                 }
511
512                 return this;
513                 
514                 function root( elem, cur ) {
515                         return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
516                                 (elem.getElementsByTagName("tbody")[0] ||
517                                 elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
518                                 elem;
519                 }
520         }
521 };
522
523 // Give the init function the jQuery prototype for later instantiation
524 jQuery.fn.init.prototype = jQuery.fn;
525
526 function evalScript( i, elem ) {
527         if ( elem.src )
528                 jQuery.ajax({
529                         url: elem.src,
530                         async: false,
531                         dataType: "script"
532                 });
533
534         else
535                 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
536
537         if ( elem.parentNode )
538                 elem.parentNode.removeChild( elem );
539 }
540
541 function now(){
542         return +new Date;
543 }
544
545 jQuery.extend = jQuery.fn.extend = function() {
546         // copy reference to target object
547         var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;
548
549         // Handle a deep copy situation
550         if ( typeof target === "boolean" ) {
551                 deep = target;
552                 target = arguments[1] || {};
553                 // skip the boolean and the target
554                 i = 2;
555         }
556
557         // Handle case when target is a string or something (possible in deep copy)
558         if ( typeof target !== "object" && !jQuery.isFunction(target) )
559                 target = {};
560
561         // extend jQuery itself if only one argument is passed
562         if ( length == i ) {
563                 target = this;
564                 --i;
565         }
566
567         for ( ; i < length; i++ )
568                 // Only deal with non-null/undefined values
569                 if ( (options = arguments[ i ]) != null )
570                         // Extend the base object
571                         for ( var name in options ) {
572                                 var src = target[ name ], copy = options[ name ];
573
574                                 // Prevent never-ending loop
575                                 if ( target === copy )
576                                         continue;
577
578                                 // Recurse if we're merging object values
579                                 if ( deep && copy && typeof copy === "object" && !copy.nodeType )
580                                         target[ name ] = jQuery.extend( deep, 
581                                                 // Never move original objects, clone them
582                                                 src || ( copy.length != null ? [ ] : { } )
583                                         , copy );
584
585                                 // Don't bring in undefined values
586                                 else if ( copy !== undefined )
587                                         target[ name ] = copy;
588
589                         }
590
591         // Return the modified object
592         return target;
593 };
594
595 // exclude the following css properties to add px
596 var     exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
597         // cache defaultView
598         defaultView = document.defaultView || {},
599         toString = Object.prototype.toString;
600
601 jQuery.extend({
602         noConflict: function( deep ) {
603                 window.$ = _$;
604
605                 if ( deep )
606                         window.jQuery = _jQuery;
607
608                 return jQuery;
609         },
610
611         // See test/unit/core.js for details concerning isFunction.
612         // Since version 1.3, DOM methods and functions like alert
613         // aren't supported. They return false on IE (#2968).
614         isFunction: function( obj ) {
615                 return toString.call(obj) === "[object Function]";
616         },
617
618         isArray: function( obj ) {
619                 return toString.call(obj) === "[object Array]";
620         },
621
622         // check if an element is in a (or is an) XML document
623         isXMLDoc: function( elem ) {
624                 return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
625                         !!elem.ownerDocument && jQuery.isXMLDoc( elem.ownerDocument );
626         },
627
628         // Evalulates a script in a global context
629         globalEval: function( data ) {
630                 if ( data && /\S/.test(data) ) {
631                         // Inspired by code by Andrea Giammarchi
632                         // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
633                         var head = document.getElementsByTagName("head")[0] || document.documentElement,
634                                 script = document.createElement("script");
635
636                         script.type = "text/javascript";
637                         if ( jQuery.support.scriptEval )
638                                 script.appendChild( document.createTextNode( data ) );
639                         else
640                                 script.text = data;
641
642                         // Use insertBefore instead of appendChild  to circumvent an IE6 bug.
643                         // This arises when a base node is used (#2709).
644                         head.insertBefore( script, head.firstChild );
645                         head.removeChild( script );
646                 }
647         },
648
649         nodeName: function( elem, name ) {
650                 return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
651         },
652
653         // args is for internal usage only
654         each: function( object, callback, args ) {
655                 var name, i = 0, length = object.length;
656
657                 if ( args ) {
658                         if ( length === undefined ) {
659                                 for ( name in object )
660                                         if ( callback.apply( object[ name ], args ) === false )
661                                                 break;
662                         } else
663                                 for ( ; i < length; )
664                                         if ( callback.apply( object[ i++ ], args ) === false )
665                                                 break;
666
667                 // A special, fast, case for the most common use of each
668                 } else {
669                         if ( length === undefined ) {
670                                 for ( name in object )
671                                         if ( callback.call( object[ name ], name, object[ name ] ) === false )
672                                                 break;
673                         } else
674                                 for ( var value = object[0];
675                                         i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
676                 }
677
678                 return object;
679         },
680
681         prop: function( elem, value, type, i, name ) {
682                 // Handle executable functions
683                 if ( jQuery.isFunction( value ) )
684                         value = value.call( elem, i );
685
686                 // Handle passing in a number to a CSS property
687                 return typeof value === "number" && type == "curCSS" && !exclude.test( name ) ?
688                         value + "px" :
689                         value;
690         },
691
692         className: {
693                 // internal only, use addClass("class")
694                 add: function( elem, classNames ) {
695                         jQuery.each((classNames || "").split(/\s+/), function(i, className){
696                                 if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
697                                         elem.className += (elem.className ? " " : "") + className;
698                         });
699                 },
700
701                 // internal only, use removeClass("class")
702                 remove: function( elem, classNames ) {
703                         if (elem.nodeType == 1)
704                                 elem.className = classNames !== undefined ?
705                                         jQuery.grep(elem.className.split(/\s+/), function(className){
706                                                 return !jQuery.className.has( classNames, className );
707                                         }).join(" ") :
708                                         "";
709                 },
710
711                 // internal only, use hasClass("class")
712                 has: function( elem, className ) {
713                         return elem && jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
714                 }
715         },
716
717         // A method for quickly swapping in/out CSS properties to get correct calculations
718         swap: function( elem, options, callback ) {
719                 var old = {};
720                 // Remember the old values, and insert the new ones
721                 for ( var name in options ) {
722                         old[ name ] = elem.style[ name ];
723                         elem.style[ name ] = options[ name ];
724                 }
725
726                 callback.call( elem );
727
728                 // Revert the old values
729                 for ( var name in options )
730                         elem.style[ name ] = old[ name ];
731         },
732
733         css: function( elem, name, force ) {
734                 if ( name == "width" || name == "height" ) {
735                         var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];
736
737                         function getWH() {
738                                 val = name == "width" ? elem.offsetWidth : elem.offsetHeight;
739                                 var padding = 0, border = 0;
740                                 jQuery.each( which, function() {
741                                         padding += parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
742                                         border += parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
743                                 });
744                                 val -= Math.round(padding + border);
745                         }
746
747                         if ( jQuery(elem).is(":visible") )
748                                 getWH();
749                         else
750                                 jQuery.swap( elem, props, getWH );
751
752                         return Math.max(0, val);
753                 }
754
755                 return jQuery.curCSS( elem, name, force );
756         },
757
758         curCSS: function( elem, name, force ) {
759                 var ret, style = elem.style;
760
761                 // We need to handle opacity special in IE
762                 if ( name == "opacity" && !jQuery.support.opacity ) {
763                         ret = jQuery.attr( style, "opacity" );
764
765                         return ret == "" ?
766                                 "1" :
767                                 ret;
768                 }
769
770                 // Make sure we're using the right name for getting the float value
771                 if ( name.match( /float/i ) )
772                         name = styleFloat;
773
774                 if ( !force && style && style[ name ] )
775                         ret = style[ name ];
776
777                 else if ( defaultView.getComputedStyle ) {
778
779                         // Only "float" is needed here
780                         if ( name.match( /float/i ) )
781                                 name = "float";
782
783                         name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();
784
785                         var computedStyle = defaultView.getComputedStyle( elem, null );
786
787                         if ( computedStyle )
788                                 ret = computedStyle.getPropertyValue( name );
789
790                         // We should always get a number back from opacity
791                         if ( name == "opacity" && ret == "" )
792                                 ret = "1";
793
794                 } else if ( elem.currentStyle ) {
795                         var camelCase = name.replace(/\-(\w)/g, function(all, letter){
796                                 return letter.toUpperCase();
797                         });
798
799                         ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
800
801                         // From the awesome hack by Dean Edwards
802                         // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
803
804                         // If we're not dealing with a regular pixel number
805                         // but a number that has a weird ending, we need to convert it to pixels
806                         if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
807                                 // Remember the original values
808                                 var left = style.left, rsLeft = elem.runtimeStyle.left;
809
810                                 // Put in the new values to get a computed value out
811                                 elem.runtimeStyle.left = elem.currentStyle.left;
812                                 style.left = ret || 0;
813                                 ret = style.pixelLeft + "px";
814
815                                 // Revert the changed values
816                                 style.left = left;
817                                 elem.runtimeStyle.left = rsLeft;
818                         }
819                 }
820
821                 return ret;
822         },
823
824         clean: function( elems, context, fragment ) {
825                 context = context || document;
826
827                 // !context.createElement fails in IE with an error but returns typeof 'object'
828                 if ( typeof context.createElement === "undefined" )
829                         context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
830
831                 // If a single string is passed in and it's a single tag
832                 // just do a createElement and skip the rest
833                 if ( !fragment && elems.length === 1 && typeof elems[0] === "string" ) {
834                         var match = /^<(\w+)\s*\/?>$/.exec(elems[0]);
835                         if ( match )
836                                 return [ context.createElement( match[1] ) ];
837                 }
838
839                 var ret = [], scripts = [], div = context.createElement("div");
840
841                 jQuery.each(elems, function(i, elem){
842                         if ( typeof elem === "number" )
843                                 elem += '';
844
845                         if ( !elem )
846                                 return;
847
848                         // Convert html string into DOM nodes
849                         if ( typeof elem === "string" ) {
850                                 // Fix "XHTML"-style tags in all browsers
851                                 elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
852                                         return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
853                                                 all :
854                                                 front + "></" + tag + ">";
855                                 });
856
857                                 // Trim whitespace, otherwise indexOf won't work as expected
858                                 var tags = elem.replace(/^\s+/, "").substring(0, 10).toLowerCase();
859
860                                 var wrap =
861                                         // option or optgroup
862                                         !tags.indexOf("<opt") &&
863                                         [ 1, "<select multiple='multiple'>", "</select>" ] ||
864
865                                         !tags.indexOf("<leg") &&
866                                         [ 1, "<fieldset>", "</fieldset>" ] ||
867
868                                         tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
869                                         [ 1, "<table>", "</table>" ] ||
870
871                                         !tags.indexOf("<tr") &&
872                                         [ 2, "<table><tbody>", "</tbody></table>" ] ||
873
874                                         // <thead> matched above
875                                         (!tags.indexOf("<td") || !tags.indexOf("<th")) &&
876                                         [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
877
878                                         !tags.indexOf("<col") &&
879                                         [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
880
881                                         // IE can't serialize <link> and <script> tags normally
882                                         !jQuery.support.htmlSerialize &&
883                                         [ 1, "div<div>", "</div>" ] ||
884
885                                         [ 0, "", "" ];
886
887                                 // Go to html and back, then peel off extra wrappers
888                                 div.innerHTML = wrap[1] + elem + wrap[2];
889
890                                 // Move to the right depth
891                                 while ( wrap[0]-- )
892                                         div = div.lastChild;
893
894                                 // Remove IE's autoinserted <tbody> from table fragments
895                                 if ( !jQuery.support.tbody ) {
896
897                                         // String was a <table>, *may* have spurious <tbody>
898                                         var hasBody = /<tbody/i.test(elem),
899                                                 tbody = !tags.indexOf("<table") && !hasBody ?
900                                                         div.firstChild && div.firstChild.childNodes :
901
902                                                 // String was a bare <thead> or <tfoot>
903                                                 wrap[1] == "<table>" && !hasBody ?
904                                                         div.childNodes :
905                                                         [];
906
907                                         for ( var j = tbody.length - 1; j >= 0 ; --j )
908                                                 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
909                                                         tbody[ j ].parentNode.removeChild( tbody[ j ] );
910
911                                         }
912
913                                 // IE completely kills leading whitespace when innerHTML is used
914                                 if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) )
915                                         div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
916                                 
917                                 elem = jQuery.makeArray( div.childNodes );
918                         }
919
920                         if ( elem.nodeType )
921                                 ret.push( elem );
922                         else
923                                 ret = jQuery.merge( ret, elem );
924
925                 });
926
927                 if ( fragment ) {
928                         for ( var i = 0; ret[i]; i++ ) {
929                                 if ( jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
930                                         scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
931                                 } else {
932                                         if ( ret[i].nodeType === 1 )
933                                                 ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
934                                         fragment.appendChild( ret[i] );
935                                 }
936                         }
937                         
938                         return scripts;
939                 }
940
941                 return ret;
942         },
943
944         attr: function( elem, name, value ) {
945                 // don't set attributes on text and comment nodes
946                 if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
947                         return undefined;
948
949                 var notxml = !jQuery.isXMLDoc( elem ),
950                         // Whether we are setting (or getting)
951                         set = value !== undefined;
952
953                 // Try to normalize/fix the name
954                 name = notxml && jQuery.props[ name ] || name;
955
956                 // Only do all the following if this is a node (faster for style)
957                 // IE elem.getAttribute passes even for style
958                 if ( elem.tagName ) {
959
960                         // These attributes require special treatment
961                         var special = /href|src|style/.test( name );
962
963                         // Safari mis-reports the default selected property of a hidden option
964                         // Accessing the parent's selectedIndex property fixes it
965                         if ( name == "selected" && elem.parentNode )
966                                 elem.parentNode.selectedIndex;
967
968                         // If applicable, access the attribute via the DOM 0 way
969                         if ( name in elem && notxml && !special ) {
970                                 if ( set ){
971                                         // We can't allow the type property to be changed (since it causes problems in IE)
972                                         if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
973                                                 throw "type property can't be changed";
974
975                                         elem[ name ] = value;
976                                 }
977
978                                 // browsers index elements by id/name on forms, give priority to attributes.
979                                 if( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) )
980                                         return elem.getAttributeNode( name ).nodeValue;
981
982                                 // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
983                                 // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
984                                 if ( name == "tabIndex" ) {
985                                         var attributeNode = elem.getAttributeNode( "tabIndex" );
986                                         return attributeNode && attributeNode.specified
987                                                 ? attributeNode.value
988                                                 : elem.nodeName.match(/(button|input|object|select|textarea)/i)
989                                                         ? 0
990                                                         : elem.nodeName.match(/^(a|area)$/i) && elem.href
991                                                                 ? 0
992                                                                 : undefined;
993                                 }
994
995                                 return elem[ name ];
996                         }
997
998                         if ( !jQuery.support.style && notxml &&  name == "style" )
999                                 return jQuery.attr( elem.style, "cssText", value );
1000
1001                         if ( set )
1002                                 // convert the value to a string (all browsers do this but IE) see #1070
1003                                 elem.setAttribute( name, "" + value );
1004
1005                         var attr = !jQuery.support.hrefNormalized && notxml && special
1006                                         // Some attributes require a special call on IE
1007                                         ? elem.getAttribute( name, 2 )
1008                                         : elem.getAttribute( name );
1009
1010                         // Non-existent attributes return null, we normalize to undefined
1011                         return attr === null ? undefined : attr;
1012                 }
1013
1014                 // elem is actually elem.style ... set the style
1015
1016                 // IE uses filters for opacity
1017                 if ( !jQuery.support.opacity && name == "opacity" ) {
1018                         if ( set ) {
1019                                 // IE has trouble with opacity if it does not have layout
1020                                 // Force it by setting the zoom level
1021                                 elem.zoom = 1;
1022
1023                                 // Set the alpha filter to set the opacity
1024                                 elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
1025                                         (parseInt( value ) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
1026                         }
1027
1028                         return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
1029                                 (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100) + '':
1030                                 "";
1031                 }
1032
1033                 name = name.replace(/-([a-z])/ig, function(all, letter){
1034                         return letter.toUpperCase();
1035                 });
1036
1037                 if ( set )
1038                         elem[ name ] = value;
1039
1040                 return elem[ name ];
1041         },
1042
1043         trim: function( text ) {
1044                 return (text || "").replace( /^\s+|\s+$/g, "" );
1045         },
1046
1047         makeArray: function( array ) {
1048                 var ret = [];
1049
1050                 if( array != null ){
1051                         var i = array.length;
1052                         // The window, strings (and functions) also have 'length'
1053                         if( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval )
1054                                 ret[0] = array;
1055                         else
1056                                 while( i )
1057                                         ret[--i] = array[i];
1058                 }
1059
1060                 return ret;
1061         },
1062
1063         inArray: function( elem, array ) {
1064                 for ( var i = 0, length = array.length; i < length; i++ )
1065                 // Use === because on IE, window == document
1066                         if ( array[ i ] === elem )
1067                                 return i;
1068
1069                 return -1;
1070         },
1071
1072         merge: function( first, second ) {
1073                 // We have to loop this way because IE & Opera overwrite the length
1074                 // expando of getElementsByTagName
1075                 var i = 0, elem, pos = first.length;
1076                 // Also, we need to make sure that the correct elements are being returned
1077                 // (IE returns comment nodes in a '*' query)
1078                 if ( !jQuery.support.getAll ) {
1079                         while ( (elem = second[ i++ ]) != null )
1080                                 if ( elem.nodeType != 8 )
1081                                         first[ pos++ ] = elem;
1082
1083                 } else
1084                         while ( (elem = second[ i++ ]) != null )
1085                                 first[ pos++ ] = elem;
1086
1087                 return first;
1088         },
1089
1090         unique: function( array ) {
1091                 var ret = [], done = {};
1092
1093                 try {
1094
1095                         for ( var i = 0, length = array.length; i < length; i++ ) {
1096                                 var id = jQuery.data( array[ i ] );
1097
1098                                 if ( !done[ id ] ) {
1099                                         done[ id ] = true;
1100                                         ret.push( array[ i ] );
1101                                 }
1102                         }
1103
1104                 } catch( e ) {
1105                         ret = array;
1106                 }
1107
1108                 return ret;
1109         },
1110
1111         grep: function( elems, callback, inv ) {
1112                 var ret = [];
1113
1114                 // Go through the array, only saving the items
1115                 // that pass the validator function
1116                 for ( var i = 0, length = elems.length; i < length; i++ )
1117                         if ( !inv != !callback( elems[ i ], i ) )
1118                                 ret.push( elems[ i ] );
1119
1120                 return ret;
1121         },
1122
1123         map: function( elems, callback ) {
1124                 var ret = [];
1125
1126                 // Go through the array, translating each of the items to their
1127                 // new value (or values).
1128                 for ( var i = 0, length = elems.length; i < length; i++ ) {
1129                         var value = callback( elems[ i ], i );
1130
1131                         if ( value != null )
1132                                 ret[ ret.length ] = value;
1133                 }
1134
1135                 return ret.concat.apply( [], ret );
1136         }
1137 });
1138
1139 // Use of jQuery.browser is deprecated.
1140 // It's included for backwards compatibility and plugins,
1141 // although they should work to migrate away.
1142
1143 var userAgent = navigator.userAgent.toLowerCase();
1144
1145 // Figure out what browser is being used
1146 jQuery.browser = {
1147         version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
1148         safari: /webkit/.test( userAgent ),
1149         opera: /opera/.test( userAgent ),
1150         msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
1151         mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
1152 };
1153
1154 jQuery.each({
1155         parent: function(elem){return elem.parentNode;},
1156         parents: function(elem){return jQuery.dir(elem,"parentNode");},
1157         next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
1158         prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
1159         nextAll: function(elem){return jQuery.dir(elem,"nextSibling");},
1160         prevAll: function(elem){return jQuery.dir(elem,"previousSibling");},
1161         siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
1162         children: function(elem){return jQuery.sibling(elem.firstChild);},
1163         contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}
1164 }, function(name, fn){
1165         jQuery.fn[ name ] = function( selector ) {
1166                 var ret = jQuery.map( this, fn );
1167
1168                 if ( selector && typeof selector == "string" )
1169                         ret = jQuery.multiFilter( selector, ret );
1170
1171                 return this.pushStack( jQuery.unique( ret ), name, selector );
1172         };
1173 });
1174
1175 jQuery.each({
1176         appendTo: "append",
1177         prependTo: "prepend",
1178         insertBefore: "before",
1179         insertAfter: "after",
1180         replaceAll: "replaceWith"
1181 }, function(name, original){
1182         jQuery.fn[ name ] = function() {
1183                 var args = arguments;
1184
1185                 return this.each(function(){
1186                         for ( var i = 0, length = args.length; i < length; i++ )
1187                                 jQuery( args[ i ] )[ original ]( this );
1188                 });
1189         };
1190 });
1191
1192 jQuery.each({
1193         removeAttr: function( name ) {
1194                 jQuery.attr( this, name, "" );
1195                 if (this.nodeType == 1)
1196                         this.removeAttribute( name );
1197         },
1198
1199         addClass: function( classNames ) {
1200                 jQuery.className.add( this, classNames );
1201         },
1202
1203         removeClass: function( classNames ) {
1204                 jQuery.className.remove( this, classNames );
1205         },
1206
1207         toggleClass: function( classNames, state ) {
1208                 if( typeof state !== "boolean" )
1209                         state = !jQuery.className.has( this, classNames );
1210                 jQuery.className[ state ? "add" : "remove" ]( this, classNames );
1211         },
1212
1213         remove: function( selector ) {
1214                 if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
1215                         // Prevent memory leaks
1216                         jQuery( "*", this ).add([this]).each(function(){
1217                                 jQuery.event.remove(this);
1218                                 jQuery.removeData(this);
1219                         });
1220                         if (this.parentNode)
1221                                 this.parentNode.removeChild( this );
1222                 }
1223         },
1224
1225         empty: function() {
1226                 // Remove element nodes and prevent memory leaks
1227                 jQuery( ">*", this ).remove();
1228
1229                 // Remove any remaining nodes
1230                 while ( this.firstChild )
1231                         this.removeChild( this.firstChild );
1232         }
1233 }, function(name, fn){
1234         jQuery.fn[ name ] = function(){
1235                 return this.each( fn, arguments );
1236         };
1237 });
1238
1239 // Helper function used by the dimensions and offset modules
1240 function num(elem, prop) {
1241         return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
1242 }