Removed recent cssText addition, doesn't work as expected.
[jquery.git] / jquery / jquery.js
1 /*
2  * jQuery (jquery.com)
3  *
4  * Copyright (c) 2006 John Resig (ejohn.org)
5  * Licensed under the MIT License:
6  *   http://www.opensource.org/licenses/mit-license.php
7  *
8  * $Date$
9  * $Rev$
10  */
11
12 /* For JSLint (jslint.com): */
13 /*extern ActiveXObject Prototype setTimeout setInterval clearInterval document window XMLHttpRequest navigator*/
14
15 function $(a,c) {
16         var $a = a || $.context || document;
17         var $c = c && c.$jquery && c.get(0) || c;
18         
19         // Since we're using Prototype's $ function,
20         // be nice and have backwards compatability
21         if ( typeof Prototype != "undefined" ) {
22                 if ( $a.constructor == String ) {
23                         var re = new RegExp( "[^a-zA-Z0-9_-]" );
24                         if ( !re.test($a) ) {
25                                 $c = $c && $c.documentElement || document;
26                                 if ( $c.getElementsByTagName($a).length === 0 ) {
27                                         var obj = $c.getElementById($a);
28                                         if ( obj ) { return obj; }
29                                 }
30                         }
31                 } else if ( $a.constructor == Array ) {
32                         return $.map( $a, function(b){
33                                 if ( b.constructor == String ) {
34                                         return document.getElementById(b);
35                                 }
36                                 return b;
37                         });
38                 }
39         }
40
41         // Load Dynamic Function List
42         var self = {
43                 cur: $.Select($a,$c),
44                 $jquery: "$Rev$",
45                 
46                 // The only two getters
47                 size: function() {return this.get().length;},
48                 get: function(i) {
49                         return typeof i == 'undefined' ? this.cur : this.cur[i];
50                 },
51                 
52                 each: function(f) {
53                         for ( var i = 0; i < this.size(); i++ ) {
54                                 $.apply( this.get(i), f, [i] );
55                         }
56                         return this;
57                 },
58                 set: function(a,b) {
59                         return this.each(function(){
60                                 if ( typeof b == 'undefined' ) {
61                                         for ( var j in a ) {
62                                                 $.attr(this,j,a[j]);
63                                         }
64                                 } else {
65                                         $.attr(this,a,b);
66                                 }
67                         });
68                 },
69                 html: function(h) {
70                         return typeof h == 'undefined' && this.size() ?
71                                 this.get(0).innerHTML : this.set( "innerHTML", h );
72                 },
73                 val: function(h) {
74                         return typeof h == 'undefined' && this.size() ?
75                                 this.get(0).value : this.set( "value", h );
76                 },
77                 
78                 css: function(a,b) {
79                         return  a.constructor != String || b ?
80                                 this.each(function(){
81                                         if ( !b ) {
82                                                 for ( var j in a ) {
83                                                         $.attr(this.style,j,a[j]);
84                                                 }
85                                         } else {
86                                                 $.attr(this.style,a,b);
87                                         }
88                                 }) : $.css( this.get(0), a );
89                 },
90                 toggle: function() {
91                         return this.each(function(){
92                                 var d = $.getCSS(this,"display");
93                                 if ( d == "none" || d === '' ) {
94                                         $(this).show();
95                                 } else {
96                                         $(this).hide();
97                                 }
98                         });
99                 },
100                 show: function(a) {
101                         return this.each(function(){
102                                 this.style.display = this.$$oldblock ? this.$$oldblock : '';
103                                 if ( $.getCSS(this,"display") == "none" ) {
104                                         this.style.display = 'block';
105                                 }
106                         });
107                 },
108                 hide: function(a) {
109                         return this.each(function(){
110                                 this.$$oldblock = $.getCSS(this,"display");
111                                 if ( this.$$oldblock == "none" ) {
112                                         this.$$oldblock = 'block';
113                                 }
114                                 this.style.display = 'none';
115                         });
116                 },
117                 addClass: function(c) {
118                         return this.each(function(){
119                                 if ($.hasWord(this,c)) {
120                                         return null;
121                                 }
122                                 this.className += ( this.className.length > 0 ? " " : "" ) + c;
123                         });
124                 },
125                 removeClass: function(c) {
126                         return this.each(function(){
127                                 this.className = !c ? '' :
128                                         this.className.replace(
129                                                 new RegExp('(^|\\s*\\b[^-])'+c+'($|\\b(?=[^-]))', 'g'), '');
130                         });
131                 },
132                 // TODO: Optomize
133                 toggleClass: function(c) {
134                         return this.each(function(){
135                                 if ($.hasWord(this,c)) {
136                                         this.className = 
137                                                 this.className.replace(
138                                                         new RegExp('(\\s*\\b[^-])'+c+'($|\\b(?=[^-]))', 'g'), '');
139                                 } else {
140                                         this.className += ( this.className.length > 0 ? " " : "" ) + c;
141                                 }
142                         });
143                 },
144                 remove: function() {
145                         this.each(function(){this.parentNode.removeChild( this );});
146                         this.cur = [];
147                         return this;
148                 },
149                 
150                 wrap: function() {
151                         var a = $.clean(arguments);
152                         return this.each(function(){
153                                 var b = a[0].cloneNode(true);
154                                 this.parentNode.insertBefore( b, this );
155                                 while ( b.firstChild ) {
156                                         b = b.firstChild;
157                                 }
158                                 b.appendChild( this );
159                         });
160                 },
161                 
162                 append: function() {
163                         var clone = this.size() > 1;
164                         var a = $.clean(arguments);
165                         return this.each(function(){
166                                 for ( var i = 0; i < a.length; i++ ) {
167                                   this.appendChild( clone ? a[i].cloneNode(true) : a[i] );
168                                 }
169                         });
170                 },
171
172                 appendTo: function() {
173                         var a = arguments;
174                         return this.each(function(){
175                                 for ( var i = 0; i < a.length; i++ ) {
176                                         $(a[i]).append( this );
177                                 }
178                         });
179                 },
180                 
181                 prepend: function() {
182                         var clone = this.size() > 1;
183                         var a = $.clean(arguments);
184                         return this.each(function(){
185                                 for ( var i = a.length - 1; i >= 0; i-- ) {
186                                         this.insertBefore( clone ? a[i].cloneNode(true) : a[i], this.firstChild );
187                                 }
188                         });
189                 },
190                 
191                 before: function() {
192                         var clone = this.size() > 1;
193                         var a = $.clean(arguments);
194                         return this.each(function(){
195                                 for ( var i = 0; i < a.length; i++ ) {
196                                         this.parentNode.insertBefore( clone ? a[i].cloneNode(true) : a[i], this );
197                                 }
198                         });
199                 },
200                 
201                 after: function() {
202                         var clone = this.size() > 1;
203                         var a = $.clean(arguments);
204                         return this.each(function(){
205                                 for ( var i = a.length - 1; i >= 0; i-- ) {
206                                         this.parentNode.insertBefore( clone ? a[i].cloneNode(true) : a[i], this.nextSibling );
207                                 }
208                         });
209                 },
210
211                 empty: function() {
212                         return this.each(function(){
213                                 while ( this.firstChild ) {
214                                         this.removeChild( this.firstChild );
215                                 }
216                         });
217                 },
218                 
219                 bind: function(t,f) {
220                         return this.each(function(){$.event.add(this,t,f);});
221                 },
222                 unbind: function(t,f) {
223                         return this.each(function(){$.event.remove(this,t,f);});
224                 },
225                 trigger: function(t) {
226                         return this.each(function(){$.event.trigger(this,t);});
227                 },
228                 
229                 find: function(t) {
230                         var old = [], ret = [];
231                         this.each(function(){
232                                 old[old.length] = this;
233                                 ret = $.merge( ret, $.Select(t,this) );
234                         });
235                         this.old = old;
236                         this.cur = ret;
237                         return this;
238                 },
239                 end: function() {
240                         this.cur = this.old;
241                         return this;
242                 },
243
244                 parent: function(a) {
245                         this.cur = $.map(this.cur,function(d){
246                                 return d.parentNode;
247                         });
248                         if ( a ) {
249                                 this.cur = $.filter(a,this.cur).r;
250                         }
251                         return this;
252                 },
253                 
254                 parents: function(a) {
255                         this.cur = $.map(this.cur,$.parents);
256                         if ( a ) {
257                                 this.cur = $.filter(a,this.cur).r;
258                         }
259                         return this;
260                 },
261                 
262                 siblings: function(a) {
263                         // Incorrect, need to exclude current element
264                         this.cur = $.map(this.cur,$.sibling);
265                         if ( a ) {
266                                 this.cur = $.filter(a,this.cur).r;
267                         }
268                         return this;
269                 },
270                 
271                 filter: function(t) {
272                         this.cur = $.filter(t,this.cur).r;
273                         return this;
274                 },
275                 not: function(t) {
276                         this.cur = t.constructor == String ?
277                                 $.filter(t,this.cur,false).r :
278                                 $.grep(this.cur,function(a){return a != t;});
279                         return this;
280                 },
281                 add: function(t) {
282                         this.cur = $.merge( this.cur, t.constructor == String ?
283                                 $.Select(t) : t.constructor == Array ? t : [t] );
284                         return this;
285                 },
286                 is: function(t) {
287                         return $.filter(t,this.cur).r.length > 0;
288                 },
289                 isNot: function(t) {
290                         return !this.s(t);
291                 }
292         };
293         
294         // TODO: Remove need to return this
295         for ( var i in $.fn ) {
296                 if ( self[i] !== null ) {
297                         self["_"+i] = self[i];
298                 }
299                 self[i] = $.fn[i];
300         }
301         
302         if ( typeof Prototype != "undefined" && $a.constructor != String ) {
303                 if ( $c ) {
304                         $a = self.get();
305                 }
306                 for ( var k in self ) {(function(j){
307                         try {
308                                 if ( !$a[j] ) {
309                                         $a[j] = function() {
310                                                 return $.apply(self,self[j],arguments);
311                                         };
312                                 }
313                         } catch(e) {}
314                 })(k);}
315                 return $a;
316         }
317         
318         return self;
319 }
320
321 (function(){
322         var b = navigator.userAgent.toLowerCase();
323
324         // Figure out what browser is being used
325         $.browser =
326                 ( /webkit/.test(b) && "safari" ) ||
327                 ( /opera/.test(b) && "opera" ) ||
328                 ( /msie/.test(b) && "msie" ) ||
329                 ( !/compatible/.test(b) && "mozilla" ) ||
330                 "other";
331
332         // Check to see if the W3C box model is being used
333         $.boxModel = ( $.browser != "msie" || 
334                 document.compatMode == "CSS1Compat" );
335 })();
336
337 $.apply = function(o,f,a) {
338         a = a || [];
339         if ( f.apply ) {
340                 return f.apply( o, a );
341         } else {
342                 var p = [];
343                 for (var i = 0; i < a.length; i++) {
344                         p[i] = 'a['+i+']';
345                 }
346                 o.$$exec = this;
347                 var r = eval('o.$$exec(' + p.join(',') + ')');
348                 o.$$exec = null;
349                 return r;
350         }
351 };
352
353 $.getCSS = function(e,p) {
354         // Adapted from Prototype 1.4.0
355         if ( p == 'height' || p == 'width' ) {
356
357                 // Handle extra width/height provided by the W3C box model
358                 var ph = !$.boxModel ? 0 : 
359                         parseInt($.css(e,"paddingTop")) + parseInt($.css(e,"paddingBottom")) +
360                         parseInt($.css(e,"borderTop")) + parseInt($.css(e,"borderBottom"));
361
362                 var pw = !$.boxModel ? 0 : 
363                         parseInt($.css(e,"paddingLeft")) + parseInt($.css(e,"paddingRight")) +
364                         parseInt($.css(e,"borderLeft")) + parseInt($.css(e,"borderRight"));
365
366                 var oHeight, oWidth;
367
368                 if ($.css(e,"display") != 'none') {
369                         oHeight = e.offsetHeight || parseInt(e.style.height,10);
370                         oWidth = e.offsetWidth || parseInt(e.style.width,10);
371                 } else {
372                         var els = e.style;
373                         var ov = els.visibility;
374                         var op = els.position;
375                         var od = els.display;
376                         els.visibility = 'hidden';
377                         els.position = 'absolute';
378                         els.display = '';
379                         oHeight = e.clientHeight || parseInt(e.style.height,10);
380                         oWidth = e.clientWidth || parseInt(e.style.width,10);
381                         els.display = od;
382                         els.position = op;
383                         els.visibility = ov;
384                 }
385
386                 return p == 'height' ?
387                         (oHeight - ph < 0 ? 0 : oHeight - ph) :
388                         (oWidth - pw < 0 ? 0 : oWidth - pw);
389         }
390         
391         if (e.style[p]) {
392                 return e.style[p];
393         } else if (e.currentStyle) {
394                 return e.currentStyle[p];
395         } else if (document.defaultView && document.defaultView.getComputedStyle) {
396                 p = p.replace(/([A-Z])/g,"-$1");
397                 p = p.toLowerCase();
398                 var s = document.defaultView.getComputedStyle(e,"");
399                 var r = s ? s.getPropertyValue(p) : p;
400                 return r;
401         } else {
402                 return null;
403         }
404 };
405 $.css = $.getCSS;
406
407 $.clean = function(a) {
408         var r = [];
409         for ( var i = 0; i < a.length; i++ ) {
410                 if ( a[i].constructor == String ) {
411                         if ( a[i].indexOf("<tr") == 0 ) {
412                                 var tr = true;
413                                 a[i] = "<table>" + a[i] + "</table>";
414                         }
415                         var div = document.createElement("div");
416                         div.innerHTML = a[i];
417                         if ( tr ) {
418                                 div = div.firstChild.firstChild;
419                         }
420                         for ( var j = 0; j < div.childNodes.length; j++ ) {
421                                 r[r.length] = div.childNodes[j];
422                         }
423                 } else if ( a[i].length ) {
424                         for ( var k = 0; k < a[i].length; k++ ) {
425                                 r[r.length] = a[i][k];
426                         }
427                 } else if ( a[i] !== null ) {
428                         r[r.length] = 
429                                 a[i].nodeType ? a[i] : document.createTextNode(a[i].toString());
430                 }
431         }
432         return r;
433 };
434
435 $.g = {
436         '': "m[2] == '*' || a.nodeName.toUpperCase() == m[2].toUpperCase()",
437         '#': "a.getAttribute('id') && a.getAttribute('id').nodeValue == m[2]",
438         ':': {
439                 lt: "i < m[3]-0",
440                 gt: "i > m[3]-0",
441                 nth: "m[3] - 0 == i",
442                 eq: "m[3] - 0 == i",
443                 first: "i == 0",
444                 last: "i == r.length - 1",
445                 even: "i % 2 == 0",
446                 odd: "i % 2 == 1",
447                 "first-child": "$.sibling(a,0).cur",
448                 "nth-child": "(m[3] == 'even'?$.sibling(a,m[3]).n % 2 == 0 :(m[3] == 'odd'?$.sibling(a,m[3]).n % 2 == 1:$.sibling(a,m[3]).cur))",
449                 "last-child": "$.sibling(a,0,true).cur",
450                 "nth-last-child": "$.sibling(a,m[3],true).cur",
451                 "first-of-type": "$.ofType(a,0)",
452                 "nth-of-type": "$.ofType(a,m[3])",
453                 "last-of-type": "$.ofType(a,0,true)",
454                 "nth-last-of-type": "$.ofType(a,m[3],true)",
455                 "only-of-type": "$.ofType(a) == 1",
456                 "only-child": "$.sibling(a).length == 1",
457                 parent: "a.childNodes.length > 0",
458                 empty: "a.childNodes.length == 0",
459                 root: "a == ( a.ownerDocument ? a.ownerDocument : document ).documentElement",
460                 contains: "(a.innerText || a.innerHTML).indexOf(m[3]) != -1",
461                 visible: "(!a.type || a.type != 'hidden') && ($.getCSS(a,'display') != 'none' && $.getCSS(a,'visibility') != 'hidden')",
462                 hidden: "(a.type && a.type == 'hidden') || $.getCSS(a,'display') == 'none' || $.getCSS(a,'visibility') == 'hidden'",
463                 enabled: "a.disabled == false",
464                 disabled: "a.disabled",
465                 checked: "a.checked"
466         },
467         // TODO: Write getAttribute helper
468         ".": "$.hasWord(a,m[2])",
469         "@": {
470                 "=": "$.attr(a,m[3]) == m[4]",
471                 "!=": "$.attr(a,m[3]) != m[4]",
472                 "~=": "$.hasWord($.attr(a,m[3]),m[4])",
473                 "|=": "$.attr(a,m[3]).indexOf(m[4]) == 0",
474                 "^=": "$.attr(a,m[3]).indexOf(m[4]) == 0",
475                 "$=": "$.attr(a,m[3]).substr( $.attr(a,m[3]).length - m[4].length, m[4].length ) == m[4]",
476                 "*=": "$.attr(a,m[3]).indexOf(m[4]) >= 0",
477                 "": "m[3] == '*' ? a.attributes.length > 0 : $.attr(a,m[3])"
478         },
479         "[": "$.Select(m[2],a).length > 0"
480 };
481
482 $.fn = {};
483
484 $.Select = function( t, context ) {
485         context = context || $.context || document;
486         if ( t.constructor != String ) {
487                 return [t];
488         }
489         
490         if ( t.indexOf("//") === 0 ) {
491                 context = context.documentElement;
492                 t = t.substr(2,t.length);
493         } else if ( t.indexOf("/") === 0 ) {
494                 context = context.documentElement;
495                 t = t.substr(1,t.length);
496                 // FIX Assume the root element is right :(
497                 if ( t.indexOf('/') ) {
498                         t = t.substr(t.indexOf('/'),t.length);
499                 }
500         }
501         
502         var ret = [context];
503         var done = [];
504         var last = null;
505   
506         while ( t.length > 0 && last != t ) {
507     var r = [];
508                 last = t;
509             
510     t = $.cleanSpaces(t);
511             
512     var re = new RegExp( "^//", "i" );
513     t = t.replace( re, "" );
514         
515                 if ( t.indexOf('..') === 0 || t.indexOf('/..') === 0 ) {
516                         if ( t.indexOf('/') === 0 ) {
517                                 t = t.substr(1,t.length);
518                         }
519                         r = $.map( ret, function(a){ return a.parentNode; } );
520                         t = t.substr(2,t.length);
521                         t = $.cleanSpaces(t);
522                 } else if ( t.indexOf('>') === 0 || t.indexOf('/') === 0 ) {
523                         r = $.map( ret, function(a){ return ( a.childNodes.length > 0 ? $.sibling( a.firstChild ) : null ); } );
524                         t = t.substr(1,t.length);
525                         t = $.cleanSpaces(t);
526                 } else if ( t.indexOf('+') === 0 ) {
527                         r = $.map( ret, function(a){ return $.sibling(a).next; } );
528                         t = t.substr(1,t.length);
529                         t = $.cleanSpaces(t);
530                 } else if ( t.indexOf('~') === 0 ) {
531                         r = $.map( ret, function(a){
532                                 var r = [];
533                                 var s = $.sibling(a);
534                                 if ( s.n > 0 ) {
535                                         for ( var i = s.n; i < s.length; i++ ) {
536                                                 r[r.length] = s[i];
537                                         }
538                                 }
539                                 return r;
540                         });
541                         t = t.substr(1,t.length);
542                         t = $.cleanSpaces(t);
543                 } else if ( t.indexOf(',') === 0 || t.indexOf('|') === 0 ) {
544                         if ( ret[0] == context ) { ret.shift(); }
545                         done = $.merge( done, ret );
546                         r = ret = [context];
547                         t = " " + t.substr(1,t.length);
548                 } else {
549                         var re2 = new RegExp( "^([#.]?)([a-z0-9\\*_-]*)", "i" );
550                         var m = re2.exec(t);
551                         
552                         if ( m[1] == "#" ) { // Ummm, should make this work in all XML docs
553                                 var oid = document.getElementById(m[2]);
554                                 r = ret = oid ? [oid] : [];
555                                 t = t.replace( re2, "" );
556                         } else {
557                                 if ( m[2] === "" || m[1] == "." ) { m[2] = "*"; }
558         
559                                 for ( var i = 0; i < ret.length; i++ ) {
560                                         var o = ret[i];
561                                         if ( o ) {
562                                                 switch( m[2] ) {
563                                                         case '*':
564                                                                 r = $.merge( $.getAll(o), r );
565                                                         break;
566                                                         case 'text': case 'radio': case 'checkbox': case 'hidden':
567                                                         case 'button': case 'submit': case 'image': case 'password':
568                                                         case 'reset': case 'file':
569                                                                 r = $.merge( $.grep( $.tag(o,"input"), 
570                                                                         function(a){ return a.type == m[2]; }), r );
571                                                         break;
572                                                         case 'input':
573                                                                 r = $.merge( $.tag(o,"input"), r );
574                                                                 r = $.merge( $.tag(o,"select"), r );
575                                                                 r = $.merge( $.tag(o,"textarea"), r );
576                                                         break;
577                                                         default:
578                                                                 r = $.merge( r, $.tag(o,m[2]) );
579                                                         break;
580                                                 }
581                                         }
582                                 }
583                         }
584                 }
585
586                 if ( t ) {
587                         var val = $.filter(t,r);
588                         ret = r = val.r;
589                         t = $.cleanSpaces(val.t);
590                 }
591         }
592
593         if ( ret && ret[0] == context ) { ret.shift(); }
594         done = $.merge( done, ret );
595
596         return done;
597 };
598
599 $.tag = function(a,b){
600         return a && typeof a.getElementsByTagName != 'undefined' ?
601                 a.getElementsByTagName( b ) : [];
602 };
603
604 $.attr = function(o,a,v){
605         if ( a && a.constructor == String ) {
606                 var fix = {
607                         'for': 'htmlFor',
608                         'text': 'cssText',
609                         'class': 'className',
610                         'float': 'cssFloat'
611                 };
612                 a = (fix[a] && fix[a].replace && fix[a]) || a;
613                 var r = new RegExp("-([a-z])","ig");
614                 a = a.replace(r,function(z,b){return b.toUpperCase();});
615                 if ( typeof v != 'undefined' ) {
616                         o[a] = v;
617                         if ( o.setAttribute ) {
618                                 o.setAttribute(a,v);
619                         }
620                 } 
621                 return o[a] || o.getAttribute(a) || '';
622         } else {
623                 return '';
624         }
625 };
626
627 $.filter = function(t,r,not) {
628         var g = $.grep;
629         if ( not === false ) {
630                 g = function(a,f) {return $.grep(a,f,true);};
631         }
632         
633         while ( t.length > 0 && t.match(/^[:\\.#\\[a-zA-Z\\*]/) ) {
634                 var re = new RegExp( "^\\[ *@([a-z0-9\\(\\)_-]+) *([~!\\|\\*$^=]*) *'?\"?([^'\"]*)'?\"? *\\]", "i" );
635                 var m = re.exec(t);
636                 
637                 if ( m !== null ) {
638                         m = ['', '@', m[2], m[1], m[3]];
639                 } else {
640                         re = new RegExp( "^(\\[) *([^\\]]*) *\\]", "i" );
641                         m = re.exec(t);
642                         
643                         if ( m === null ) {
644                                 re = new RegExp( "^(:)([a-z0-9\\*_-]*)\\( *[\"']?([^ \\)'\"]*)['\"]? *\\)", "i" );
645                                 m = re.exec(t);
646                                 
647                                 if ( m === null ) {
648                                         re = new RegExp( "^([:\\.#]*)([a-z0-9\\*_-]*)", "i" );
649                                         m = re.exec(t);
650                                 }
651                         }
652                 }
653                 t = t.replace( re, "" );
654                 
655                 if ( m[1] == ":" && m[2] == "not" ) {
656                         r = $.filter(m[3],r,false).r;
657                 } else {
658                         var f = null;
659
660                         if ( $.g[m[1]].constructor == String ) {
661                                 f = $.g[m[1]];
662                         } else if ( $.g[m[1]][m[2]] ) {
663                                 f = $.g[m[1]][m[2]];
664                         }
665                                                 
666                         if ( f !== null ) {
667                                 eval('f = function(a,i){return ' + f + '}');
668                                 r = g( r, f );
669                         }
670                 }
671         }
672
673         return { r: r, t: t };
674 };
675
676 $.parents = function(a){
677         var b = [];
678         var c = a.parentNode;
679         while ( c !== null && c != document ) {
680                 b[b.length] = c;
681                 c = c.parentNode;
682         }
683         return b;
684 };
685
686 $.cleanSpaces = function(t){
687         return t.replace(/^\s+|\s+$/g, '');
688 };
689
690 $.ofType = function(a,n,e) {
691         var t = $.grep($.sibling(a),function(b){return b.nodeName == a.nodeName;});
692         if ( e ) { n = t.length - n - 1; }
693         return typeof n != 'undefined' ? t[n] == a : t.length;
694 };
695
696 $.sibling = function(a,n,e) {
697         var type = [];
698         var tmp = a.parentNode.childNodes;
699         for ( var i = 0; i < tmp.length; i++ ) {
700                 if ( tmp[i].nodeType == 1 ) {
701                         type[type.length] = tmp[i];
702                 }
703                 if ( tmp[i] == a ) {
704                         type.n = type.length - 1;
705                 }
706         }
707         if ( e ) { n = type.length - n - 1; }
708         type.cur = ( type[n] == a );
709         type.prev = ( type.n > 0 ? type[type.n - 1] : null );
710         type.next = ( type.n < type.length - 1 ? type[type.n + 1] : null );
711         return type;
712 };
713
714 $.hasWord = function(e,a) {
715         if ( typeof e == 'undefined' ) { return false; }
716         if ( e.className !== null ) { e = e.className; }
717         return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
718 };
719
720 $.getAll = function(o,r) {
721         r = r || [];
722         var s = o.childNodes;
723         for ( var i = 0; i < s.length; i++ ) {
724                 if ( s[i].nodeType == 1 ) {
725                         r[r.length] = s[i];
726                         $.getAll( s[i], r );
727                 }
728         }
729         return r;
730 };
731
732 $.merge = function(a,b) {
733         var d = [];
734         for ( var k = 0; k < b.length; k++ ) { d[k] = b[k]; }
735         
736         for ( var i = 0; i < a.length; i++ ) {
737                 var c = true;
738                 for ( var j = 0; j < b.length; j++ ) {
739                         if ( a[i] == b[j] ) {
740                                 c = false;
741                         }
742                 }
743                 if ( c ) {
744                         d[d.length] = a[i];
745                 }
746         }
747
748         return d;
749 };
750
751 $.grep = function(a,f,s) {
752         var r = [];
753         if ( typeof a != 'undefined' ) {
754                 for ( var i = 0; i < a.length; i++ ) {
755                         if ( (!s && f(a[i],i)) || (s && !f(a[i],i)) ) {
756                                 r[r.length] = a[i];
757                         }
758                 }
759         }
760         return r;
761 };
762
763 $.map = function(a,f) {
764         var r = [];
765         for ( var i = 0; i < a.length; i++ ) {
766                 var t = f(a[i],i);
767                 if ( t !== null ) {
768                         if ( t.constructor != Array ) { t = [t]; }
769                         r = $.merge( t, r );
770                 }
771         }
772         return r;
773 };
774
775 $.event = {};
776
777 // Bind an event to an element
778 // Original by Dean Edwards
779 $.event.add = function(element, type, handler) {
780         // For whatever reason, IE has trouble passing the window object
781         // around, causing it to be cloned in the process
782         if ( $.browser == "msie" && typeof element.setInterval != "undefined" ) {
783                 element = window;
784         }
785
786         if (!handler.$$guid) { handler.$$guid = $.event.add.guid++; }
787         if (!element.events) { element.events = {}; }
788         var handlers = element.events[type];
789         if (!handlers) {
790                 handlers = element.events[type] = {};
791                 if (element["on" + type]) {
792                         handlers[0] = element["on" + type];
793                 }
794         }
795         handlers[handler.$$guid] = handler;
796         element["on" + type] = $.event.handle;
797 };
798
799 $.event.add.guid = 1;
800
801 // Detach an event or set of events from an element
802 $.event.remove = function(element, type, handler) {
803         if (element.events) {
804                 if (type && element.events[type]) {
805                         if ( handler ) {
806                                 delete element.events[type][handler.$$guid];
807                         } else {
808                                 for ( var i in element.events[type] ) {
809                                         delete element.events[type][i];
810                                 }
811                         }
812                 } else {
813                         for ( var j in element.events ) {
814                                 $.event.remove( element, j );
815                         }
816                 }
817         }
818 };
819
820 $.event.trigger = function(element,type,data) {
821         data = data || [ $.event.fix({ type: type }) ];
822         if ( element && element["on" + type] ) {
823                 $.apply( element, element["on" + type], data );
824         }
825 };
826
827 $.event.handle = function(event) {
828         if ( !event && !window.event ) { return null; }
829
830         var returnValue = true, handlers = [];
831         event = event || $.event.fix(window.event);
832
833         for ( var j in this.events[event.type] ) {
834                 handlers[handlers.length] = this.events[event.type][j];
835         }
836
837         for ( var i = 0; i < handlers.length; i++ ) {
838                 if ( handlers[i].constructor == Function ) {
839                         this.$$handleEvent = handlers[i];
840                         if (this.$$handleEvent(event) === false) {
841                                 event.preventDefault();
842                                 event.stopPropagation();
843                                 returnValue = false;
844                         }
845                 }
846         }
847         return returnValue;
848 };
849
850 $.event.fix = function(event) {
851         event.preventDefault = $.event.fix.preventDefault;
852         event.stopPropagation = $.event.fix.stopPropagation;
853         return event;
854 };
855
856 $.event.fix.preventDefault = function() {
857         this.returnValue = false;
858 };
859
860 $.event.fix.stopPropagation = function() {
861         this.cancelBubble = true;
862 };
863
864 // Move to module
865
866 $.fn.text = function(e) {
867         e = e || this.cur;
868         var t = "";
869         for ( var j = 0; j < e.length; j++ ) {
870                 for ( var i = 0; i < e[j].childNodes.length; i++ ) {
871                         t += e[j].childNodes[i].nodeType != 1 ?
872                                 e[j].childNodes[i].nodeValue :
873                                 $.fn.text(e[j].childNodes[i].childNodes);
874                 }
875         }
876         return t;
877 };
878
879 /*setTimeout(function(){
880         if ( typeof Prototype != "undefined" && $.g == null && $.clean == null )
881                 throw "Error: You are overwriting jQuery, please include jQuery last.";
882 }, 1000);*/