mack-javascript 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,28 @@
1
+
2
+ (function($){$.ec=$.ec||{};$.extend($.ec,{save:function(el,set){for(var i=0;i<set.length;i++){if(set[i]!==null)$.data(el[0],"ec.storage."+set[i],el.css(set[i]));}},restore:function(el,set){for(var i=0;i<set.length;i++){if(set[i]!==null)el.css(set[i],$.data(el[0],"ec.storage."+set[i]));}},setMode:function(el,mode){if(mode=='toggle')mode=el.is(':hidden')?'show':'hide';return mode;},getBaseline:function(origin,original){var y,x;switch(origin[0]){case'top':y=0;break;case'middle':y=0.5;break;case'bottom':y=1;break;default:y=origin[0]/original.height;};switch(origin[1]){case'left':x=0;break;case'center':x=0.5;break;case'right':x=1;break;default:x=origin[1]/original.width;};return{x:x,y:y};},createWrapper:function(el){if(el.parent().attr('id')=='fxWrapper')
3
+ return el;var props={width:el.outerWidth({margin:true}),height:el.outerHeight({margin:true}),'float':el.css('float')};el.wrap('<div id="fxWrapper"></div>');var wrapper=el.parent();if(el.css('position')=='static'){wrapper.css({position:'relative'});el.css({position:'relative'});}else{var top=parseInt(el.css('top'),10);if(top.constructor!=Number)top='auto';var left=parseInt(el.css('left'),10);if(left.constructor!=Number)left='auto';wrapper.css({position:el.css('position'),top:top,left:left,zIndex:el.css('z-index')}).show();el.css({position:'relative',top:0,left:0});}
4
+ wrapper.css(props);return wrapper;},removeWrapper:function(el){if(el.parent().attr('id')=='fxWrapper')
5
+ return el.parent().replaceWith(el);return el;},setTransition:function(el,list,factor,val){val=val||{};$.each(list,function(i,x){unit=el.cssUnit(x);if(unit[0]>0)val[x]=unit[0]*factor+unit[1];});return val;},animateClass:function(value,duration,easing,callback){var cb=(typeof easing=="function"?easing:(callback?callback:null));var ea=(typeof easing=="object"?easing:null);this.each(function(){var offset={};var that=$(this);var oldStyleAttr=that.attr("style")||'';if(typeof oldStyleAttr=='object')oldStyleAttr=oldStyleAttr["cssText"];if(value.toggle){that.hasClass(value.toggle)?value.remove=value.toggle:value.add=value.toggle;}
6
+ var oldStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.addClass(value.add);if(value.remove)that.removeClass(value.remove);var newStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.removeClass(value.add);if(value.remove)that.addClass(value.remove);for(var n in newStyle){if(typeof newStyle[n]!="function"&&newStyle[n]&&n.indexOf("Moz")==-1&&n.indexOf("length")==-1&&newStyle[n]!=oldStyle[n]&&(n.match(/color/i)||(!n.match(/color/i)&&!isNaN(parseInt(newStyle[n],10))))&&(oldStyle.position!="static"||(oldStyle.position=="static"&&!n.match(/left|top|bottom|right/))))offset[n]=newStyle[n];}
7
+ that.animate(offset,duration,ea,function(){if(typeof $(this).attr("style")=='object'){$(this).attr("style")["cssText"]="";$(this).attr("style")["cssText"]=oldStyleAttr;}else $(this).attr("style",oldStyleAttr);if(value.add)$(this).addClass(value.add);if(value.remove)$(this).removeClass(value.remove);if(cb)cb.apply(this,arguments);});});}});$.fn.extend({_show:$.fn.show,_hide:$.fn.hide,__toggle:$.fn.toggle,_addClass:$.fn.addClass,_removeClass:$.fn.removeClass,_toggleClass:$.fn.toggleClass,effect:function(fx,o,speed,callback){return $.ec[fx]?$.ec[fx].call(this,{method:fx,options:o||{},duration:speed,callback:callback}):null;},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0])))
8
+ return this._show.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='show';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0])))
9
+ return this._hide.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='hide';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0]))||(arguments[0].constructor==Function))
10
+ return this.__toggle.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='toggle';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},addClass:function(classNames,speed,easing,callback){return speed?$.ec.animateClass.apply(this,[{add:classNames},speed,easing,callback]):this._addClass(classNames);},removeClass:function(classNames,speed,easing,callback){return speed?$.ec.animateClass.apply(this,[{remove:classNames},speed,easing,callback]):this._removeClass(classNames);},toggleClass:function(classNames,speed,easing,callback){return speed?$.ec.animateClass.apply(this,[{toggle:classNames},speed,easing,callback]):this._toggleClass(classNames);},morph:function(remove,add,speed,easing,callback){return $.ec.animateClass.apply(this,[{add:add,remove:remove},speed,easing,callback]);},switchClass:function(){this.morph.apply(this,arguments);},cssUnit:function(key){var style=this.css(key),val=[];$.each(['em','px','%','pt'],function(i,unit){if(style.indexOf(unit)>0)
11
+ val=[parseFloat(style),unit];});return val;}});jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
12
+ fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2]),255),0)].join(",")+")";}});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
13
+ return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
14
+ return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
15
+ return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
16
+ return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
17
+ return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];if(result=/rgba\(0, 0, 0, 0\)/.exec(color))
18
+ return colors['transparent']
19
+ return colors[jQuery.trim(color).toLowerCase()];}
20
+ function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body"))
21
+ break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};})(jQuery);(function($){$.dimensions={version:'@VERSION'};$.each(['Height','Width'],function(i,name){$.fn['inner'+name]=function(){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';return this.is(':visible')?this[0]['client'+name]:num(this,name.toLowerCase())+num(this,'padding'+torl)+num(this,'padding'+borr);};$.fn['outer'+name]=function(options){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';options=$.extend({margin:false},options||{});var val=this.is(':visible')?this[0]['offset'+name]:num(this,name.toLowerCase())
22
+ +num(this,'border'+torl+'Width')+num(this,'border'+borr+'Width')
23
+ +num(this,'padding'+torl)+num(this,'padding'+borr);return val+(options.margin?(num(this,'margin'+torl)+num(this,'margin'+borr)):0);};});$.each(['Left','Top'],function(i,name){$.fn['scroll'+name]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(name=='Left'?val:$(window)['scrollLeft'](),name=='Top'?val:$(window)['scrollTop']()):this['scroll'+name]=val;}):this[0]==window||this[0]==document?self[(name=='Left'?'pageXOffset':'pageYOffset')]||$.boxModel&&document.documentElement['scroll'+name]||document.body['scroll'+name]:this[0]['scroll'+name];};});$.fn.extend({position:function(){var left=0,top=0,elem=this[0],offset,parentOffset,offsetParent,results;if(elem){offsetParent=this.offsetParent();offset=this.offset();parentOffset=offsetParent.offset();offset.top-=num(elem,'marginTop');offset.left-=num(elem,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
24
+ return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&$.css(offsetParent,'position')=='static'))
25
+ offsetParent=offsetParent.offsetParent;return $(offsetParent);}});function num(el,prop){return parseInt($.curCSS(el.jquery?el[0]:el,prop,true))||0;};})(jQuery);(function($){$.ec.blind=function(o){return this.queue(function(){var el=$(this),props=['position'];var mode=$.ec.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.ec.save(el,props);el.show();var wrapper=$.ec.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='vertical')?'height':'width';var distance=(direction=='vertical')?wrapper.height():wrapper.width();if(mode=='show')wrapper.css(ref,0);var animation={};animation[ref]=mode=='show'?distance:0;wrapper.animate(animation,o.duration,o.options.easing,function(){if(mode=='hide')el.hide();$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();});});};})(jQuery);(function($){$.ec.bounce=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.ec.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'up';var distance=o.options.distance||20;var times=o.options.times||5;var speed=o.duration||250;if(/show|hide/.test(mode))props.push('opacity');$.ec.save(el,props);el.show();$.ec.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/3:el.outerWidth({margin:true})/3);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);if(mode=='hide')distance=distance/(times*2);if(mode!='hide')times--;if(mode=='show'){var animation={opacity:1};animation[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation,speed/2,o.options.easing);distance=distance/2;times--;};for(var i=0;i<times;i++){var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing);distance=(mode=='hide')?distance*2:distance/2;};if(mode=='hide'){var animation={opacity:0};animation[ref]=(motion=='pos'?'-=':'+=')+distance;el.animate(animation,speed/2,o.options.easing,function(){el.hide();$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});}else{var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing,function(){$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.ec.clip=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','width','height'];var mode=$.ec.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.ec.save(el,props);el.show();$.ec.createWrapper(el).css({overflow:'hidden'});var ref={size:(direction=='vertical')?'height':'width',position:(direction=='vertical')?'top':'left'};var distance=(direction=='vertical')?el.height():el.width();if(mode=='show'){el.css(ref.size,0);el.css(ref.position,distance/2);}
26
+ var animation={};animation[ref.size]=mode=='show'?distance:0;animation[ref.position]=mode=='show'?0:distance/2;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.ec.drop=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','opacity'];var mode=$.ec.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'left';$.ec.save(el,props);el.show();$.ec.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/2:el.outerWidth({margin:true})/2);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);var animation={opacity:mode=='show'?1:0};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.ec.fade=function(o){return this.queue(function(){var el=$(this),props=['opacity'];var mode=$.ec.setMode(el,o.options.mode||'effect');if(mode=='toggle')mode=el.is(':hidden')?'show':'hide';var opacity=o.options.opacity||0;$.ec.save(el,props);el.show();if(mode=='show')el.css({opacity:0});var animation={opacity:mode=='show'?1:opacity};el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();if(mode=='hide')$.ec.restore(el,props);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.ec.fold=function(o){return this.queue(function(){var el=$(this),props=['position'];var mode=$.ec.setMode(el,o.options.mode||'hide');var size=o.options.size||15;$.ec.save(el,props);el.show();var wrapper=$.ec.createWrapper(el).css({overflow:'hidden'});var ref=(mode=='show')?['width','height']:['height','width'];var distance=(mode=='show')?[wrapper.width(),wrapper.height()]:[wrapper.height(),wrapper.width()];if(mode=='show')wrapper.css({height:size,width:0});var animation1={},animation2={};animation1[ref[0]]=mode=='show'?distance[0]:size;animation2[ref[1]]=mode=='show'?distance[1]:0;wrapper.animate(animation1,o.duration/2,o.options.easing).animate(animation2,o.duration/2,o.options.easing,function(){if(mode=='hide')el.hide();$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();});});};})(jQuery);(function($){$.ec.highlight=function(o){return this.queue(function(){var el=$(this),props=['backgroundImage','backgroundColor','opacity'];var mode=$.ec.setMode(el,o.options.mode||'show');var color=o.options.color||"#ffff99";$.ec.save(el,props);el.show();el.css({backgroundImage:'none',backgroundColor:color});var animation={backgroundColor:$.data(this,"ec.storage.backgroundColor")};if(mode=="hide")animation['opacity']=0;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=="hide")el.hide();$.ec.restore(el,props);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.ec.pulsate=function(o){return this.queue(function(){var el=$(this);var mode=$.ec.setMode(el,o.options.mode||'show');var times=o.options.times||5;if(mode!='hide')times--;if(el.is(':hidden')){el.css('opacity',0);el.show();el.animate({opacity:1},o.duration/2,o.options.easing);times--;}
27
+ for(var i=0;i<times;i++){el.animate({opacity:0},o.duration/2,o.options.easing).animate({opacity:1},o.duration/2,o.options.easing);};if(mode=='hide'){el.animate({opacity:0},o.duration/2,o.options.easing,function(){el.hide();if(o.callback)o.callback.apply(this,arguments);});}else{el.animate({opacity:0},o.duration/2,o.options.easing).animate({opacity:1},o.duration/2,o.options.easing,function(){if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.ec.puff=function(o){return this.queue(function(){var el=$(this);var mode=$.ec.setMode(el,o.options.mode||'hide');var percent=parseInt(o.options.percent)||150;o.options.fade=true;var original={height:el.height(),width:el.width()};var factor=percent/100;el.from=(mode=='hide')?original:{height:original.height*factor,width:original.width*factor};o.options.from=el.from;o.options.percent=(mode=='hide')?percent:100;o.options.mode=mode;el.effect('scale',o.options,o.duration,o.callback);el.dequeue();});};$.ec.scale=function(o){return this.queue(function(){var el=$(this);var mode=$.ec.setMode(el,o.options.mode||'effect');var percent=parseInt(o.options.percent)||(parseInt(o.options.percent)==0?0:(mode=='hide'?0:100));var direction=o.options.direction||'both';var origin=o.options.origin;if(mode!='effect'){origin=origin||['middle','center'];o.options.restore=true;}
28
+ var original={height:el.height(),width:el.width()};el.from=o.options.from||(mode=='show'?{height:0,width:0}:original);var factor={y:direction!='horizontal'?(percent/100):1,x:direction!='vertical'?(percent/100):1};el.to={height:original.height*factor.y,width:original.width*factor.x};if(origin){var baseline=$.ec.getBaseline(origin,original);el.from.top=(original.height-el.from.height)*baseline.y;el.from.left=(original.width-el.from.width)*baseline.x;el.to.top=(original.height-el.to.height)*baseline.y;el.to.left=(original.width-el.to.width)*baseline.x;};if(o.options.fade){if(mode=='show'){el.from.opacity=0;el.to.opacity=1;};if(mode=='hide'){el.from.opacity=1;el.to.opacity=0;};};o.options.from=el.from;o.options.to=el.to;el.effect('size',o.options,o.duration,o.callback);el.dequeue();});};$.ec.size=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','width','height','overflow','opacity'];var props1=['position','overflow','opacity'];var props2=['width','height','overflow'];var cProps=['fontSize'];var vProps=['borderTopWidth','borderBottomWidth','paddingTop','paddingBottom'];var hProps=['borderLeftWidth','borderRightWidth','paddingLeft','paddingRight'];var mode=$.ec.setMode(el,o.options.mode||'effect');var restore=o.options.restore||false;var scale=o.options.scale||'both';var original={height:el.height(),width:el.width()};el.from=o.options.from||original;el.to=o.options.to||original;var factor={from:{y:el.from.height/original.height,x:el.from.width/original.width},to:{y:el.to.height/original.height,x:el.to.width/original.width}};if(scale=='box'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(vProps);el.from=$.ec.setTransition(el,vProps,factor.from.y,el.from);el.to=$.ec.setTransition(el,vProps,factor.to.y,el.to);};if(factor.from.x!=factor.to.x){props=props.concat(hProps);el.from=$.ec.setTransition(el,hProps,factor.from.x,el.from);el.to=$.ec.setTransition(el,hProps,factor.to.x,el.to);};};if(scale=='content'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(cProps);el.from=$.ec.setTransition(el,cProps,factor.from.y,el.from);el.to=$.ec.setTransition(el,cProps,factor.to.y,el.to);};};$.ec.save(el,restore?props:props1);el.show();$.ec.createWrapper(el);el.css('overflow','hidden').css(el.from);if(scale=='content'||scale=='both'){vProps=vProps.concat(['marginTop','marginBottom']).concat(cProps);hProps=hProps.concat(['marginLeft','marginRight']);props2=props.concat(vProps).concat(hProps);el.find("*[width]").each(function(){child=$(this);if(restore)$.ec.save(child,props2);var c_original={height:child.height(),width:child.width()};child.from={height:c_original.height*factor.from.y,width:c_original.width*factor.from.x};child.to={height:c_original.height*factor.to.y,width:c_original.width*factor.to.x};if(factor.from.y!=factor.to.y){child.from=$.ec.setTransition(child,vProps,factor.from.y,child.from);child.to=$.ec.setTransition(child,vProps,factor.to.y,child.to);};if(factor.from.x!=factor.to.x){child.from=$.ec.setTransition(child,hProps,factor.from.x,child.from);child.to=$.ec.setTransition(child,hProps,factor.to.x,child.to);};child.css(child.from);child.animate(child.to,o.duration,o.options.easing,function(){if(restore)$.ec.restore(child,props2);});});};el.animate(el.to,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.ec.restore(el,restore?props:props1);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.ec.shake=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.ec.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'left';var distance=o.options.distance||20;var times=o.options.times||3;var speed=o.duration||o.options.duration||140;$.ec.save(el,props);el.show();$.ec.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var animation={},animation1={},animation2={};animation[ref]=(motion=='pos'?'-=':'+=')+distance;animation1[ref]=(motion=='pos'?'+=':'-=')+distance*2;animation2[ref]=(motion=='pos'?'-=':'+=')+distance*2;el.animate(animation,speed,o.options.easing);for(var i=1;i<times;i++){el.animate(animation1,speed,o.options.easing).animate(animation2,speed,o.options.easing);};el.animate(animation1,speed,o.options.easing).animate(animation,speed/2,o.options.easing,function(){$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.ec.slide=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.ec.setMode(el,o.options.mode||'show');var direction=o.options.direction||'left';$.ec.save(el,props);el.show();$.ec.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true}):el.outerWidth({margin:true}));if(mode=='show')el.css(ref,motion=='pos'?-distance:distance);var animation={};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.ec.restore(el,props);$.ec.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.ec.transfer=function(o){return this.queue(function(){var el=$(this);var mode=$.ec.setMode(el,o.options.mode||'effect');var target=$(document.getElementById(o.options.to));var position=el.position();$('body',document).append('<div id="fxTransfer"></div>');var transfer=$('#fxTransfer');transfer.addClass(o.options.className);transfer.css({top:position['top'],left:position['left'],height:el.outerHeight({margin:true})-parseInt(transfer.css('borderTopWidth'))-parseInt(transfer.css('borderBottomWidth')),width:el.outerWidth({margin:true})-parseInt(transfer.css('borderLeftWidth'))-parseInt(transfer.css('borderRightWidth')),position:'absolute'});position=target.position();animation={top:position['top'],left:position['left'],height:target.outerHeight()-parseInt(transfer.css('borderTopWidth'))-parseInt(transfer.css('borderBottomWidth')),width:target.outerWidth()-parseInt(transfer.css('borderLeftWidth'))-parseInt(transfer.css('borderRightWidth'))};transfer.animate(animation,o.duration,o.options.easing,function(){transfer.remove();if(o.callback)o.callback.apply(this,arguments);el.dequeue();});});};})(jQuery);
@@ -0,0 +1,85 @@
1
+
2
+ ;(function($){$.ui=$.ui||{};$.extend($.ui,{plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,arguments){var set=instance.plugins[name];if(!set)return;for(var i=0;i<set.length;i++){if(instance.options[set[i][0]])set[i][1].apply(instance.element,arguments);}}},cssCache:{},css:function(name){if($.ui.cssCache[name])return $.ui.cssCache[name];var tmp=$('<div class="ui-resizable-gen">').addClass(name).css({position:'absolute',top:'-5000px',left:'-5000px',display:'block'}).appendTo('body');$.ui.cssCache[name]=!!((!/auto|default/.test(tmp.css('cursor'))||(/^[1-9]/).test(tmp.css('height'))||(/^[1-9]/).test(tmp.css('width'))||!(/none/).test(tmp.css('backgroundImage'))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor'))));try{$('body').get(0).removeChild(tmp.get(0));}catch(e){}
3
+ return $.ui.cssCache[name];},disableSelection:function(e){e.unselectable="on";e.onselectstart=function(){return false;};if(e.style)e.style.MozUserSelect="none";},enableSelection:function(e){e.unselectable="off";e.onselectstart=function(){return true;};if(e.style)e.style.MozUserSelect="";},hasScroll:function(e,a){var scroll=/top/.test(a||"top")?'scrollTop':'scrollLeft',has=false;if(e[scroll]>0)return true;e[scroll]=1;has=e[scroll]>0?true:false;e[scroll]=0;return has;}});$.each(['Left','Top'],function(i,name){if(!$.fn['scroll'+name])$.fn['scroll'+name]=function(v){return v!=undefined?this.each(function(){this==window||this==document?window.scrollTo(name=='Left'?v:$(window)['scrollLeft'](),name=='Top'?v:$(window)['scrollTop']()):this['scroll'+name]=v;}):this[0]==window||this[0]==document?self[(name=='Left'?'pageXOffset':'pageYOffset')]||$.boxModel&&document.documentElement['scroll'+name]||document.body['scroll'+name]:this[0]['scroll'+name];};});var _remove=$.fn.remove;$.fn.extend({position:function(){var offset=this.offset();var offsetParent=this.offsetParent();var parentOffset=offsetParent.offset();return{top:offset.top-num(this[0],'marginTop')-parentOffset.top-num(offsetParent,'borderTopWidth'),left:offset.left-num(this[0],'marginLeft')-parentOffset.left-num(offsetParent,'borderLeftWidth')};},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&$.css(offsetParent,'position')=='static'))
4
+ offsetParent=offsetParent.offsetParent;return $(offsetParent);},mouseInteraction:function(o){return this.each(function(){new $.ui.mouseInteraction(this,o);});},removeMouseInteraction:function(o){return this.each(function(){if($.data(this,"ui-mouse"))
5
+ $.data(this,"ui-mouse").destroy();});},remove:function(){jQuery("*",this).add(this).trigger("remove");return _remove.apply(this,arguments);}});function num(el,prop){return parseInt($.curCSS(el.jquery?el[0]:el,prop,true))||0;};$.ui.mouseInteraction=function(element,options){var self=this;this.element=element;$.data(this.element,"ui-mouse",this);this.options=$.extend({},options);$(element).bind('mousedown.draggable',function(){return self.click.apply(self,arguments);});if($.browser.msie)$(element).attr('unselectable','on');$(element).mouseup(function(){if(self.timer)clearInterval(self.timer);});};$.extend($.ui.mouseInteraction.prototype,{destroy:function(){$(this.element).unbind('mousedown.draggable');},trigger:function(){return this.click.apply(this,arguments);},click:function(e){if(e.which!=1||$.inArray(e.target.nodeName.toLowerCase(),this.options.dragPrevention||[])!=-1||(this.options.condition&&!this.options.condition.apply(this.options.executor||this,[e,this.element])))return true;var self=this;var initialize=function(){self._MP={left:e.pageX,top:e.pageY};$(document).bind('mouseup.draggable',function(){return self.stop.apply(self,arguments);});$(document).bind('mousemove.draggable',function(){return self.drag.apply(self,arguments);});if(!self.initalized&&Math.abs(self._MP.left-e.pageX)>=self.options.distance||Math.abs(self._MP.top-e.pageY)>=self.options.distance){if(self.options.start)self.options.start.call(self.options.executor||self,e,self.element);if(self.options.drag)self.options.drag.call(self.options.executor||self,e,this.element);self.initialized=true;}};if(this.options.delay){if(this.timer)clearInterval(this.timer);this.timer=setTimeout(initialize,this.options.delay);}else{initialize();}
6
+ return false;},stop:function(e){var o=this.options;if(!this.initialized)return $(document).unbind('mouseup.draggable').unbind('mousemove.draggable');if(this.options.stop)this.options.stop.call(this.options.executor||this,e,this.element);$(document).unbind('mouseup.draggable').unbind('mousemove.draggable');this.initialized=false;return false;},drag:function(e){var o=this.options;if($.browser.msie&&!e.button)return this.stop.apply(this,[e]);if(!this.initialized&&(Math.abs(this._MP.left-e.pageX)>=o.distance||Math.abs(this._MP.top-e.pageY)>=o.distance)){if(this.options.start)this.options.start.call(this.options.executor||this,e,this.element);this.initialized=true;}else{if(!this.initialized)return false;}
7
+ if(o.drag)o.drag.call(this.options.executor||this,e,this.element);return false;}});})(jQuery);;(function($){$.fn.extend({draggable:function(options){var args=Array.prototype.slice.call(arguments,1);return this.each(function(){if(typeof options=="string"){var drag=$.data(this,"draggable");if(drag)drag[options].apply(drag,args);}else if(!$.data(this,"draggable"))
8
+ new $.ui.draggable(this,options);});}});$.ui.draggable=function(element,options){var self=this;this.element=$(element);$.data(element,"draggable",this);this.element.addClass("ui-draggable");this.options=$.extend({},options);var o=this.options;$.extend(o,{helper:o.ghosting==true?'clone':(o.helper||'original'),handle:o.handle?($(o.handle,element)[0]?$(o.handle,element):this.element):this.element,appendTo:o.appendTo||'parent'});$(element).bind("setData.draggable",function(event,key,value){self.options[key]=value;}).bind("getData.draggable",function(event,key){return self.options[key];});$(o.handle).mouseInteraction({executor:this,delay:o.delay,distance:o.distance||1,dragPrevention:o.cancel||o.cancel===''?o.cancel.toLowerCase().split(','):['input','textarea','button','select','option'],start:this.start,stop:this.stop,drag:this.drag,condition:function(e){return!(e.target.className.indexOf("ui-resizable-handle")!=-1||this.options.disabled);}});if(o.helper=='original'&&(this.element.css('position')=='static'||this.element.css('position')==''))
9
+ this.element.css('position','relative');if(o.cursorAt&&o.cursorAt.constructor==Array)
10
+ o.cursorAt={left:o.cursorAt[0],top:o.cursorAt[1]};};$.extend($.ui.draggable.prototype,{plugins:{},ui:function(e){return{helper:this.helper,position:this.position,absolutePosition:this.positionAbs,instance:this,options:this.options,element:this.element};},propagate:function(n,e){$.ui.plugin.call(this,n,[e,this.ui()]);return this.element.triggerHandler(n=="drag"?n:"drag"+n,[e,this.ui()],this.options[n]);},destroy:function(){if(!$.data(this.element[0],'draggable'))return;this.options.handle.removeMouseInteraction();this.element.removeClass("ui-draggable ui-draggable-disabled").removeData("draggable").unbind(".draggable");},enable:function(){this.element.removeClass("ui-draggable-disabled");this.options.disabled=false;},disable:function(){this.element.addClass("ui-draggable-disabled");this.options.disabled=true;},setContrains:function(minLeft,maxLeft,minTop,maxTop){this.minLeft=minLeft;this.maxLeft=maxLeft;this.minTop=minTop;this.maxTop=maxTop;this.constrainsSet=true;},checkConstrains:function(){if(!this.constrainsSet)return;if(this.position.left<this.minLeft)this.position.left=this.minLeft;if(this.position.left>this.maxLeft-this.helperProportions.width)this.position.left=this.maxLeft-this.helperProportions.width;if(this.position.top<this.minTop)this.position.top=this.minTop;if(this.position.top>this.maxTop-this.helperProportions.height)this.position.top=this.maxTop-this.helperProportions.height;},recallOffset:function(e){var elementPosition={left:this.elementOffset.left-this.offsetParentOffset.left,top:this.elementOffset.top-this.offsetParentOffset.top};var r=this.helper.css('position')=='relative';this.originalPosition={left:(r?parseInt(this.helper.css('left'),10)||0:elementPosition.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft)),top:(r?parseInt(this.helper.css('top'),10)||0:elementPosition.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop))};this.offset={left:this._pageX-this.originalPosition.left,top:this._pageY-this.originalPosition.top};},start:function(e){var o=this.options;if($.ui.ddmanager)$.ui.ddmanager.current=this;this.helper=typeof o.helper=='function'?$(o.helper.apply(this.element[0],[e])):(o.helper=='clone'?this.element.clone().appendTo((o.appendTo=='parent'?this.element[0].parentNode:o.appendTo)):this.element);if(this.helper[0]!=this.element[0])this.helper.css('position','absolute');if(!this.helper.parents('body').length)this.helper.appendTo((o.appendTo=='parent'?this.element[0].parentNode:o.appendTo));this.offsetParent=(function(cp){while(cp){if(cp.style&&(/(absolute|relative|fixed)/).test($.css(cp,'position')))return $(cp);cp=cp.parentNode?cp.parentNode:null;};return $("body");})(this.helper[0].parentNode);this.elementOffset=this.element.offset();this.offsetParentOffset=this.offsetParent.offset();var elementPosition={left:this.elementOffset.left-this.offsetParentOffset.left,top:this.elementOffset.top-this.offsetParentOffset.top};this._pageX=e.pageX;this._pageY=e.pageY;this.clickOffset={left:e.pageX-this.elementOffset.left,top:e.pageY-this.elementOffset.top};var r=this.helper.css('position')=='relative';this.originalPosition={left:(r?parseInt(this.helper.css('left'),10)||0:elementPosition.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft)),top:(r?parseInt(this.helper.css('top'),10)||0:elementPosition.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop))};if(this.element.css('position')=='fixed'){this.originalPosition.top-=this.offsetParent[0]==document.body?$(document).scrollTop():this.offsetParent[0].scrollTop;this.originalPosition.left-=this.offsetParent[0]==document.body?$(document).scrollLeft():this.offsetParent[0].scrollLeft;}
11
+ this.offset={left:e.pageX-this.originalPosition.left,top:e.pageY-this.originalPosition.top};if(this.element[0]!=this.helper[0]){this.offset.left+=parseInt(this.element.css('marginLeft'),10)||0;this.offset.top+=parseInt(this.element.css('marginTop'),10)||0;}
12
+ this.propagate("start",e);this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};if($.ui.ddmanager&&!o.dropBehaviour)$.ui.ddmanager.prepareOffsets(this,e);if(o.cursorAt){if(o.cursorAt.top!=undefined||o.cursorAt.bottom!=undefined){this.offset.top-=this.clickOffset.top-(o.cursorAt.top!=undefined?o.cursorAt.top:(this.helperProportions.height-o.cursorAt.bottom));this.clickOffset.top=(o.cursorAt.top!=undefined?o.cursorAt.top:(this.helperProportions.height-o.cursorAt.bottom));}
13
+ if(o.cursorAt.left!=undefined||o.cursorAt.right!=undefined){this.offset.left-=this.clickOffset.left-(o.cursorAt.left!=undefined?o.cursorAt.left:(this.helperProportions.width-o.cursorAt.right));this.clickOffset.left=(o.cursorAt.left!=undefined?o.cursorAt.left:(this.helperProportions.width-o.cursorAt.right));}}
14
+ return false;},clear:function(){if($.ui.ddmanager)$.ui.ddmanager.current=null;this.helper=null;},stop:function(e){if($.ui.ddmanager&&!this.options.dropBehaviour)
15
+ $.ui.ddmanager.drop(this,e);this.propagate("stop",e);if(this.cancelHelperRemoval)return false;if(this.options.helper!='original')this.helper.remove();this.clear();return false;},drag:function(e){this.position={top:e.pageY-this.offset.top,left:e.pageX-this.offset.left};this.positionAbs={left:e.pageX-this.clickOffset.left,top:e.pageY-this.clickOffset.top};this.checkConstrains();this.position=this.propagate("drag",e)||this.position;this.checkConstrains();$(this.helper).css({left:this.position.left+'px',top:this.position.top+'px'});if($.ui.ddmanager)$.ui.ddmanager.drag(this,e);return false;}});$.ui.plugin.add("draggable","cursor",{start:function(e,ui){var t=$('body');if(t.css("cursor"))ui.options._cursor=t.css("cursor");t.css("cursor",ui.options.cursor);},stop:function(e,ui){if(ui.options._cursor)$('body').css("cursor",ui.options._cursor);}});$.ui.plugin.add("draggable","zIndex",{start:function(e,ui){var t=$(ui.helper);if(t.css("zIndex"))ui.options._zIndex=t.css("zIndex");t.css('zIndex',ui.options.zIndex);},stop:function(e,ui){if(ui.options._zIndex)$(ui.helper).css('zIndex',ui.options._zIndex);}});$.ui.plugin.add("draggable","opacity",{start:function(e,ui){var t=$(ui.helper);if(t.css("opacity"))ui.options._opacity=t.css("opacity");t.css('opacity',ui.options.opacity);},stop:function(e,ui){if(ui.options._opacity)$(ui.helper).css('opacity',ui.options._opacity);}});$.ui.plugin.add("draggable","revert",{stop:function(e,ui){var self=ui.instance,helper=$(self.helper);self.cancelHelperRemoval=true;$(ui.helper).animate({left:self.originalPosition.left,top:self.originalPosition.top},parseInt(ui.options.revert,10)||500,function(){if(ui.options.helper!='original')helper.remove();if(!helper)self.clear();});}});$.ui.plugin.add("draggable","iframeFix",{start:function(e,ui){var o=ui.options;if(ui.instance.slowMode)return;if(o.iframeFix.constructor==Array){for(var i=0;i<o.iframeFix.length;i++){var co=$(o.iframeFix[i]).offset({border:false});$('<div class="DragDropIframeFix"" style="background: #fff;"></div>').css("width",$(o.iframeFix[i])[0].offsetWidth+"px").css("height",$(o.iframeFix[i])[0].offsetHeight+"px").css("position","absolute").css("opacity","0.001").css("z-index","1000").css("top",co.top+"px").css("left",co.left+"px").appendTo("body");}}else{$("iframe").each(function(){var co=$(this).offset({border:false});$('<div class="DragDropIframeFix" style="background: #fff;"></div>').css("width",this.offsetWidth+"px").css("height",this.offsetHeight+"px").css("position","absolute").css("opacity","0.001").css("z-index","1000").css("top",co.top+"px").css("left",co.left+"px").appendTo("body");});}},stop:function(e,ui){if(ui.options.iframeFix)$("div.DragDropIframeFix").each(function(){this.parentNode.removeChild(this);});}});$.ui.plugin.add("draggable","containment",{start:function(e,ui){var o=ui.options;var self=ui.instance;if((o.containment.left!=undefined||o.containment.constructor==Array)&&!o._containment)return;if(!o._containment)o._containment=o.containment;if(o._containment=='parent')o._containment=this[0].parentNode;if(o._containment=='document'){o.containment=[0,0,$(document).width(),($(document).height()||document.body.parentNode.scrollHeight)];}else{var ce=$(o._containment)[0];var co=$(o._containment).offset();o.containment=[co.left,co.top,co.left+(ce.offsetWidth||ce.scrollWidth),co.top+(ce.offsetHeight||ce.scrollHeight)];}
16
+ var c=o.containment;ui.instance.setContrains(c[0]-(self.offset.left-self.clickOffset.left),c[2]-(self.offset.left-self.clickOffset.left),c[1]-(self.offset.top-self.clickOffset.top),c[3]-(self.offset.top-self.clickOffset.top));}});$.ui.plugin.add("draggable","grid",{drag:function(e,ui){var o=ui.options;var newLeft=ui.instance.originalPosition.left+Math.round((e.pageX-ui.instance._pageX)/o.grid[0])*o.grid[0];var newTop=ui.instance.originalPosition.top+Math.round((e.pageY-ui.instance._pageY)/o.grid[1])*o.grid[1];ui.instance.position.left=newLeft;ui.instance.position.top=newTop;}});$.ui.plugin.add("draggable","axis",{drag:function(e,ui){var o=ui.options;if(o.constraint)o.axis=o.constraint;switch(o.axis){case'x':ui.instance.position.top=ui.instance.originalPosition.top;break;case'y':ui.instance.position.left=ui.instance.originalPosition.left;break;}}});$.ui.plugin.add("draggable","scroll",{start:function(e,ui){var o=ui.options;o.scrollSensitivity=o.scrollSensitivity||20;o.scrollSpeed=o.scrollSpeed||20;ui.instance.overflowY=function(el){do{if(/auto|scroll/.test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-y')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(this);ui.instance.overflowX=function(el){do{if(/auto|scroll/.test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-x')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(this);},drag:function(e,ui){var o=ui.options;var i=ui.instance;if(i.overflowY[0]!=document&&i.overflowY[0].tagName!='HTML'){if(i.overflowY[0].offsetHeight-(ui.position.top-i.overflowY[0].scrollTop+i.clickOffset.top)<o.scrollSensitivity)
17
+ i.overflowY[0].scrollTop=i.overflowY[0].scrollTop+o.scrollSpeed;if((ui.position.top-i.overflowY[0].scrollTop+i.clickOffset.top)<o.scrollSensitivity)
18
+ i.overflowY[0].scrollTop=i.overflowY[0].scrollTop-o.scrollSpeed;}else{if(e.pageY-$(document).scrollTop()<o.scrollSensitivity)
19
+ $(document).scrollTop($(document).scrollTop()-o.scrollSpeed);if($(window).height()-(e.pageY-$(document).scrollTop())<o.scrollSensitivity)
20
+ $(document).scrollTop($(document).scrollTop()+o.scrollSpeed);}
21
+ if(i.overflowX[0]!=document&&i.overflowX[0].tagName!='HTML'){if(i.overflowX[0].offsetWidth-(ui.position.left-i.overflowX[0].scrollLeft+i.clickOffset.left)<o.scrollSensitivity)
22
+ i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft+o.scrollSpeed;if((ui.position.top-i.overflowX[0].scrollLeft+i.clickOffset.left)<o.scrollSensitivity)
23
+ i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft-o.scrollSpeed;}else{if(e.pageX-$(document).scrollLeft()<o.scrollSensitivity)
24
+ $(document).scrollLeft($(document).scrollLeft()-o.scrollSpeed);if($(window).width()-(e.pageX-$(document).scrollLeft())<o.scrollSensitivity)
25
+ $(document).scrollLeft($(document).scrollLeft()+o.scrollSpeed);}
26
+ ui.instance.recallOffset(e);}});$.ui.plugin.add("draggable","snap",{start:function(e,ui){ui.instance.snapElements=[];$(ui.options.snap===true?'.ui-draggable':ui.options.snap).each(function(){var $t=$(this);var $o=$t.offset();if(this!=ui.instance.element[0])ui.instance.snapElements.push({item:this,width:$t.outerWidth(),height:$t.outerHeight(),top:$o.top,left:$o.left});});},drag:function(e,ui){var d=ui.options.snapTolerance||20;var x1=ui.absolutePosition.left,x2=x1+ui.instance.helperProportions.width,y1=ui.absolutePosition.top,y2=y1+ui.instance.helperProportions.height;for(var i=ui.instance.snapElements.length-1;i>=0;i--){var l=ui.instance.snapElements[i].left,r=l+ui.instance.snapElements[i].width,t=ui.instance.snapElements[i].top,b=t+ui.instance.snapElements[i].height;if(!((l-d<x1&&x1<r+d&&t-d<y1&&y1<b+d)||(l-d<x1&&x1<r+d&&t-d<y2&&y2<b+d)||(l-d<x2&&x2<r+d&&t-d<y1&&y1<b+d)||(l-d<x2&&x2<r+d&&t-d<y2&&y2<b+d)))continue;if(ui.options.snapMode!='inner'){var ts=Math.abs(t-y2)<=20;var bs=Math.abs(b-y1)<=20;var ls=Math.abs(l-x2)<=20;var rs=Math.abs(r-x1)<=20;if(ts)ui.position.top=t-ui.instance.offset.top+ui.instance.clickOffset.top-ui.instance.helperProportions.height;if(bs)ui.position.top=b-ui.instance.offset.top+ui.instance.clickOffset.top;if(ls)ui.position.left=l-ui.instance.offset.left+ui.instance.clickOffset.left-ui.instance.helperProportions.width;if(rs)ui.position.left=r-ui.instance.offset.left+ui.instance.clickOffset.left;}
27
+ if(ui.options.snapMode!='outer'){var ts=Math.abs(t-y1)<=20;var bs=Math.abs(b-y2)<=20;var ls=Math.abs(l-x1)<=20;var rs=Math.abs(r-x2)<=20;if(ts)ui.position.top=t-ui.instance.offset.top+ui.instance.clickOffset.top;if(bs)ui.position.top=b-ui.instance.offset.top+ui.instance.clickOffset.top-ui.instance.helperProportions.height;if(ls)ui.position.left=l-ui.instance.offset.left+ui.instance.clickOffset.left;if(rs)ui.position.left=r-ui.instance.offset.left+ui.instance.clickOffset.left-ui.instance.helperProportions.width;}};}});$.ui.plugin.add("draggable","connectToSortable",{start:function(e,ui){ui.instance.sortable=$.data($(ui.options.connectToSortable)[0],'sortable');ui.instance.sortableOffset=ui.instance.sortable.element.offset();ui.instance.sortableOuterWidth=ui.instance.sortable.element.outerWidth();ui.instance.sortableOuterHeight=ui.instance.sortable.element.outerHeight();if(ui.instance.sortable.options.revert)ui.instance.sortable.shouldRevert=true;},stop:function(e,ui){var inst=ui.instance.sortable;if(inst.isOver){inst.isOver=0;ui.instance.cancelHelperRemoval=true;inst.cancelHelperRemoval=false;if(inst.shouldRevert)inst.options.revert=true;inst.stop(e);inst.options.helper="original";}},drag:function(e,ui){var inst=ui.instance.sortable;ui.instance.position.absolute=ui.absolutePosition;if(inst.intersectsWith.call(ui.instance,{left:ui.instance.sortableOffset.left,top:ui.instance.sortableOffset.top,width:ui.instance.sortableOuterWidth,height:ui.instance.sortableOuterHeight})){if(!inst.isOver){inst.isOver=1;var height=inst.options.placeholderElement?$(inst.options.placeholderElement,$(inst.options.items,inst.element)).innerHeight():$(inst.options.items,inst.element).innerHeight();var width=inst.options.placeholderElement?$(inst.options.placeholderElement,$(inst.options.items,inst.element)).innerWidth():$(inst.options.items,inst.element).innerWidth();inst.currentItem=$(this).clone().appendTo(inst.element);inst.options.helper=function(){return ui.helper[0];};inst.start(e);inst.clickOffset.top=ui.instance.clickOffset.top;inst.clickOffset.left=ui.instance.clickOffset.left;inst.offset.left-=ui.absolutePosition.left-inst.position.absolute.left;inst.offset.top-=ui.absolutePosition.top-inst.position.absolute.top;inst.helperProportions={width:width,height:height};ui.helper.animate({height:height,width:width},500);ui.instance.propagate("toSortable",e);}
28
+ if(inst.currentItem)inst.drag(e);}else{if(inst.isOver){inst.isOver=0;inst.cancelHelperRemoval=true;inst.options.revert=false;inst.stop(e);inst.options.helper="original";inst.currentItem.remove();inst.placeholder.remove();ui.helper.animate({height:this.innerHeight(),width:this.innerWidth()},500);ui.instance.propagate("fromSortable",e);}};}})})(jQuery);;(function($){$.fn.extend({droppable:function(options){var args=Array.prototype.slice.call(arguments,1);return this.each(function(){if(typeof options=="string"){var drop=$.data(this,"droppable");if(drop)drop[options].apply(drop,args);}else if(!$.data(this,"droppable"))
29
+ new $.ui.droppable(this,options);});}});$.ui.droppable=function(element,options){var instance=this;this.element=$(element);$.data(element,"droppable",this);this.element.addClass("ui-droppable");var o=this.options=options=$.extend({},$.ui.droppable.defaults,options);var accept=o.accept;o=$.extend(o,{accept:o.accept&&o.accept.constructor==Function?o.accept:function(d){return $(d).is(accept);}});$(element).bind("setData.droppable",function(event,key,value){o[key]=value;}).bind("getData.droppable",function(event,key){return o[key];}).bind('remove',function(){instance.destroy();});this.proportions={width:this.element.outerWidth(),height:this.element.outerHeight()};$.ui.ddmanager.droppables.push({item:this,over:0,out:1});};$.extend($.ui.droppable,{defaults:{disabled:false,tolerance:'intersect'}});$.extend($.ui.droppable.prototype,{plugins:{},ui:function(c){return{instance:this,draggable:(c.currentItem||c.element),helper:c.helper,position:c.position,absolutePosition:c.positionAbs,options:this.options,element:this.element};},destroy:function(){var drop=$.ui.ddmanager.droppables;for(var i=0;i<drop.length;i++)
30
+ if(drop[i].item==this)
31
+ drop.splice(i,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");},enable:function(){this.element.removeClass("ui-droppable-disabled");this.options.disabled=false;},disable:function(){this.element.addClass("ui-droppable-disabled");this.options.disabled=true;},over:function(e){var draggable=$.ui.ddmanager.current;if(!draggable||(draggable.currentItem||draggable.element)[0]==this.element[0])return;if(this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){$.ui.plugin.call(this,'over',[e,this.ui(draggable)]);this.element.triggerHandler("dropover",[e,this.ui(draggable)],this.options.over);}},out:function(e){var draggable=$.ui.ddmanager.current;if(!draggable||(draggable.currentItem||draggable.element)[0]==this.element[0])return;if(this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){$.ui.plugin.call(this,'out',[e,this.ui(draggable)]);this.element.triggerHandler("dropout",[e,this.ui(draggable)],this.options.out);}},drop:function(e,custom){var draggable=custom||$.ui.ddmanager.current;if(!draggable||(draggable.currentItem||draggable.element)[0]==this.element[0])return;var childrenIntersection=false;this.element.find(".ui-droppable").each(function(){var inst=$.data(this,'droppable');if(inst.options.greedy&&$.ui.intersect(draggable,{item:inst,offset:inst.element.offset()},inst.options.tolerance)){childrenIntersection=true;return false;}});if(childrenIntersection)return;if(this.options.accept.call(this.element,(draggable.currentItem||draggable.element))){$.ui.plugin.call(this,'drop',[e,this.ui(draggable)]);this.element.triggerHandler("drop",[e,this.ui(draggable)],this.options.drop);}},activate:function(e){var draggable=$.ui.ddmanager.current;$.ui.plugin.call(this,'activate',[e,this.ui(draggable)]);if(draggable)this.element.triggerHandler("dropactivate",[e,this.ui(draggable)],this.options.activate);},deactivate:function(e){var draggable=$.ui.ddmanager.current;$.ui.plugin.call(this,'deactivate',[e,this.ui(draggable)]);if(draggable)this.element.triggerHandler("dropdeactivate",[e,this.ui(draggable)],this.options.deactivate);}});$.ui.intersect=function(draggable,droppable,toleranceMode){if(!droppable.offset)return false;var x1=(draggable.positionAbs||draggable.position.absolute).left,x2=x1+draggable.helperProportions.width,y1=(draggable.positionAbs||draggable.position.absolute).top,y2=y1+draggable.helperProportions.height;var l=droppable.offset.left,r=l+droppable.item.proportions.width,t=droppable.offset.top,b=t+droppable.item.proportions.height;switch(toleranceMode){case'fit':if(!((y2-(draggable.helperProportions.height/2)>t&&y1<t)||(y1<b&&y2>b)||(x2>l&&x1<l)||(x1<r&&x2>r)))return false;if(y2-(draggable.helperProportions.height/2)>t&&y1<t)return 1;if(y1<b&&y2>b)return 2;if(x2>l&&x1<l)return 1;if(x1<r&&x2>r)return 2;break;case'intersect':return(l<x1+(draggable.helperProportions.width/2)&&x2-(draggable.helperProportions.width/2)<r&&t<y1+(draggable.helperProportions.height/2)&&y2-(draggable.helperProportions.height/2)<b);break;case'pointer':return(l<((draggable.positionAbs||draggable.position.absolute).left+draggable.clickOffset.left)&&((draggable.positionAbs||draggable.position.absolute).left+draggable.clickOffset.left)<r&&t<((draggable.positionAbs||draggable.position.absolute).top+draggable.clickOffset.top)&&((draggable.positionAbs||draggable.position.absolute).top+draggable.clickOffset.top)<b);break;case'touch':return((y1>=t&&y1<=b)||(y2>=t&&y2<=b)||(y1<t&&y2>b))&&((x1>=l&&x1<=r)||(x2>=l&&x2<=r)||(x1<l&&x2>r));break;default:return false;break;}};$.ui.ddmanager={current:null,droppables:[],prepareOffsets:function(t,e){var m=$.ui.ddmanager.droppables;var type=e?e.type:null;for(var i=0;i<m.length;i++){if(m[i].item.options.disabled||(t&&!m[i].item.options.accept.call(m[i].item.element,(t.currentItem||t.element))))continue;m[i].offset=$(m[i].item.element).offset();m[i].item.proportions={width:m[i].item.element.outerWidth(),height:m[i].item.element.outerHeight()};if(type=="dragstart")m[i].item.activate.call(m[i].item,e);}},drop:function(draggable,e){$.each($.ui.ddmanager.droppables,function(){if(!this.item.options.disabled&&$.ui.intersect(draggable,this,this.item.options.tolerance))
32
+ this.item.drop.call(this.item,e);if(!this.item.options.disabled&&this.item.options.accept.call(this.item.element,(draggable.currentItem||draggable.element))){this.out=1;this.over=0;this.item.deactivate.call(this.item,e);}});},drag:function(draggable,e){if(draggable.options.refreshPositions)$.ui.ddmanager.prepareOffsets(draggable,e);$.each($.ui.ddmanager.droppables,function(){if(this.item.disabled||this.greedyChild)return;var intersects=$.ui.intersect(draggable,this,this.item.options.tolerance);var c=!intersects&&this.over==1?'out':(intersects&&this.over==0?'over':null);if(!c)return;var instance=$.data(this.item.element[0],'droppable');if(instance.options.greedy){this.item.element.parents('.ui-droppable:eq(0)').each(function(){var parent=this;$.each($.ui.ddmanager.droppables,function(){if(this.item.element[0]!=parent)return;this[c]=0;this[c=='out'?'over':'out']=1;this.greedyChild=(c=='over'?1:0);this.item[c=='out'?'over':'out'].call(this.item,e);return false;});});}
33
+ this[c]=1;this[c=='out'?'over':'out']=0;this.item[c].call(this.item,e);});}};$.ui.plugin.add("droppable","activeClass",{activate:function(e,ui){$(this).addClass(ui.options.activeClass);},deactivate:function(e,ui){$(this).removeClass(ui.options.activeClass);},drop:function(e,ui){$(this).removeClass(ui.options.activeClass);}});$.ui.plugin.add("droppable","hoverClass",{over:function(e,ui){$(this).addClass(ui.options.hoverClass);},out:function(e,ui){$(this).removeClass(ui.options.hoverClass);},drop:function(e,ui){$(this).removeClass(ui.options.hoverClass);}});})(jQuery);;(function($){$.fn.extend({slider:function(options){var args=Array.prototype.slice.call(arguments,1);if(options=="value")
34
+ return $.data(this[0],"slider").value(arguments[1]);return this.each(function(){if(typeof options=="string"){var slider=$.data(this,"slider");if(slider)slider[options].apply(slider,args);}else if(!$.data(this,"slider"))
35
+ new $.ui.slider(this,options);});}});$.ui.slider=function(element,options){var self=this;this.element=$(element);$.data(element,"slider",this);this.element.addClass("ui-slider");this.options=$.extend({},$.ui.slider.defaults,options);var o=this.options;$.extend(o,{axis:o.axis||(element.offsetWidth<element.offsetHeight?'vertical':'horizontal'),max:!isNaN(parseInt(o.max,10))?{x:parseInt(o.max,10),y:parseInt(o.max,10)}:({x:o.max&&o.max.x||100,y:o.max&&o.max.y||100}),min:!isNaN(parseInt(o.min,10))?{x:parseInt(o.min,10),y:parseInt(o.min,10)}:({x:o.min&&o.min.x||0,y:o.min&&o.min.y||0})});o.realMax={x:o.max.x-o.min.x,y:o.max.y-o.min.y};o.stepping={x:o.stepping&&o.stepping.x||parseInt(o.stepping,10)||(o.steps&&o.steps.x?o.realMax.x/o.steps.x:0),y:o.stepping&&o.stepping.y||parseInt(o.stepping,10)||(o.steps&&o.steps.y?o.realMax.y/o.steps.y:0)};$(element).bind("setData.slider",function(event,key,value){self.options[key]=value;}).bind("getData.slider",function(event,key){return self.options[key];});this.handle=$(o.handle,element);if(!this.handle.length){self.handle=self.generated=$(o.handles||[0]).map(function(){var handle=$("<div/>").addClass("ui-slider-handle").appendTo(element);if(this.id)
36
+ handle.attr("id",this.id);return handle[0];});}
37
+ $(this.handle).mouseInteraction({executor:this,delay:o.delay,distance:o.distance!=undefined?o.distance:1,dragPrevention:o.prevention?o.prevention.toLowerCase().split(','):['input','textarea','button','select','option'],start:this.start,stop:this.stop,drag:this.drag,condition:function(e,handle){if(!this.disabled){if(this.currentHandle)this.blur(this.currentHandle);this.focus(handle,1);return!this.disabled;}}}).wrap('<a href="javascript:void(0)" style="cursor:default;"></a>').parent().bind('focus',function(e){self.focus(this.firstChild);}).bind('blur',function(e){self.blur(this.firstChild);}).bind('keydown',function(e){if(/(37|38|39|40)/.test(e.keyCode)){self.moveTo({x:/(37|39)/.test(e.keyCode)?(e.keyCode==37?'-':'+')+'='+self.oneStep(1):null,y:/(38|40)/.test(e.keyCode)?(e.keyCode==38?'-':'+')+'='+self.oneStep(2):null},this.firstChild);}});this.actualSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.element.bind('mousedown.slider',function(e){self.click.apply(self,[e]);self.currentHandle.data("ui-mouse").trigger(e);self.firstValue=self.firstValue+1;});$.each(o.handles||[],function(index,handle){self.moveTo(handle.start,index,true);});if(!isNaN(o.startValue))
38
+ this.moveTo(o.startValue,0,true);if(this.handle.length==1)this.previousHandle=this.handle;if(this.handle.length==2&&o.range)this.createRange();};$.extend($.ui.slider.prototype,{plugins:{},createRange:function(){this.rangeElement=$('<div></div>').addClass('ui-slider-range').css({position:'absolute'}).appendTo(this.element);this.updateRange();},updateRange:function(){var prop=this.options.axis=="vertical"?"top":"left";var size=this.options.axis=="vertical"?"height":"width";this.rangeElement.css(prop,parseInt($(this.handle[0]).css(prop),10)+this.handleSize(0,this.options.axis=="vertical"?2:1)/2);this.rangeElement.css(size,parseInt($(this.handle[1]).css(prop),10)-parseInt($(this.handle[0]).css(prop),10));},getRange:function(){return this.rangeElement?this.convertValue(parseInt(this.rangeElement.css(this.options.axis=="vertical"?"height":"width"),10)):null;},ui:function(e){return{instance:this,options:this.options,handle:this.currentHandle,value:this.options.axis!="both"||!this.options.axis?Math.round(this.value(null,this.options.axis=="vertical"?2:1)):{x:Math.round(this.value(null,1)),y:Math.round(this.value(null,2))},range:this.getRange()};},propagate:function(n,e){$.ui.plugin.call(this,n,[e,this.ui()]);this.element.triggerHandler(n=="slide"?n:"slide"+n,[e,this.ui()],this.options[n]);},destroy:function(){this.element.removeClass("ui-slider ui-slider-disabled").removeData("slider").unbind(".slider");this.handle.removeMouseInteraction();this.generated&&this.generated.remove();},enable:function(){this.element.removeClass("ui-slider-disabled");this.disabled=false;},disable:function(){this.element.addClass("ui-slider-disabled");this.disabled=true;},focus:function(handle,hard){this.currentHandle=$(handle).addClass('ui-slider-handle-active');if(hard)this.currentHandle.parent()[0].focus();},blur:function(handle){$(handle).removeClass('ui-slider-handle-active');if(this.currentHandle&&this.currentHandle[0]==handle){this.previousHandle=this.currentHandle;this.currentHandle=null;};},value:function(handle,axis){if(this.handle.length==1)this.currentHandle=this.handle;if(!axis)axis=this.options.axis=="vertical"?2:1;var value=((parseInt($(handle!=undefined&&handle!==null?this.handle[handle]||handle:this.currentHandle).css(axis==1?"left":"top"),10)/(this.actualSize[axis==1?"width":"height"]-this.handleSize(null,axis)))*this.options.realMax[axis==1?"x":"y"])+this.options.min[axis==1?"x":"y"];var o=this.options;if(o.stepping[axis==1?"x":"y"]){value=Math.round(value/o.stepping[axis==1?"x":"y"])*o.stepping[axis==1?"x":"y"];}
39
+ return value;},convertValue:function(value,axis){if(!axis)axis=this.options.axis=="vertical"?2:1;return this.options.min[axis==1?"x":"y"]+(value/(this.actualSize[axis==1?"width":"height"]-this.handleSize(null,axis)))*this.options.realMax[axis==1?"x":"y"];},translateValue:function(value,axis){if(!axis)axis=this.options.axis=="vertical"?2:1;return((value-this.options.min[axis==1?"x":"y"])/this.options.realMax[axis==1?"x":"y"])*(this.actualSize[axis==1?"width":"height"]-this.handleSize(null,axis));},handleSize:function(handle,axis){if(!axis)axis=this.options.axis=="vertical"?2:1;return $(handle!=undefined&&handle!==null?this.handle[handle]:this.currentHandle)[axis==1?"outerWidth":"outerHeight"]();},click:function(e){var pointer=[e.pageX,e.pageY];var clickedHandle=false;this.handle.each(function(){if(this==e.target)clickedHandle=true;});if(clickedHandle||this.disabled||!(this.currentHandle||this.previousHandle))return;if(this.previousHandle)this.focus(this.previousHandle,1);this.offset=this.element.offset();this.moveTo({y:this.convertValue(e.pageY-this.offset.top-this.currentHandle.outerHeight()/2),x:this.convertValue(e.pageX-this.offset.left-this.currentHandle.outerWidth()/2)},null,true);},start:function(e,handle){var o=this.options;if(!this.currentHandle)this.focus(this.previousHandle,true);this.offset=this.element.offset();this.handleOffset=this.currentHandle.offset();this.clickOffset={top:e.pageY-this.handleOffset.top,left:e.pageX-this.handleOffset.left};this.firstValue=this.value();this.propagate('start',e);return false;},stop:function(e){this.propagate('stop',e);if(this.firstValue!=this.value())
40
+ this.propagate('change',e);this.focus(this.currentHandle,true);return false;},oneStep:function(axis){if(!axis)axis=this.options.axis=="vertical"?2:1;return this.options.stepping[axis==1?"x":"y"]?this.options.stepping[axis==1?"x":"y"]:(this.options.realMax[axis==1?"x":"y"]/this.actualSize[axis==1?"width":"height"])*5;},translateRange:function(value,axis){if(this.rangeElement){if(this.currentHandle[0]==this.handle[0]&&value>=this.translateValue(this.value(1),axis))
41
+ value=this.translateValue(this.value(1,axis)-this.oneStep(axis),axis);if(this.currentHandle[0]==this.handle[1]&&value<=this.translateValue(this.value(0),axis))
42
+ value=this.translateValue(this.value(0,axis)+this.oneStep(axis));}
43
+ if(this.options.handles){var handle=this.options.handles[this.handleIndex()];if(value<this.translateValue(handle.min,axis)){value=this.translateValue(handle.min,axis);}else if(value>this.translateValue(handle.max,axis)){value=this.translateValue(handle.max,axis);}}
44
+ return value;},handleIndex:function(){return this.handle.index(this.currentHandle[0])},translateLimits:function(value,axis){if(!axis)axis=this.options.axis=="vertical"?2:1;if(value>=this.actualSize[axis==1?"width":"height"]-this.handleSize(null,axis))
45
+ value=this.actualSize[axis==1?"width":"height"]-this.handleSize(null,axis);if(value<=0)
46
+ value=0;return value;},drag:function(e,handle){var o=this.options;var position={top:e.pageY-this.offset.top-this.clickOffset.top,left:e.pageX-this.offset.left-this.clickOffset.left};if(!this.currentHandle)this.focus(this.previousHandle,true);position.left=this.translateLimits(position.left,1);position.top=this.translateLimits(position.top,2);if(o.stepping.x){var value=this.convertValue(position.left,1);value=Math.round(value/o.stepping.x)*o.stepping.x;position.left=this.translateValue(value,1);}
47
+ if(o.stepping.y){var value=this.convertValue(position.top,2);value=Math.round(value/o.stepping.y)*o.stepping.y;position.top=this.translateValue(value,2);}
48
+ position.left=this.translateRange(position.left,1);position.top=this.translateRange(position.top,2);if(o.axis!="vertical")this.currentHandle.css({left:position.left});if(o.axis!="horizontal")this.currentHandle.css({top:position.top});if(this.rangeElement)
49
+ this.updateRange();this.propagate('slide',e);return false;},moveTo:function(value,handle,noPropagation){var o=this.options;if(handle==undefined&&!this.currentHandle&&this.handle.length!=1)
50
+ return false;if(handle==undefined&&!this.currentHandle)
51
+ handle=0;if(handle!=undefined)
52
+ this.currentHandle=this.previousHandle=$(this.handle[handle]||handle);if(value.x!==undefined&&value.y!==undefined){var x=value.x;var y=value.y;}else{var x=value,y=value;}
53
+ if(x&&x.constructor!=Number){if(/^\-\=/.test(x)){x=this.value(null,1)-parseInt(x.replace('-=',''),10);}else if(/^\+\=/.test(x)){x=this.value(null,1)+parseInt(x.replace('+=',''),10);}}
54
+ if(y&&y.constructor!=Number){if(/^\-\=/.test(y)){y=this.value(null,2)-parseInt(y.replace('-=',''),10);}else if(/^\+\=/.test(y)){y=this.value(null,2)+parseInt(y.replace('+=',''),10);}}
55
+ if(o.axis!="vertical"&&x){if(o.stepping.x)x=Math.round(x/o.stepping.x)*o.stepping.x;x=this.translateValue(x,1);x=this.translateLimits(x,1);x=this.translateRange(x,1);this.currentHandle.css({left:x});}
56
+ if(o.axis!="horizontal"&&y){if(o.stepping.y)y=Math.round(y/o.stepping.y)*o.stepping.y;y=this.translateValue(y,2);y=this.translateLimits(y,2);y=this.translateRange(y,2);this.currentHandle.css({top:y});}
57
+ if(this.rangeElement)
58
+ this.updateRange();if(!noPropagation){this.propagate('start',null);this.propagate('stop',null);this.propagate('change',null);this.propagate("slide",null);}}});$.ui.slider.defaults={handle:".ui-slider-handle"};})(jQuery);;(function($){if(window.Node&&Node.prototype&&!Node.prototype.contains){Node.prototype.contains=function(arg){return!!(this.compareDocumentPosition(arg)&16);};}
59
+ $.fn.extend({sortable:function(options){var args=Array.prototype.slice.call(arguments,1);if(options=="serialize"||options=="toArray")
60
+ return $.data(this[0],"sortable")[options](arguments[1]);return this.each(function(){if(typeof options=="string"){var sort=$.data(this,"sortable");if(sort)sort[options].apply(sort,args);}else if(!$.data(this,"sortable"))
61
+ new $.ui.sortable(this,options);});}});$.ui.sortable=function(element,options){var self=this;this.element=$(element);this.containerCache={};$.data(element,"sortable",this);this.element.addClass("ui-sortable");this.options=$.extend({},options);var o=this.options;$.extend(o,{items:this.options.items||'> *',zIndex:this.options.zIndex||1000,startCondition:function(){return!self.options.disabled;}});$(element).bind("setData.sortable",function(event,key,value){self.options[key]=value;}).bind("getData.sortable",function(event,key){return self.options[key];});this.refresh();this.floating=this.items.length?(/left|right/).test(this.items[0].item.css('float')):false;if(!(/(relative|absolute|fixed)/).test(this.element.css('position')))this.element.css('position','relative');this.offset=this.element.offset();this.element.mouseInteraction({executor:this,delay:o.delay,distance:o.distance||0,dragPrevention:o.prevention?o.prevention.toLowerCase().split(','):['input','textarea','button','select','option'],start:this.start,stop:this.stop,drag:this.drag,condition:function(e){if(this.options.disabled||this.options.type=='static')return false;var currentItem=null,nodes=$(e.target).parents().each(function(){if($.data(this,'sortable-item')){currentItem=$(this);return false;}});if($.data(e.target,'sortable-item'))currentItem=$(e.target);if(!currentItem)return false;if(this.options.handle){var validHandle=false;$(this.options.handle,currentItem).each(function(){if(this==e.target)validHandle=true;});if(!validHandle)return false;}
62
+ this.currentItem=currentItem;return true;}});if(o.cursorAt&&o.cursorAt.constructor==Array)
63
+ o.cursorAt={left:o.cursorAt[0],top:o.cursorAt[1]};};$.extend($.ui.sortable.prototype,{plugins:{},ui:function(inst){return{helper:(inst||this)["helper"],placeholder:(inst||this)["placeholder"]||$([]),position:(inst||this)["position"].current,absolutePosition:(inst||this)["position"].absolute,instance:this,options:this.options,element:this.element,item:(inst||this)["currentItem"],sender:inst?inst.element:null};},propagate:function(n,e,inst){$.ui.plugin.call(this,n,[e,this.ui(inst)]);this.element.triggerHandler(n=="sort"?n:"sort"+n,[e,this.ui(inst)],this.options[n]);},serialize:function(o){var items=$(this.options.items,this.element).not('.ui-sortable-helper');var str=[];o=o||{};items.each(function(){var res=($(this).attr(o.attribute||'id')||'').match(o.expression||(/(.+)[-=_](.+)/));if(res)str.push((o.key||res[1])+'[]='+(o.key?res[1]:res[2]));});return str.join('&');},toArray:function(attr){var items=$(this.options.items,this.element).not('.ui-sortable-helper');var ret=[];items.each(function(){ret.push($(this).attr(attr||'id'));});return ret;},enable:function(){this.element.removeClass("ui-sortable-disabled");this.options.disabled=false;},disable:function(){this.element.addClass("ui-sortable-disabled");this.options.disabled=true;},intersectsWith:function(item){var x1=this.position.absolute.left,x2=x1+this.helperProportions.width,y1=this.position.absolute.top,y2=y1+this.helperProportions.height;var l=item.left,r=l+item.width,t=item.top,b=t+item.height;return(l<x1+(this.helperProportions.width/2)&&x2-(this.helperProportions.width/2)<r&&t<y1+(this.helperProportions.height/2)&&y2-(this.helperProportions.height/2)<b);},intersectsWithEdge:function(item){var x1=this.position.absolute.left,x2=x1+this.helperProportions.width,y1=this.position.absolute.top,y2=y1+this.helperProportions.height;var l=item.left,r=l+item.width,t=item.top,b=t+item.height;if(!(l<x1+(this.helperProportions.width/2)&&x2-(this.helperProportions.width/2)<r&&t<y1+(this.helperProportions.height/2)&&y2-(this.helperProportions.height/2)<b))return false;if(this.floating){if(x2>l&&x1<l)return 2;if(x1<r&&x2>r)return 1;}else{if(y2>t&&y1<t)return 1;if(y1<b&&y2>b)return 2;}
64
+ return false;},inEmptyZone:function(container){if(!$(container.options.items,container.element).length){return container.options.dropOnEmpty?true:false;};var last=$(container.options.items,container.element).not('.ui-sortable-helper');last=$(last[last.length-1]);var top=last.offset()[this.floating?'left':'top']+last[0][this.floating?'offsetWidth':'offsetHeight'];return(this.position.absolute[this.floating?'left':'top']>top);},refresh:function(){this.refreshItems();this.refreshPositions();},refreshItems:function(){this.items=[];this.containers=[this];var items=this.items;var queries=[$(this.options.items,this.element)];if(this.options.connectWith){for(var i=this.options.connectWith.length-1;i>=0;i--){var cur=$(this.options.connectWith[i]);for(var j=cur.length-1;j>=0;j--){var inst=$.data(cur[j],'sortable');if(inst&&!inst.options.disabled){queries.push($(inst.options.items,inst.element));this.containers.push(inst);}};};}
65
+ for(var i=queries.length-1;i>=0;i--){queries[i].each(function(){$.data(this,'sortable-item',true);items.push({item:$(this),width:0,height:0,left:0,top:0});});};},refreshPositions:function(fast){for(var i=this.items.length-1;i>=0;i--){if(!fast)this.items[i].width=this.items[i].item.outerWidth();if(!fast)this.items[i].height=this.items[i].item.outerHeight();var p=this.items[i].item.offset();this.items[i].left=p.left;this.items[i].top=p.top;};for(var i=this.containers.length-1;i>=0;i--){var p=this.containers[i].element.offset();this.containers[i].containerCache.left=p.left;this.containers[i].containerCache.top=p.top;this.containers[i].containerCache.width=this.containers[i].element.outerWidth();this.containers[i].containerCache.height=this.containers[i].element.outerHeight();};},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable").removeMouseInteraction();for(var i=this.items.length-1;i>=0;i--)
66
+ this.items[i].item.removeData("sortable-item");},createPlaceholder:function(that){(that||this).placeholderElement=this.options.placeholderElement?$(this.options.placeholderElement,(that||this).currentItem):(that||this).currentItem;(that||this).placeholder=$('<div></div>').addClass(this.options.placeholder).appendTo('body').css({position:'absolute'}).css((that||this).placeholderElement.offset()).css({width:(that||this).placeholderElement.outerWidth(),height:(that||this).placeholderElement.outerHeight()});},contactContainers:function(e){for(var i=this.containers.length-1;i>=0;i--){if(this.intersectsWith(this.containers[i].containerCache)){if(!this.containers[i].containerCache.over){if(this.currentContainer!=this.containers[i]){var dist=10000;var itemWithLeastDistance=null;var base=this.position.absolute[this.containers[i].floating?'left':'top'];for(var j=this.items.length-1;j>=0;j--){if(!this.containers[i].element[0].contains(this.items[j].item[0]))continue;var cur=this.items[j][this.containers[i].floating?'left':'top'];if(Math.abs(cur-base)<dist){dist=Math.abs(cur-base);itemWithLeastDistance=this.items[j];}}
67
+ if(this.placeholder)this.placeholder.remove();if(this.containers[i].options.placeholder){this.containers[i].createPlaceholder(this);}else{this.placeholder=null;this.placeholderElement=null;}
68
+ itemWithLeastDistance?this.rearrange(e,itemWithLeastDistance):this.rearrange(e,null,this.containers[i].element);this.propagate("change",e);this.containers[i].propagate("change",e,this);this.currentContainer=this.containers[i];}
69
+ this.containers[i].propagate("over",e,this);this.containers[i].containerCache.over=1;}}else{if(this.containers[i].containerCache.over){this.containers[i].propagate("out",e,this);this.containers[i].containerCache.over=0;}}};},start:function(e,el){var o=this.options;this.refresh();this.helper=typeof o.helper=='function'?$(o.helper.apply(this.element[0],[e,this.currentItem])):this.currentItem.clone();if(!this.helper.parents('body').length)this.helper.appendTo(o.appendTo||this.currentItem[0].parentNode);this.helper.css({position:'absolute',clear:'both'}).addClass('ui-sortable-helper');$.extend(this,{offsetParent:this.helper.offsetParent(),offsets:{absolute:this.currentItem.offset()},mouse:{start:{top:e.pageY,left:e.pageX}},margins:{top:parseInt(this.currentItem.css("marginTop"))||0,left:parseInt(this.currentItem.css("marginLeft"))||0}});this.offsets.parent=this.offsetParent.offset();this.clickOffset={left:e.pageX-this.offsets.absolute.left,top:e.pageY-this.offsets.absolute.top};this.originalPosition={left:this.offsets.absolute.left-this.offsets.parent.left-this.margins.left,top:this.offsets.absolute.top-this.offsets.parent.top-this.margins.top}
70
+ this.offset={left:e.pageX-this.originalPosition.left,top:e.pageY-this.originalPosition.top};$.extend(this,{position:{current:{top:e.pageY-this.offset.top,left:e.pageX-this.offset.left},absolute:{left:e.pageX-this.clickOffset.left,top:e.pageY-this.clickOffset.top},dom:this.currentItem.prev()[0]}});if(o.placeholder)this.createPlaceholder();this.propagate("start",e);this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};if(o.cursorAt){if(o.cursorAt.top!=undefined||o.cursorAt.bottom!=undefined){this.offset.top-=this.clickOffset.top-(o.cursorAt.top!=undefined?o.cursorAt.top:(this.helperProportions.height-o.cursorAt.bottom));this.clickOffset.top=(o.cursorAt.top!=undefined?o.cursorAt.top:(this.helperProportions.height-o.cursorAt.bottom));}
71
+ if(o.cursorAt.left!=undefined||o.cursorAt.right!=undefined){this.offset.left-=this.clickOffset.left-(o.cursorAt.left!=undefined?o.cursorAt.left:(this.helperProportions.width-o.cursorAt.right));this.clickOffset.left=(o.cursorAt.left!=undefined?o.cursorAt.left:(this.helperProportions.width-o.cursorAt.right));}}
72
+ if(this.options.placeholder!='clone')$(this.currentItem).css('visibility','hidden');for(var i=this.containers.length-1;i>=0;i--){this.containers[i].propagate("activate",e,this);}
73
+ if($.ui.ddmanager)$.ui.ddmanager.current=this;if($.ui.ddmanager&&!o.dropBehaviour)$.ui.ddmanager.prepareOffsets(this,e);this.dragging=true;return false;},stop:function(e){this.propagate("stop",e);if(this.position.dom!=this.currentItem.prev()[0])this.propagate("update",e);if(!this.element[0].contains(this.currentItem[0])){this.propagate("remove",e);for(var i=this.containers.length-1;i>=0;i--){if(this.containers[i].element[0].contains(this.currentItem[0])){this.containers[i].propagate("update",e,this);this.containers[i].propagate("receive",e,this);}};};for(var i=this.containers.length-1;i>=0;i--){this.containers[i].propagate("deactivate",e,this);if(this.containers[i].containerCache.over){this.containers[i].propagate("out",e,this);this.containers[i].containerCache.over=0;}}
74
+ if($.ui.ddmanager&&!this.options.dropBehaviour)$.ui.ddmanager.drop(this,e);this.dragging=false;if(this.cancelHelperRemoval)return false;$(this.currentItem).css('visibility','');if(this.placeholder)this.placeholder.remove();this.helper.remove();return false;},drag:function(e){this.position.current={top:e.pageY-this.offset.top,left:e.pageX-this.offset.left};this.position.absolute={left:e.pageX-this.clickOffset.left,top:e.pageY-this.clickOffset.top};for(var i=this.items.length-1;i>=0;i--){var intersection=this.intersectsWithEdge(this.items[i]);if(!intersection)continue;if(this.items[i].item[0]!=this.currentItem[0]&&this.currentItem[intersection==1?"next":"prev"]()[0]!=this.items[i].item[0]&&!this.currentItem[0].contains(this.items[i].item[0])&&(this.options.type=='semi-dynamic'?!this.element[0].contains(this.items[i].item[0]):true)){this.direction=intersection==1?"down":"up";this.rearrange(e,this.items[i]);this.propagate("change",e);break;}}
75
+ this.contactContainers(e);if($.ui.ddmanager)$.ui.ddmanager.drag(this,e);this.propagate("sort",e);this.helper.css({left:this.position.current.left+'px',top:this.position.current.top+'px'});return false;},rearrange:function(e,i,a){a?a.append(this.currentItem):i.item[this.direction=='down'?'before':'after'](this.currentItem);this.refreshPositions(true);if(this.placeholderElement)this.placeholder.css(this.placeholderElement.offset());}});$.ui.plugin.add("sortable","cursor",{start:function(e,ui){var t=$('body');if(t.css("cursor"))ui.options._cursor=t.css("cursor");t.css("cursor",ui.options.cursor);},stop:function(e,ui){if(ui.options._cursor)$('body').css("cursor",ui.options._cursor);}});$.ui.plugin.add("sortable","zIndex",{start:function(e,ui){var t=ui.helper;if(t.css("zIndex"))ui.options._zIndex=t.css("zIndex");t.css('zIndex',ui.options.zIndex);},stop:function(e,ui){if(ui.options._zIndex)$(ui.helper).css('zIndex',ui.options._zIndex);}});$.ui.plugin.add("sortable","opacity",{start:function(e,ui){var t=ui.helper;if(t.css("opacity"))ui.options._opacity=t.css("opacity");t.css('opacity',ui.options.opacity);},stop:function(e,ui){if(ui.options._opacity)$(ui.helper).css('opacity',ui.options._opacity);}});$.ui.plugin.add("sortable","revert",{stop:function(e,ui){var self=ui.instance;self.cancelHelperRemoval=true;var cur=self.currentItem.offset();var op=self.helper.offsetParent().offset();if(ui.instance.options.zIndex)ui.helper.css('zIndex',ui.instance.options.zIndex);if(ui.instance.placeholder)ui.instance.placeholder.animate({opacity:'hide'},parseInt(ui.options.revert,10)||500);ui.helper.animate({left:cur.left-op.left-self.margins.left,top:cur.top-op.top-self.margins.top},parseInt(ui.options.revert,10)||500,function(){self.currentItem.css('visibility','visible');window.setTimeout(function(){if(self.placeholder)self.placeholder.remove();self.helper.remove();if(ui.options._zIndex)ui.helper.css('zIndex',ui.options._zIndex);},50);});}});$.ui.plugin.add("sortable","containment",{start:function(e,ui){var o=ui.options;if((o.containment.left!=undefined||o.containment.constructor==Array)&&!o._containment)return;if(!o._containment)o._containment=o.containment;if(o._containment=='parent')o._containment=this[0].parentNode;if(o._containment=='sortable')o._containment=this[0];if(o._containment=='document'){o.containment=[0,0,$(document).width(),($(document).height()||document.body.parentNode.scrollHeight)];}else{var ce=$(o._containment);var co=ce.offset();o.containment=[co.left,co.top,co.left+(ce.outerWidth()||ce[0].scrollWidth),co.top+(ce.outerHeight()||ce[0].scrollHeight)];}},sort:function(e,ui){var o=ui.options;var h=ui.helper;var c=o.containment;var self=ui.instance;var borderLeft=(parseInt(self.offsetParent.css("borderLeftWidth"),10)||0);var borderRight=(parseInt(self.offsetParent.css("borderRightWidth"),10)||0);var borderTop=(parseInt(self.offsetParent.css("borderTopWidth"),10)||0);var borderBottom=(parseInt(self.offsetParent.css("borderBottomWidth"),10)||0);if(c.constructor==Array){if((self.position.absolute.left<c[0]))self.position.current.left=c[0]-self.offsets.parent.left-self.margins.left;if((self.position.absolute.top<c[1]))self.position.current.top=c[1]-self.offsets.parent.top-self.margins.top;if(self.position.absolute.left-c[2]+self.helperProportions.width>=0)self.position.current.left=c[2]-self.offsets.parent.left-self.helperProportions.width-self.margins.left-borderLeft-borderRight;if(self.position.absolute.top-c[3]+self.helperProportions.height>=0)self.position.current.top=c[3]-self.offsets.parent.top-self.helperProportions.height-self.margins.top-borderTop-borderBottom;}else{if((ui.position.left<c.left))self.position.current.left=c.left;if((ui.position.top<c.top))self.position.current.top=c.top;if(ui.position.left-self.offsetParent.innerWidth()+self.helperProportions.width+c.right+borderLeft+borderRight>=0)self.position.current.left=self.offsetParent.innerWidth()-self.helperProportions.width-c.right-borderLeft-borderRight;if(ui.position.top-self.offsetParent.innerHeight()+self.helperProportions.height+c.bottom+borderTop+borderBottom>=0)self.position.current.top=self.offsetParent.innerHeight()-self.helperProportions.height-c.bottom-borderTop-borderBottom;}}});$.ui.plugin.add("sortable","axis",{sort:function(e,ui){var o=ui.options;if(o.constraint)o.axis=o.constraint;o.axis=='x'?ui.instance.position.top=ui.instance.originalPosition.top:ui.instance.position.left=ui.instance.originalPosition.left;}});$.ui.plugin.add("sortable","scroll",{start:function(e,ui){var o=ui.options;o.scrollSensitivity=o.scrollSensitivity||20;o.scrollSpeed=o.scrollSpeed||20;ui.instance.overflowY=function(el){do{if((/auto|scroll/).test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-y')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(this);ui.instance.overflowX=function(el){do{if((/auto|scroll/).test(el.css('overflow'))||(/auto|scroll/).test(el.css('overflow-x')))return el;el=el.parent();}while(el[0].parentNode);return $(document);}(this);if(ui.instance.overflowY[0]!=document&&ui.instance.overflowY[0].tagName!='HTML')ui.instance.overflowYstart=ui.instance.overflowY[0].scrollTop;if(ui.instance.overflowX[0]!=document&&ui.instance.overflowX[0].tagName!='HTML')ui.instance.overflowXstart=ui.instance.overflowX[0].scrollLeft;},sort:function(e,ui){var o=ui.options;var i=ui.instance;if(i.overflowY[0]!=document&&i.overflowY[0].tagName!='HTML'){if(i.overflowY[0].offsetHeight-(ui.position.top-i.overflowY[0].scrollTop+i.clickOffset.top)<o.scrollSensitivity)
76
+ i.overflowY[0].scrollTop=i.overflowY[0].scrollTop+o.scrollSpeed;if((ui.position.top-i.overflowY[0].scrollTop+i.clickOffset.top)<o.scrollSensitivity)
77
+ i.overflowY[0].scrollTop=i.overflowY[0].scrollTop-o.scrollSpeed;}else{if(e.pageY-$(document).scrollTop()<o.scrollSensitivity)
78
+ $(document).scrollTop($(document).scrollTop()-o.scrollSpeed);if($(window).height()-(e.pageY-$(document).scrollTop())<o.scrollSensitivity)
79
+ $(document).scrollTop($(document).scrollTop()+o.scrollSpeed);}
80
+ if(i.overflowX[0]!=document&&i.overflowX[0].tagName!='HTML'){if(i.overflowX[0].offsetWidth-(ui.position.left-i.overflowX[0].scrollLeft+i.clickOffset.left)<o.scrollSensitivity)
81
+ i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft+o.scrollSpeed;if((ui.position.top-i.overflowX[0].scrollLeft+i.clickOffset.left)<o.scrollSensitivity)
82
+ i.overflowX[0].scrollLeft=i.overflowX[0].scrollLeft-o.scrollSpeed;}else{if(e.pageX-$(document).scrollLeft()<o.scrollSensitivity)
83
+ $(document).scrollLeft($(document).scrollLeft()-o.scrollSpeed);if($(window).width()-(e.pageX-$(document).scrollLeft())<o.scrollSensitivity)
84
+ $(document).scrollLeft($(document).scrollLeft()+o.scrollSpeed);}
85
+ i.offset={left:i.mouse.start.left-i.originalPosition.left+(i.overflowXstart!==undefined?i.overflowXstart-i.overflowX[0].scrollLeft:0),top:i.mouse.start.top-i.originalPosition.top+(i.overflowYstart!==undefined?i.overflowYstart-i.overflowX[0].scrollTop:0)};}});})(jQuery);
@@ -0,0 +1,32 @@
1
+ /*
2
+ * jQuery 1.2.3 - New Wave Javascript
3
+ *
4
+ * Copyright (c) 2008 John Resig (jquery.com)
5
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
6
+ * and GPL (GPL-LICENSE.txt) licenses.
7
+ *
8
+ * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
9
+ * $Rev: 4663 $
10
+ */
11
+ (function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
12
+ selector=[];}}else
13
+ return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
14
+ return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
15
+ selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
16
+ return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
17
+ this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
18
+ return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
19
+ jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
20
+ script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
21
+ for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
22
+ for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
23
+ jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
24
+ ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
25
+ ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
26
+ for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
27
+ for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
28
+ jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
29
+ jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
30
+ for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
31
+ s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
32
+ e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();
@@ -0,0 +1,4225 @@
1
+ /* Prototype JavaScript framework, version 1.6.0.1
2
+ * (c) 2005-2007 Sam Stephenson
3
+ *
4
+ * Prototype is freely distributable under the terms of an MIT-style license.
5
+ * For details, see the Prototype web site: http://www.prototypejs.org/
6
+ *
7
+ *--------------------------------------------------------------------------*/
8
+
9
+ var Prototype = {
10
+ Version: '1.6.0.1',
11
+
12
+ Browser: {
13
+ IE: !!(window.attachEvent && !window.opera),
14
+ Opera: !!window.opera,
15
+ WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
16
+ Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1,
17
+ MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
18
+ },
19
+
20
+ BrowserFeatures: {
21
+ XPath: !!document.evaluate,
22
+ ElementExtensions: !!window.HTMLElement,
23
+ SpecificElementExtensions:
24
+ document.createElement('div').__proto__ &&
25
+ document.createElement('div').__proto__ !==
26
+ document.createElement('form').__proto__
27
+ },
28
+
29
+ ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',
30
+ JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,
31
+
32
+ emptyFunction: function() { },
33
+ K: function(x) { return x }
34
+ };
35
+
36
+ if (Prototype.Browser.MobileSafari)
37
+ Prototype.BrowserFeatures.SpecificElementExtensions = false;
38
+
39
+
40
+ /* Based on Alex Arnell's inheritance implementation. */
41
+ var Class = {
42
+ create: function() {
43
+ var parent = null, properties = $A(arguments);
44
+ if (Object.isFunction(properties[0]))
45
+ parent = properties.shift();
46
+
47
+ function klass() {
48
+ this.initialize.apply(this, arguments);
49
+ }
50
+
51
+ Object.extend(klass, Class.Methods);
52
+ klass.superclass = parent;
53
+ klass.subclasses = [];
54
+
55
+ if (parent) {
56
+ var subclass = function() { };
57
+ subclass.prototype = parent.prototype;
58
+ klass.prototype = new subclass;
59
+ parent.subclasses.push(klass);
60
+ }
61
+
62
+ for (var i = 0; i < properties.length; i++)
63
+ klass.addMethods(properties[i]);
64
+
65
+ if (!klass.prototype.initialize)
66
+ klass.prototype.initialize = Prototype.emptyFunction;
67
+
68
+ klass.prototype.constructor = klass;
69
+
70
+ return klass;
71
+ }
72
+ };
73
+
74
+ Class.Methods = {
75
+ addMethods: function(source) {
76
+ var ancestor = this.superclass && this.superclass.prototype;
77
+ var properties = Object.keys(source);
78
+
79
+ if (!Object.keys({ toString: true }).length)
80
+ properties.push("toString", "valueOf");
81
+
82
+ for (var i = 0, length = properties.length; i < length; i++) {
83
+ var property = properties[i], value = source[property];
84
+ if (ancestor && Object.isFunction(value) &&
85
+ value.argumentNames().first() == "$super") {
86
+ var method = value, value = Object.extend((function(m) {
87
+ return function() { return ancestor[m].apply(this, arguments) };
88
+ })(property).wrap(method), {
89
+ valueOf: function() { return method },
90
+ toString: function() { return method.toString() }
91
+ });
92
+ }
93
+ this.prototype[property] = value;
94
+ }
95
+
96
+ return this;
97
+ }
98
+ };
99
+
100
+ var Abstract = { };
101
+
102
+ Object.extend = function(destination, source) {
103
+ for (var property in source)
104
+ destination[property] = source[property];
105
+ return destination;
106
+ };
107
+
108
+ Object.extend(Object, {
109
+ inspect: function(object) {
110
+ try {
111
+ if (Object.isUndefined(object)) return 'undefined';
112
+ if (object === null) return 'null';
113
+ return object.inspect ? object.inspect() : object.toString();
114
+ } catch (e) {
115
+ if (e instanceof RangeError) return '...';
116
+ throw e;
117
+ }
118
+ },
119
+
120
+ toJSON: function(object) {
121
+ var type = typeof object;
122
+ switch (type) {
123
+ case 'undefined':
124
+ case 'function':
125
+ case 'unknown': return;
126
+ case 'boolean': return object.toString();
127
+ }
128
+
129
+ if (object === null) return 'null';
130
+ if (object.toJSON) return object.toJSON();
131
+ if (Object.isElement(object)) return;
132
+
133
+ var results = [];
134
+ for (var property in object) {
135
+ var value = Object.toJSON(object[property]);
136
+ if (!Object.isUndefined(value))
137
+ results.push(property.toJSON() + ': ' + value);
138
+ }
139
+
140
+ return '{' + results.join(', ') + '}';
141
+ },
142
+
143
+ toQueryString: function(object) {
144
+ return $H(object).toQueryString();
145
+ },
146
+
147
+ toHTML: function(object) {
148
+ return object && object.toHTML ? object.toHTML() : String.interpret(object);
149
+ },
150
+
151
+ keys: function(object) {
152
+ var keys = [];
153
+ for (var property in object)
154
+ keys.push(property);
155
+ return keys;
156
+ },
157
+
158
+ values: function(object) {
159
+ var values = [];
160
+ for (var property in object)
161
+ values.push(object[property]);
162
+ return values;
163
+ },
164
+
165
+ clone: function(object) {
166
+ return Object.extend({ }, object);
167
+ },
168
+
169
+ isElement: function(object) {
170
+ return object && object.nodeType == 1;
171
+ },
172
+
173
+ isArray: function(object) {
174
+ return object && object.constructor === Array;
175
+ },
176
+
177
+ isHash: function(object) {
178
+ return object instanceof Hash;
179
+ },
180
+
181
+ isFunction: function(object) {
182
+ return typeof object == "function";
183
+ },
184
+
185
+ isString: function(object) {
186
+ return typeof object == "string";
187
+ },
188
+
189
+ isNumber: function(object) {
190
+ return typeof object == "number";
191
+ },
192
+
193
+ isUndefined: function(object) {
194
+ return typeof object == "undefined";
195
+ }
196
+ });
197
+
198
+ Object.extend(Function.prototype, {
199
+ argumentNames: function() {
200
+ var names = this.toString().match(/^[\s\(]*function[^(]*\((.*?)\)/)[1].split(",").invoke("strip");
201
+ return names.length == 1 && !names[0] ? [] : names;
202
+ },
203
+
204
+ bind: function() {
205
+ if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
206
+ var __method = this, args = $A(arguments), object = args.shift();
207
+ return function() {
208
+ return __method.apply(object, args.concat($A(arguments)));
209
+ }
210
+ },
211
+
212
+ bindAsEventListener: function() {
213
+ var __method = this, args = $A(arguments), object = args.shift();
214
+ return function(event) {
215
+ return __method.apply(object, [event || window.event].concat(args));
216
+ }
217
+ },
218
+
219
+ curry: function() {
220
+ if (!arguments.length) return this;
221
+ var __method = this, args = $A(arguments);
222
+ return function() {
223
+ return __method.apply(this, args.concat($A(arguments)));
224
+ }
225
+ },
226
+
227
+ delay: function() {
228
+ var __method = this, args = $A(arguments), timeout = args.shift() * 1000;
229
+ return window.setTimeout(function() {
230
+ return __method.apply(__method, args);
231
+ }, timeout);
232
+ },
233
+
234
+ wrap: function(wrapper) {
235
+ var __method = this;
236
+ return function() {
237
+ return wrapper.apply(this, [__method.bind(this)].concat($A(arguments)));
238
+ }
239
+ },
240
+
241
+ methodize: function() {
242
+ if (this._methodized) return this._methodized;
243
+ var __method = this;
244
+ return this._methodized = function() {
245
+ return __method.apply(null, [this].concat($A(arguments)));
246
+ };
247
+ }
248
+ });
249
+
250
+ Function.prototype.defer = Function.prototype.delay.curry(0.01);
251
+
252
+ Date.prototype.toJSON = function() {
253
+ return '"' + this.getUTCFullYear() + '-' +
254
+ (this.getUTCMonth() + 1).toPaddedString(2) + '-' +
255
+ this.getUTCDate().toPaddedString(2) + 'T' +
256
+ this.getUTCHours().toPaddedString(2) + ':' +
257
+ this.getUTCMinutes().toPaddedString(2) + ':' +
258
+ this.getUTCSeconds().toPaddedString(2) + 'Z"';
259
+ };
260
+
261
+ var Try = {
262
+ these: function() {
263
+ var returnValue;
264
+
265
+ for (var i = 0, length = arguments.length; i < length; i++) {
266
+ var lambda = arguments[i];
267
+ try {
268
+ returnValue = lambda();
269
+ break;
270
+ } catch (e) { }
271
+ }
272
+
273
+ return returnValue;
274
+ }
275
+ };
276
+
277
+ RegExp.prototype.match = RegExp.prototype.test;
278
+
279
+ RegExp.escape = function(str) {
280
+ return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
281
+ };
282
+
283
+ /*--------------------------------------------------------------------------*/
284
+
285
+ var PeriodicalExecuter = Class.create({
286
+ initialize: function(callback, frequency) {
287
+ this.callback = callback;
288
+ this.frequency = frequency;
289
+ this.currentlyExecuting = false;
290
+
291
+ this.registerCallback();
292
+ },
293
+
294
+ registerCallback: function() {
295
+ this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
296
+ },
297
+
298
+ execute: function() {
299
+ this.callback(this);
300
+ },
301
+
302
+ stop: function() {
303
+ if (!this.timer) return;
304
+ clearInterval(this.timer);
305
+ this.timer = null;
306
+ },
307
+
308
+ onTimerEvent: function() {
309
+ if (!this.currentlyExecuting) {
310
+ try {
311
+ this.currentlyExecuting = true;
312
+ this.execute();
313
+ } finally {
314
+ this.currentlyExecuting = false;
315
+ }
316
+ }
317
+ }
318
+ });
319
+ Object.extend(String, {
320
+ interpret: function(value) {
321
+ return value == null ? '' : String(value);
322
+ },
323
+ specialChar: {
324
+ '\b': '\\b',
325
+ '\t': '\\t',
326
+ '\n': '\\n',
327
+ '\f': '\\f',
328
+ '\r': '\\r',
329
+ '\\': '\\\\'
330
+ }
331
+ });
332
+
333
+ Object.extend(String.prototype, {
334
+ gsub: function(pattern, replacement) {
335
+ var result = '', source = this, match;
336
+ replacement = arguments.callee.prepareReplacement(replacement);
337
+
338
+ while (source.length > 0) {
339
+ if (match = source.match(pattern)) {
340
+ result += source.slice(0, match.index);
341
+ result += String.interpret(replacement(match));
342
+ source = source.slice(match.index + match[0].length);
343
+ } else {
344
+ result += source, source = '';
345
+ }
346
+ }
347
+ return result;
348
+ },
349
+
350
+ sub: function(pattern, replacement, count) {
351
+ replacement = this.gsub.prepareReplacement(replacement);
352
+ count = Object.isUndefined(count) ? 1 : count;
353
+
354
+ return this.gsub(pattern, function(match) {
355
+ if (--count < 0) return match[0];
356
+ return replacement(match);
357
+ });
358
+ },
359
+
360
+ scan: function(pattern, iterator) {
361
+ this.gsub(pattern, iterator);
362
+ return String(this);
363
+ },
364
+
365
+ truncate: function(length, truncation) {
366
+ length = length || 30;
367
+ truncation = Object.isUndefined(truncation) ? '...' : truncation;
368
+ return this.length > length ?
369
+ this.slice(0, length - truncation.length) + truncation : String(this);
370
+ },
371
+
372
+ strip: function() {
373
+ return this.replace(/^\s+/, '').replace(/\s+$/, '');
374
+ },
375
+
376
+ stripTags: function() {
377
+ return this.replace(/<\/?[^>]+>/gi, '');
378
+ },
379
+
380
+ stripScripts: function() {
381
+ return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
382
+ },
383
+
384
+ extractScripts: function() {
385
+ var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
386
+ var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
387
+ return (this.match(matchAll) || []).map(function(scriptTag) {
388
+ return (scriptTag.match(matchOne) || ['', ''])[1];
389
+ });
390
+ },
391
+
392
+ evalScripts: function() {
393
+ return this.extractScripts().map(function(script) { return eval(script) });
394
+ },
395
+
396
+ escapeHTML: function() {
397
+ var self = arguments.callee;
398
+ self.text.data = this;
399
+ return self.div.innerHTML;
400
+ },
401
+
402
+ unescapeHTML: function() {
403
+ var div = new Element('div');
404
+ div.innerHTML = this.stripTags();
405
+ return div.childNodes[0] ? (div.childNodes.length > 1 ?
406
+ $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) :
407
+ div.childNodes[0].nodeValue) : '';
408
+ },
409
+
410
+ toQueryParams: function(separator) {
411
+ var match = this.strip().match(/([^?#]*)(#.*)?$/);
412
+ if (!match) return { };
413
+
414
+ return match[1].split(separator || '&').inject({ }, function(hash, pair) {
415
+ if ((pair = pair.split('='))[0]) {
416
+ var key = decodeURIComponent(pair.shift());
417
+ var value = pair.length > 1 ? pair.join('=') : pair[0];
418
+ if (value != undefined) value = decodeURIComponent(value);
419
+
420
+ if (key in hash) {
421
+ if (!Object.isArray(hash[key])) hash[key] = [hash[key]];
422
+ hash[key].push(value);
423
+ }
424
+ else hash[key] = value;
425
+ }
426
+ return hash;
427
+ });
428
+ },
429
+
430
+ toArray: function() {
431
+ return this.split('');
432
+ },
433
+
434
+ succ: function() {
435
+ return this.slice(0, this.length - 1) +
436
+ String.fromCharCode(this.charCodeAt(this.length - 1) + 1);
437
+ },
438
+
439
+ times: function(count) {
440
+ return count < 1 ? '' : new Array(count + 1).join(this);
441
+ },
442
+
443
+ camelize: function() {
444
+ var parts = this.split('-'), len = parts.length;
445
+ if (len == 1) return parts[0];
446
+
447
+ var camelized = this.charAt(0) == '-'
448
+ ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1)
449
+ : parts[0];
450
+
451
+ for (var i = 1; i < len; i++)
452
+ camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1);
453
+
454
+ return camelized;
455
+ },
456
+
457
+ capitalize: function() {
458
+ return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
459
+ },
460
+
461
+ underscore: function() {
462
+ return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase();
463
+ },
464
+
465
+ dasherize: function() {
466
+ return this.gsub(/_/,'-');
467
+ },
468
+
469
+ inspect: function(useDoubleQuotes) {
470
+ var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) {
471
+ var character = String.specialChar[match[0]];
472
+ return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16);
473
+ });
474
+ if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
475
+ return "'" + escapedString.replace(/'/g, '\\\'') + "'";
476
+ },
477
+
478
+ toJSON: function() {
479
+ return this.inspect(true);
480
+ },
481
+
482
+ unfilterJSON: function(filter) {
483
+ return this.sub(filter || Prototype.JSONFilter, '#{1}');
484
+ },
485
+
486
+ isJSON: function() {
487
+ var str = this;
488
+ if (str.blank()) return false;
489
+ str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, '');
490
+ return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);
491
+ },
492
+
493
+ evalJSON: function(sanitize) {
494
+ var json = this.unfilterJSON();
495
+ try {
496
+ if (!sanitize || json.isJSON()) return eval('(' + json + ')');
497
+ } catch (e) { }
498
+ throw new SyntaxError('Badly formed JSON string: ' + this.inspect());
499
+ },
500
+
501
+ include: function(pattern) {
502
+ return this.indexOf(pattern) > -1;
503
+ },
504
+
505
+ startsWith: function(pattern) {
506
+ return this.indexOf(pattern) === 0;
507
+ },
508
+
509
+ endsWith: function(pattern) {
510
+ var d = this.length - pattern.length;
511
+ return d >= 0 && this.lastIndexOf(pattern) === d;
512
+ },
513
+
514
+ empty: function() {
515
+ return this == '';
516
+ },
517
+
518
+ blank: function() {
519
+ return /^\s*$/.test(this);
520
+ },
521
+
522
+ interpolate: function(object, pattern) {
523
+ return new Template(this, pattern).evaluate(object);
524
+ }
525
+ });
526
+
527
+ if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, {
528
+ escapeHTML: function() {
529
+ return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
530
+ },
531
+ unescapeHTML: function() {
532
+ return this.replace(/&amp;/g,'&').replace(/&lt;/g,'<').replace(/&gt;/g,'>');
533
+ }
534
+ });
535
+
536
+ String.prototype.gsub.prepareReplacement = function(replacement) {
537
+ if (Object.isFunction(replacement)) return replacement;
538
+ var template = new Template(replacement);
539
+ return function(match) { return template.evaluate(match) };
540
+ };
541
+
542
+ String.prototype.parseQuery = String.prototype.toQueryParams;
543
+
544
+ Object.extend(String.prototype.escapeHTML, {
545
+ div: document.createElement('div'),
546
+ text: document.createTextNode('')
547
+ });
548
+
549
+ with (String.prototype.escapeHTML) div.appendChild(text);
550
+
551
+ var Template = Class.create({
552
+ initialize: function(template, pattern) {
553
+ this.template = template.toString();
554
+ this.pattern = pattern || Template.Pattern;
555
+ },
556
+
557
+ evaluate: function(object) {
558
+ if (Object.isFunction(object.toTemplateReplacements))
559
+ object = object.toTemplateReplacements();
560
+
561
+ return this.template.gsub(this.pattern, function(match) {
562
+ if (object == null) return '';
563
+
564
+ var before = match[1] || '';
565
+ if (before == '\\') return match[2];
566
+
567
+ var ctx = object, expr = match[3];
568
+ var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;
569
+ match = pattern.exec(expr);
570
+ if (match == null) return before;
571
+
572
+ while (match != null) {
573
+ var comp = match[1].startsWith('[') ? match[2].gsub('\\\\]', ']') : match[1];
574
+ ctx = ctx[comp];
575
+ if (null == ctx || '' == match[3]) break;
576
+ expr = expr.substring('[' == match[3] ? match[1].length : match[0].length);
577
+ match = pattern.exec(expr);
578
+ }
579
+
580
+ return before + String.interpret(ctx);
581
+ }.bind(this));
582
+ }
583
+ });
584
+ Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;
585
+
586
+ var $break = { };
587
+
588
+ var Enumerable = {
589
+ each: function(iterator, context) {
590
+ var index = 0;
591
+ iterator = iterator.bind(context);
592
+ try {
593
+ this._each(function(value) {
594
+ iterator(value, index++);
595
+ });
596
+ } catch (e) {
597
+ if (e != $break) throw e;
598
+ }
599
+ return this;
600
+ },
601
+
602
+ eachSlice: function(number, iterator, context) {
603
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
604
+ var index = -number, slices = [], array = this.toArray();
605
+ while ((index += number) < array.length)
606
+ slices.push(array.slice(index, index+number));
607
+ return slices.collect(iterator, context);
608
+ },
609
+
610
+ all: function(iterator, context) {
611
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
612
+ var result = true;
613
+ this.each(function(value, index) {
614
+ result = result && !!iterator(value, index);
615
+ if (!result) throw $break;
616
+ });
617
+ return result;
618
+ },
619
+
620
+ any: function(iterator, context) {
621
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
622
+ var result = false;
623
+ this.each(function(value, index) {
624
+ if (result = !!iterator(value, index))
625
+ throw $break;
626
+ });
627
+ return result;
628
+ },
629
+
630
+ collect: function(iterator, context) {
631
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
632
+ var results = [];
633
+ this.each(function(value, index) {
634
+ results.push(iterator(value, index));
635
+ });
636
+ return results;
637
+ },
638
+
639
+ detect: function(iterator, context) {
640
+ iterator = iterator.bind(context);
641
+ var result;
642
+ this.each(function(value, index) {
643
+ if (iterator(value, index)) {
644
+ result = value;
645
+ throw $break;
646
+ }
647
+ });
648
+ return result;
649
+ },
650
+
651
+ findAll: function(iterator, context) {
652
+ iterator = iterator.bind(context);
653
+ var results = [];
654
+ this.each(function(value, index) {
655
+ if (iterator(value, index))
656
+ results.push(value);
657
+ });
658
+ return results;
659
+ },
660
+
661
+ grep: function(filter, iterator, context) {
662
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
663
+ var results = [];
664
+
665
+ if (Object.isString(filter))
666
+ filter = new RegExp(filter);
667
+
668
+ this.each(function(value, index) {
669
+ if (filter.match(value))
670
+ results.push(iterator(value, index));
671
+ });
672
+ return results;
673
+ },
674
+
675
+ include: function(object) {
676
+ if (Object.isFunction(this.indexOf))
677
+ if (this.indexOf(object) != -1) return true;
678
+
679
+ var found = false;
680
+ this.each(function(value) {
681
+ if (value == object) {
682
+ found = true;
683
+ throw $break;
684
+ }
685
+ });
686
+ return found;
687
+ },
688
+
689
+ inGroupsOf: function(number, fillWith) {
690
+ fillWith = Object.isUndefined(fillWith) ? null : fillWith;
691
+ return this.eachSlice(number, function(slice) {
692
+ while(slice.length < number) slice.push(fillWith);
693
+ return slice;
694
+ });
695
+ },
696
+
697
+ inject: function(memo, iterator, context) {
698
+ iterator = iterator.bind(context);
699
+ this.each(function(value, index) {
700
+ memo = iterator(memo, value, index);
701
+ });
702
+ return memo;
703
+ },
704
+
705
+ invoke: function(method) {
706
+ var args = $A(arguments).slice(1);
707
+ return this.map(function(value) {
708
+ return value[method].apply(value, args);
709
+ });
710
+ },
711
+
712
+ max: function(iterator, context) {
713
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
714
+ var result;
715
+ this.each(function(value, index) {
716
+ value = iterator(value, index);
717
+ if (result == null || value >= result)
718
+ result = value;
719
+ });
720
+ return result;
721
+ },
722
+
723
+ min: function(iterator, context) {
724
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
725
+ var result;
726
+ this.each(function(value, index) {
727
+ value = iterator(value, index);
728
+ if (result == null || value < result)
729
+ result = value;
730
+ });
731
+ return result;
732
+ },
733
+
734
+ partition: function(iterator, context) {
735
+ iterator = iterator ? iterator.bind(context) : Prototype.K;
736
+ var trues = [], falses = [];
737
+ this.each(function(value, index) {
738
+ (iterator(value, index) ?
739
+ trues : falses).push(value);
740
+ });
741
+ return [trues, falses];
742
+ },
743
+
744
+ pluck: function(property) {
745
+ var results = [];
746
+ this.each(function(value) {
747
+ results.push(value[property]);
748
+ });
749
+ return results;
750
+ },
751
+
752
+ reject: function(iterator, context) {
753
+ iterator = iterator.bind(context);
754
+ var results = [];
755
+ this.each(function(value, index) {
756
+ if (!iterator(value, index))
757
+ results.push(value);
758
+ });
759
+ return results;
760
+ },
761
+
762
+ sortBy: function(iterator, context) {
763
+ iterator = iterator.bind(context);
764
+ return this.map(function(value, index) {
765
+ return {value: value, criteria: iterator(value, index)};
766
+ }).sort(function(left, right) {
767
+ var a = left.criteria, b = right.criteria;
768
+ return a < b ? -1 : a > b ? 1 : 0;
769
+ }).pluck('value');
770
+ },
771
+
772
+ toArray: function() {
773
+ return this.map();
774
+ },
775
+
776
+ zip: function() {
777
+ var iterator = Prototype.K, args = $A(arguments);
778
+ if (Object.isFunction(args.last()))
779
+ iterator = args.pop();
780
+
781
+ var collections = [this].concat(args).map($A);
782
+ return this.map(function(value, index) {
783
+ return iterator(collections.pluck(index));
784
+ });
785
+ },
786
+
787
+ size: function() {
788
+ return this.toArray().length;
789
+ },
790
+
791
+ inspect: function() {
792
+ return '#<Enumerable:' + this.toArray().inspect() + '>';
793
+ }
794
+ };
795
+
796
+ Object.extend(Enumerable, {
797
+ map: Enumerable.collect,
798
+ find: Enumerable.detect,
799
+ select: Enumerable.findAll,
800
+ filter: Enumerable.findAll,
801
+ member: Enumerable.include,
802
+ entries: Enumerable.toArray,
803
+ every: Enumerable.all,
804
+ some: Enumerable.any
805
+ });
806
+ function $A(iterable) {
807
+ if (!iterable) return [];
808
+ if (iterable.toArray) return iterable.toArray();
809
+ var length = iterable.length, results = new Array(length);
810
+ while (length--) results[length] = iterable[length];
811
+ return results;
812
+ }
813
+
814
+ if (Prototype.Browser.WebKit) {
815
+ function $A(iterable) {
816
+ if (!iterable) return [];
817
+ if (!(Object.isFunction(iterable) && iterable == '[object NodeList]') &&
818
+ iterable.toArray) return iterable.toArray();
819
+ var length = iterable.length, results = new Array(length);
820
+ while (length--) results[length] = iterable[length];
821
+ return results;
822
+ }
823
+ }
824
+
825
+ Array.from = $A;
826
+
827
+ Object.extend(Array.prototype, Enumerable);
828
+
829
+ if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse;
830
+
831
+ Object.extend(Array.prototype, {
832
+ _each: function(iterator) {
833
+ for (var i = 0, length = this.length; i < length; i++)
834
+ iterator(this[i]);
835
+ },
836
+
837
+ clear: function() {
838
+ this.length = 0;
839
+ return this;
840
+ },
841
+
842
+ first: function() {
843
+ return this[0];
844
+ },
845
+
846
+ last: function() {
847
+ return this[this.length - 1];
848
+ },
849
+
850
+ compact: function() {
851
+ return this.select(function(value) {
852
+ return value != null;
853
+ });
854
+ },
855
+
856
+ flatten: function() {
857
+ return this.inject([], function(array, value) {
858
+ return array.concat(Object.isArray(value) ?
859
+ value.flatten() : [value]);
860
+ });
861
+ },
862
+
863
+ without: function() {
864
+ var values = $A(arguments);
865
+ return this.select(function(value) {
866
+ return !values.include(value);
867
+ });
868
+ },
869
+
870
+ reverse: function(inline) {
871
+ return (inline !== false ? this : this.toArray())._reverse();
872
+ },
873
+
874
+ reduce: function() {
875
+ return this.length > 1 ? this : this[0];
876
+ },
877
+
878
+ uniq: function(sorted) {
879
+ return this.inject([], function(array, value, index) {
880
+ if (0 == index || (sorted ? array.last() != value : !array.include(value)))
881
+ array.push(value);
882
+ return array;
883
+ });
884
+ },
885
+
886
+ intersect: function(array) {
887
+ return this.uniq().findAll(function(item) {
888
+ return array.detect(function(value) { return item === value });
889
+ });
890
+ },
891
+
892
+ clone: function() {
893
+ return [].concat(this);
894
+ },
895
+
896
+ size: function() {
897
+ return this.length;
898
+ },
899
+
900
+ inspect: function() {
901
+ return '[' + this.map(Object.inspect).join(', ') + ']';
902
+ },
903
+
904
+ toJSON: function() {
905
+ var results = [];
906
+ this.each(function(object) {
907
+ var value = Object.toJSON(object);
908
+ if (!Object.isUndefined(value)) results.push(value);
909
+ });
910
+ return '[' + results.join(', ') + ']';
911
+ }
912
+ });
913
+
914
+ // use native browser JS 1.6 implementation if available
915
+ if (Object.isFunction(Array.prototype.forEach))
916
+ Array.prototype._each = Array.prototype.forEach;
917
+
918
+ if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) {
919
+ i || (i = 0);
920
+ var length = this.length;
921
+ if (i < 0) i = length + i;
922
+ for (; i < length; i++)
923
+ if (this[i] === item) return i;
924
+ return -1;
925
+ };
926
+
927
+ if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) {
928
+ i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1;
929
+ var n = this.slice(0, i).reverse().indexOf(item);
930
+ return (n < 0) ? n : i - n - 1;
931
+ };
932
+
933
+ Array.prototype.toArray = Array.prototype.clone;
934
+
935
+ function $w(string) {
936
+ if (!Object.isString(string)) return [];
937
+ string = string.strip();
938
+ return string ? string.split(/\s+/) : [];
939
+ }
940
+
941
+ if (Prototype.Browser.Opera){
942
+ Array.prototype.concat = function() {
943
+ var array = [];
944
+ for (var i = 0, length = this.length; i < length; i++) array.push(this[i]);
945
+ for (var i = 0, length = arguments.length; i < length; i++) {
946
+ if (Object.isArray(arguments[i])) {
947
+ for (var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++)
948
+ array.push(arguments[i][j]);
949
+ } else {
950
+ array.push(arguments[i]);
951
+ }
952
+ }
953
+ return array;
954
+ };
955
+ }
956
+ Object.extend(Number.prototype, {
957
+ toColorPart: function() {
958
+ return this.toPaddedString(2, 16);
959
+ },
960
+
961
+ succ: function() {
962
+ return this + 1;
963
+ },
964
+
965
+ times: function(iterator) {
966
+ $R(0, this, true).each(iterator);
967
+ return this;
968
+ },
969
+
970
+ toPaddedString: function(length, radix) {
971
+ var string = this.toString(radix || 10);
972
+ return '0'.times(length - string.length) + string;
973
+ },
974
+
975
+ toJSON: function() {
976
+ return isFinite(this) ? this.toString() : 'null';
977
+ }
978
+ });
979
+
980
+ $w('abs round ceil floor').each(function(method){
981
+ Number.prototype[method] = Math[method].methodize();
982
+ });
983
+ function $H(object) {
984
+ return new Hash(object);
985
+ };
986
+
987
+ var Hash = Class.create(Enumerable, (function() {
988
+
989
+ function toQueryPair(key, value) {
990
+ if (Object.isUndefined(value)) return key;
991
+ return key + '=' + encodeURIComponent(String.interpret(value));
992
+ }
993
+
994
+ return {
995
+ initialize: function(object) {
996
+ this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
997
+ },
998
+
999
+ _each: function(iterator) {
1000
+ for (var key in this._object) {
1001
+ var value = this._object[key], pair = [key, value];
1002
+ pair.key = key;
1003
+ pair.value = value;
1004
+ iterator(pair);
1005
+ }
1006
+ },
1007
+
1008
+ set: function(key, value) {
1009
+ return this._object[key] = value;
1010
+ },
1011
+
1012
+ get: function(key) {
1013
+ return this._object[key];
1014
+ },
1015
+
1016
+ unset: function(key) {
1017
+ var value = this._object[key];
1018
+ delete this._object[key];
1019
+ return value;
1020
+ },
1021
+
1022
+ toObject: function() {
1023
+ return Object.clone(this._object);
1024
+ },
1025
+
1026
+ keys: function() {
1027
+ return this.pluck('key');
1028
+ },
1029
+
1030
+ values: function() {
1031
+ return this.pluck('value');
1032
+ },
1033
+
1034
+ index: function(value) {
1035
+ var match = this.detect(function(pair) {
1036
+ return pair.value === value;
1037
+ });
1038
+ return match && match.key;
1039
+ },
1040
+
1041
+ merge: function(object) {
1042
+ return this.clone().update(object);
1043
+ },
1044
+
1045
+ update: function(object) {
1046
+ return new Hash(object).inject(this, function(result, pair) {
1047
+ result.set(pair.key, pair.value);
1048
+ return result;
1049
+ });
1050
+ },
1051
+
1052
+ toQueryString: function() {
1053
+ return this.map(function(pair) {
1054
+ var key = encodeURIComponent(pair.key), values = pair.value;
1055
+
1056
+ if (values && typeof values == 'object') {
1057
+ if (Object.isArray(values))
1058
+ return values.map(toQueryPair.curry(key)).join('&');
1059
+ }
1060
+ return toQueryPair(key, values);
1061
+ }).join('&');
1062
+ },
1063
+
1064
+ inspect: function() {
1065
+ return '#<Hash:{' + this.map(function(pair) {
1066
+ return pair.map(Object.inspect).join(': ');
1067
+ }).join(', ') + '}>';
1068
+ },
1069
+
1070
+ toJSON: function() {
1071
+ return Object.toJSON(this.toObject());
1072
+ },
1073
+
1074
+ clone: function() {
1075
+ return new Hash(this);
1076
+ }
1077
+ }
1078
+ })());
1079
+
1080
+ Hash.prototype.toTemplateReplacements = Hash.prototype.toObject;
1081
+ Hash.from = $H;
1082
+ var ObjectRange = Class.create(Enumerable, {
1083
+ initialize: function(start, end, exclusive) {
1084
+ this.start = start;
1085
+ this.end = end;
1086
+ this.exclusive = exclusive;
1087
+ },
1088
+
1089
+ _each: function(iterator) {
1090
+ var value = this.start;
1091
+ while (this.include(value)) {
1092
+ iterator(value);
1093
+ value = value.succ();
1094
+ }
1095
+ },
1096
+
1097
+ include: function(value) {
1098
+ if (value < this.start)
1099
+ return false;
1100
+ if (this.exclusive)
1101
+ return value < this.end;
1102
+ return value <= this.end;
1103
+ }
1104
+ });
1105
+
1106
+ var $R = function(start, end, exclusive) {
1107
+ return new ObjectRange(start, end, exclusive);
1108
+ };
1109
+
1110
+ var Ajax = {
1111
+ getTransport: function() {
1112
+ return Try.these(
1113
+ function() {return new XMLHttpRequest()},
1114
+ function() {return new ActiveXObject('Msxml2.XMLHTTP')},
1115
+ function() {return new ActiveXObject('Microsoft.XMLHTTP')}
1116
+ ) || false;
1117
+ },
1118
+
1119
+ activeRequestCount: 0
1120
+ };
1121
+
1122
+ Ajax.Responders = {
1123
+ responders: [],
1124
+
1125
+ _each: function(iterator) {
1126
+ this.responders._each(iterator);
1127
+ },
1128
+
1129
+ register: function(responder) {
1130
+ if (!this.include(responder))
1131
+ this.responders.push(responder);
1132
+ },
1133
+
1134
+ unregister: function(responder) {
1135
+ this.responders = this.responders.without(responder);
1136
+ },
1137
+
1138
+ dispatch: function(callback, request, transport, json) {
1139
+ this.each(function(responder) {
1140
+ if (Object.isFunction(responder[callback])) {
1141
+ try {
1142
+ responder[callback].apply(responder, [request, transport, json]);
1143
+ } catch (e) { }
1144
+ }
1145
+ });
1146
+ }
1147
+ };
1148
+
1149
+ Object.extend(Ajax.Responders, Enumerable);
1150
+
1151
+ Ajax.Responders.register({
1152
+ onCreate: function() { Ajax.activeRequestCount++ },
1153
+ onComplete: function() { Ajax.activeRequestCount-- }
1154
+ });
1155
+
1156
+ Ajax.Base = Class.create({
1157
+ initialize: function(options) {
1158
+ this.options = {
1159
+ method: 'post',
1160
+ asynchronous: true,
1161
+ contentType: 'application/x-www-form-urlencoded',
1162
+ encoding: 'UTF-8',
1163
+ parameters: '',
1164
+ evalJSON: true,
1165
+ evalJS: true
1166
+ };
1167
+ Object.extend(this.options, options || { });
1168
+
1169
+ this.options.method = this.options.method.toLowerCase();
1170
+
1171
+ if (Object.isString(this.options.parameters))
1172
+ this.options.parameters = this.options.parameters.toQueryParams();
1173
+ else if (Object.isHash(this.options.parameters))
1174
+ this.options.parameters = this.options.parameters.toObject();
1175
+ }
1176
+ });
1177
+
1178
+ Ajax.Request = Class.create(Ajax.Base, {
1179
+ _complete: false,
1180
+
1181
+ initialize: function($super, url, options) {
1182
+ $super(options);
1183
+ this.transport = Ajax.getTransport();
1184
+ this.request(url);
1185
+ },
1186
+
1187
+ request: function(url) {
1188
+ this.url = url;
1189
+ this.method = this.options.method;
1190
+ var params = Object.clone(this.options.parameters);
1191
+
1192
+ if (!['get', 'post'].include(this.method)) {
1193
+ // simulate other verbs over post
1194
+ params['_method'] = this.method;
1195
+ this.method = 'post';
1196
+ }
1197
+
1198
+ this.parameters = params;
1199
+
1200
+ if (params = Object.toQueryString(params)) {
1201
+ // when GET, append parameters to URL
1202
+ if (this.method == 'get')
1203
+ this.url += (this.url.include('?') ? '&' : '?') + params;
1204
+ else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
1205
+ params += '&_=';
1206
+ }
1207
+
1208
+ try {
1209
+ var response = new Ajax.Response(this);
1210
+ if (this.options.onCreate) this.options.onCreate(response);
1211
+ Ajax.Responders.dispatch('onCreate', this, response);
1212
+
1213
+ this.transport.open(this.method.toUpperCase(), this.url,
1214
+ this.options.asynchronous);
1215
+
1216
+ if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);
1217
+
1218
+ this.transport.onreadystatechange = this.onStateChange.bind(this);
1219
+ this.setRequestHeaders();
1220
+
1221
+ this.body = this.method == 'post' ? (this.options.postBody || params) : null;
1222
+ this.transport.send(this.body);
1223
+
1224
+ /* Force Firefox to handle ready state 4 for synchronous requests */
1225
+ if (!this.options.asynchronous && this.transport.overrideMimeType)
1226
+ this.onStateChange();
1227
+
1228
+ }
1229
+ catch (e) {
1230
+ this.dispatchException(e);
1231
+ }
1232
+ },
1233
+
1234
+ onStateChange: function() {
1235
+ var readyState = this.transport.readyState;
1236
+ if (readyState > 1 && !((readyState == 4) && this._complete))
1237
+ this.respondToReadyState(this.transport.readyState);
1238
+ },
1239
+
1240
+ setRequestHeaders: function() {
1241
+ var headers = {
1242
+ 'X-Requested-With': 'XMLHttpRequest',
1243
+ 'X-Prototype-Version': Prototype.Version,
1244
+ 'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
1245
+ };
1246
+
1247
+ if (this.method == 'post') {
1248
+ headers['Content-type'] = this.options.contentType +
1249
+ (this.options.encoding ? '; charset=' + this.options.encoding : '');
1250
+
1251
+ /* Force "Connection: close" for older Mozilla browsers to work
1252
+ * around a bug where XMLHttpRequest sends an incorrect
1253
+ * Content-length header. See Mozilla Bugzilla #246651.
1254
+ */
1255
+ if (this.transport.overrideMimeType &&
1256
+ (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005)
1257
+ headers['Connection'] = 'close';
1258
+ }
1259
+
1260
+ // user-defined headers
1261
+ if (typeof this.options.requestHeaders == 'object') {
1262
+ var extras = this.options.requestHeaders;
1263
+
1264
+ if (Object.isFunction(extras.push))
1265
+ for (var i = 0, length = extras.length; i < length; i += 2)
1266
+ headers[extras[i]] = extras[i+1];
1267
+ else
1268
+ $H(extras).each(function(pair) { headers[pair.key] = pair.value });
1269
+ }
1270
+
1271
+ for (var name in headers)
1272
+ this.transport.setRequestHeader(name, headers[name]);
1273
+ },
1274
+
1275
+ success: function() {
1276
+ var status = this.getStatus();
1277
+ return !status || (status >= 200 && status < 300);
1278
+ },
1279
+
1280
+ getStatus: function() {
1281
+ try {
1282
+ return this.transport.status || 0;
1283
+ } catch (e) { return 0 }
1284
+ },
1285
+
1286
+ respondToReadyState: function(readyState) {
1287
+ var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this);
1288
+
1289
+ if (state == 'Complete') {
1290
+ try {
1291
+ this._complete = true;
1292
+ (this.options['on' + response.status]
1293
+ || this.options['on' + (this.success() ? 'Success' : 'Failure')]
1294
+ || Prototype.emptyFunction)(response, response.headerJSON);
1295
+ } catch (e) {
1296
+ this.dispatchException(e);
1297
+ }
1298
+
1299
+ var contentType = response.getHeader('Content-type');
1300
+ if (this.options.evalJS == 'force'
1301
+ || (this.options.evalJS && contentType
1302
+ && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
1303
+ this.evalResponse();
1304
+ }
1305
+
1306
+ try {
1307
+ (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON);
1308
+ Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON);
1309
+ } catch (e) {
1310
+ this.dispatchException(e);
1311
+ }
1312
+
1313
+ if (state == 'Complete') {
1314
+ // avoid memory leak in MSIE: clean up
1315
+ this.transport.onreadystatechange = Prototype.emptyFunction;
1316
+ }
1317
+ },
1318
+
1319
+ getHeader: function(name) {
1320
+ try {
1321
+ return this.transport.getResponseHeader(name);
1322
+ } catch (e) { return null }
1323
+ },
1324
+
1325
+ evalResponse: function() {
1326
+ try {
1327
+ return eval((this.transport.responseText || '').unfilterJSON());
1328
+ } catch (e) {
1329
+ this.dispatchException(e);
1330
+ }
1331
+ },
1332
+
1333
+ dispatchException: function(exception) {
1334
+ (this.options.onException || Prototype.emptyFunction)(this, exception);
1335
+ Ajax.Responders.dispatch('onException', this, exception);
1336
+ }
1337
+ });
1338
+
1339
+ Ajax.Request.Events =
1340
+ ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
1341
+
1342
+ Ajax.Response = Class.create({
1343
+ initialize: function(request){
1344
+ this.request = request;
1345
+ var transport = this.transport = request.transport,
1346
+ readyState = this.readyState = transport.readyState;
1347
+
1348
+ if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) {
1349
+ this.status = this.getStatus();
1350
+ this.statusText = this.getStatusText();
1351
+ this.responseText = String.interpret(transport.responseText);
1352
+ this.headerJSON = this._getHeaderJSON();
1353
+ }
1354
+
1355
+ if(readyState == 4) {
1356
+ var xml = transport.responseXML;
1357
+ this.responseXML = Object.isUndefined(xml) ? null : xml;
1358
+ this.responseJSON = this._getResponseJSON();
1359
+ }
1360
+ },
1361
+
1362
+ status: 0,
1363
+ statusText: '',
1364
+
1365
+ getStatus: Ajax.Request.prototype.getStatus,
1366
+
1367
+ getStatusText: function() {
1368
+ try {
1369
+ return this.transport.statusText || '';
1370
+ } catch (e) { return '' }
1371
+ },
1372
+
1373
+ getHeader: Ajax.Request.prototype.getHeader,
1374
+
1375
+ getAllHeaders: function() {
1376
+ try {
1377
+ return this.getAllResponseHeaders();
1378
+ } catch (e) { return null }
1379
+ },
1380
+
1381
+ getResponseHeader: function(name) {
1382
+ return this.transport.getResponseHeader(name);
1383
+ },
1384
+
1385
+ getAllResponseHeaders: function() {
1386
+ return this.transport.getAllResponseHeaders();
1387
+ },
1388
+
1389
+ _getHeaderJSON: function() {
1390
+ var json = this.getHeader('X-JSON');
1391
+ if (!json) return null;
1392
+ json = decodeURIComponent(escape(json));
1393
+ try {
1394
+ return json.evalJSON(this.request.options.sanitizeJSON);
1395
+ } catch (e) {
1396
+ this.request.dispatchException(e);
1397
+ }
1398
+ },
1399
+
1400
+ _getResponseJSON: function() {
1401
+ var options = this.request.options;
1402
+ if (!options.evalJSON || (options.evalJSON != 'force' &&
1403
+ !(this.getHeader('Content-type') || '').include('application/json')) ||
1404
+ this.responseText.blank())
1405
+ return null;
1406
+ try {
1407
+ return this.responseText.evalJSON(options.sanitizeJSON);
1408
+ } catch (e) {
1409
+ this.request.dispatchException(e);
1410
+ }
1411
+ }
1412
+ });
1413
+
1414
+ Ajax.Updater = Class.create(Ajax.Request, {
1415
+ initialize: function($super, container, url, options) {
1416
+ this.container = {
1417
+ success: (container.success || container),
1418
+ failure: (container.failure || (container.success ? null : container))
1419
+ };
1420
+
1421
+ options = Object.clone(options);
1422
+ var onComplete = options.onComplete;
1423
+ options.onComplete = (function(response, json) {
1424
+ this.updateContent(response.responseText);
1425
+ if (Object.isFunction(onComplete)) onComplete(response, json);
1426
+ }).bind(this);
1427
+
1428
+ $super(url, options);
1429
+ },
1430
+
1431
+ updateContent: function(responseText) {
1432
+ var receiver = this.container[this.success() ? 'success' : 'failure'],
1433
+ options = this.options;
1434
+
1435
+ if (!options.evalScripts) responseText = responseText.stripScripts();
1436
+
1437
+ if (receiver = $(receiver)) {
1438
+ if (options.insertion) {
1439
+ if (Object.isString(options.insertion)) {
1440
+ var insertion = { }; insertion[options.insertion] = responseText;
1441
+ receiver.insert(insertion);
1442
+ }
1443
+ else options.insertion(receiver, responseText);
1444
+ }
1445
+ else receiver.update(responseText);
1446
+ }
1447
+ }
1448
+ });
1449
+
1450
+ Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {
1451
+ initialize: function($super, container, url, options) {
1452
+ $super(options);
1453
+ this.onComplete = this.options.onComplete;
1454
+
1455
+ this.frequency = (this.options.frequency || 2);
1456
+ this.decay = (this.options.decay || 1);
1457
+
1458
+ this.updater = { };
1459
+ this.container = container;
1460
+ this.url = url;
1461
+
1462
+ this.start();
1463
+ },
1464
+
1465
+ start: function() {
1466
+ this.options.onComplete = this.updateComplete.bind(this);
1467
+ this.onTimerEvent();
1468
+ },
1469
+
1470
+ stop: function() {
1471
+ this.updater.options.onComplete = undefined;
1472
+ clearTimeout(this.timer);
1473
+ (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
1474
+ },
1475
+
1476
+ updateComplete: function(response) {
1477
+ if (this.options.decay) {
1478
+ this.decay = (response.responseText == this.lastText ?
1479
+ this.decay * this.options.decay : 1);
1480
+
1481
+ this.lastText = response.responseText;
1482
+ }
1483
+ this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency);
1484
+ },
1485
+
1486
+ onTimerEvent: function() {
1487
+ this.updater = new Ajax.Updater(this.container, this.url, this.options);
1488
+ }
1489
+ });
1490
+ function $(element) {
1491
+ if (arguments.length > 1) {
1492
+ for (var i = 0, elements = [], length = arguments.length; i < length; i++)
1493
+ elements.push($(arguments[i]));
1494
+ return elements;
1495
+ }
1496
+ if (Object.isString(element))
1497
+ element = document.getElementById(element);
1498
+ return Element.extend(element);
1499
+ }
1500
+
1501
+ if (Prototype.BrowserFeatures.XPath) {
1502
+ document._getElementsByXPath = function(expression, parentElement) {
1503
+ var results = [];
1504
+ var query = document.evaluate(expression, $(parentElement) || document,
1505
+ null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
1506
+ for (var i = 0, length = query.snapshotLength; i < length; i++)
1507
+ results.push(Element.extend(query.snapshotItem(i)));
1508
+ return results;
1509
+ };
1510
+ }
1511
+
1512
+ /*--------------------------------------------------------------------------*/
1513
+
1514
+ if (!window.Node) var Node = { };
1515
+
1516
+ if (!Node.ELEMENT_NODE) {
1517
+ // DOM level 2 ECMAScript Language Binding
1518
+ Object.extend(Node, {
1519
+ ELEMENT_NODE: 1,
1520
+ ATTRIBUTE_NODE: 2,
1521
+ TEXT_NODE: 3,
1522
+ CDATA_SECTION_NODE: 4,
1523
+ ENTITY_REFERENCE_NODE: 5,
1524
+ ENTITY_NODE: 6,
1525
+ PROCESSING_INSTRUCTION_NODE: 7,
1526
+ COMMENT_NODE: 8,
1527
+ DOCUMENT_NODE: 9,
1528
+ DOCUMENT_TYPE_NODE: 10,
1529
+ DOCUMENT_FRAGMENT_NODE: 11,
1530
+ NOTATION_NODE: 12
1531
+ });
1532
+ }
1533
+
1534
+ (function() {
1535
+ var element = this.Element;
1536
+ this.Element = function(tagName, attributes) {
1537
+ attributes = attributes || { };
1538
+ tagName = tagName.toLowerCase();
1539
+ var cache = Element.cache;
1540
+ if (Prototype.Browser.IE && attributes.name) {
1541
+ tagName = '<' + tagName + ' name="' + attributes.name + '">';
1542
+ delete attributes.name;
1543
+ return Element.writeAttribute(document.createElement(tagName), attributes);
1544
+ }
1545
+ if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName));
1546
+ return Element.writeAttribute(cache[tagName].cloneNode(false), attributes);
1547
+ };
1548
+ Object.extend(this.Element, element || { });
1549
+ }).call(window);
1550
+
1551
+ Element.cache = { };
1552
+
1553
+ Element.Methods = {
1554
+ visible: function(element) {
1555
+ return $(element).style.display != 'none';
1556
+ },
1557
+
1558
+ toggle: function(element) {
1559
+ element = $(element);
1560
+ Element[Element.visible(element) ? 'hide' : 'show'](element);
1561
+ return element;
1562
+ },
1563
+
1564
+ hide: function(element) {
1565
+ $(element).style.display = 'none';
1566
+ return element;
1567
+ },
1568
+
1569
+ show: function(element) {
1570
+ $(element).style.display = '';
1571
+ return element;
1572
+ },
1573
+
1574
+ remove: function(element) {
1575
+ element = $(element);
1576
+ element.parentNode.removeChild(element);
1577
+ return element;
1578
+ },
1579
+
1580
+ update: function(element, content) {
1581
+ element = $(element);
1582
+ if (content && content.toElement) content = content.toElement();
1583
+ if (Object.isElement(content)) return element.update().insert(content);
1584
+ content = Object.toHTML(content);
1585
+ element.innerHTML = content.stripScripts();
1586
+ content.evalScripts.bind(content).defer();
1587
+ return element;
1588
+ },
1589
+
1590
+ replace: function(element, content) {
1591
+ element = $(element);
1592
+ if (content && content.toElement) content = content.toElement();
1593
+ else if (!Object.isElement(content)) {
1594
+ content = Object.toHTML(content);
1595
+ var range = element.ownerDocument.createRange();
1596
+ range.selectNode(element);
1597
+ content.evalScripts.bind(content).defer();
1598
+ content = range.createContextualFragment(content.stripScripts());
1599
+ }
1600
+ element.parentNode.replaceChild(content, element);
1601
+ return element;
1602
+ },
1603
+
1604
+ insert: function(element, insertions) {
1605
+ element = $(element);
1606
+
1607
+ if (Object.isString(insertions) || Object.isNumber(insertions) ||
1608
+ Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
1609
+ insertions = {bottom:insertions};
1610
+
1611
+ var content, t, range;
1612
+
1613
+ for (position in insertions) {
1614
+ content = insertions[position];
1615
+ position = position.toLowerCase();
1616
+ t = Element._insertionTranslations[position];
1617
+
1618
+ if (content && content.toElement) content = content.toElement();
1619
+ if (Object.isElement(content)) {
1620
+ t.insert(element, content);
1621
+ continue;
1622
+ }
1623
+
1624
+ content = Object.toHTML(content);
1625
+
1626
+ range = element.ownerDocument.createRange();
1627
+ t.initializeRange(element, range);
1628
+ t.insert(element, range.createContextualFragment(content.stripScripts()));
1629
+
1630
+ content.evalScripts.bind(content).defer();
1631
+ }
1632
+
1633
+ return element;
1634
+ },
1635
+
1636
+ wrap: function(element, wrapper, attributes) {
1637
+ element = $(element);
1638
+ if (Object.isElement(wrapper))
1639
+ $(wrapper).writeAttribute(attributes || { });
1640
+ else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes);
1641
+ else wrapper = new Element('div', wrapper);
1642
+ if (element.parentNode)
1643
+ element.parentNode.replaceChild(wrapper, element);
1644
+ wrapper.appendChild(element);
1645
+ return wrapper;
1646
+ },
1647
+
1648
+ inspect: function(element) {
1649
+ element = $(element);
1650
+ var result = '<' + element.tagName.toLowerCase();
1651
+ $H({'id': 'id', 'className': 'class'}).each(function(pair) {
1652
+ var property = pair.first(), attribute = pair.last();
1653
+ var value = (element[property] || '').toString();
1654
+ if (value) result += ' ' + attribute + '=' + value.inspect(true);
1655
+ });
1656
+ return result + '>';
1657
+ },
1658
+
1659
+ recursivelyCollect: function(element, property) {
1660
+ element = $(element);
1661
+ var elements = [];
1662
+ while (element = element[property])
1663
+ if (element.nodeType == 1)
1664
+ elements.push(Element.extend(element));
1665
+ return elements;
1666
+ },
1667
+
1668
+ ancestors: function(element) {
1669
+ return $(element).recursivelyCollect('parentNode');
1670
+ },
1671
+
1672
+ descendants: function(element) {
1673
+ return $(element).getElementsBySelector("*");
1674
+ },
1675
+
1676
+ firstDescendant: function(element) {
1677
+ element = $(element).firstChild;
1678
+ while (element && element.nodeType != 1) element = element.nextSibling;
1679
+ return $(element);
1680
+ },
1681
+
1682
+ immediateDescendants: function(element) {
1683
+ if (!(element = $(element).firstChild)) return [];
1684
+ while (element && element.nodeType != 1) element = element.nextSibling;
1685
+ if (element) return [element].concat($(element).nextSiblings());
1686
+ return [];
1687
+ },
1688
+
1689
+ previousSiblings: function(element) {
1690
+ return $(element).recursivelyCollect('previousSibling');
1691
+ },
1692
+
1693
+ nextSiblings: function(element) {
1694
+ return $(element).recursivelyCollect('nextSibling');
1695
+ },
1696
+
1697
+ siblings: function(element) {
1698
+ element = $(element);
1699
+ return element.previousSiblings().reverse().concat(element.nextSiblings());
1700
+ },
1701
+
1702
+ match: function(element, selector) {
1703
+ if (Object.isString(selector))
1704
+ selector = new Selector(selector);
1705
+ return selector.match($(element));
1706
+ },
1707
+
1708
+ up: function(element, expression, index) {
1709
+ element = $(element);
1710
+ if (arguments.length == 1) return $(element.parentNode);
1711
+ var ancestors = element.ancestors();
1712
+ return expression ? Selector.findElement(ancestors, expression, index) :
1713
+ ancestors[index || 0];
1714
+ },
1715
+
1716
+ down: function(element, expression, index) {
1717
+ element = $(element);
1718
+ if (arguments.length == 1) return element.firstDescendant();
1719
+ var descendants = element.descendants();
1720
+ return expression ? Selector.findElement(descendants, expression, index) :
1721
+ descendants[index || 0];
1722
+ },
1723
+
1724
+ previous: function(element, expression, index) {
1725
+ element = $(element);
1726
+ if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element));
1727
+ var previousSiblings = element.previousSiblings();
1728
+ return expression ? Selector.findElement(previousSiblings, expression, index) :
1729
+ previousSiblings[index || 0];
1730
+ },
1731
+
1732
+ next: function(element, expression, index) {
1733
+ element = $(element);
1734
+ if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element));
1735
+ var nextSiblings = element.nextSiblings();
1736
+ return expression ? Selector.findElement(nextSiblings, expression, index) :
1737
+ nextSiblings[index || 0];
1738
+ },
1739
+
1740
+ select: function() {
1741
+ var args = $A(arguments), element = $(args.shift());
1742
+ return Selector.findChildElements(element, args);
1743
+ },
1744
+
1745
+ adjacent: function() {
1746
+ var args = $A(arguments), element = $(args.shift());
1747
+ return Selector.findChildElements(element.parentNode, args).without(element);
1748
+ },
1749
+
1750
+ identify: function(element) {
1751
+ element = $(element);
1752
+ var id = element.readAttribute('id'), self = arguments.callee;
1753
+ if (id) return id;
1754
+ do { id = 'anonymous_element_' + self.counter++ } while ($(id));
1755
+ element.writeAttribute('id', id);
1756
+ return id;
1757
+ },
1758
+
1759
+ readAttribute: function(element, name) {
1760
+ element = $(element);
1761
+ if (Prototype.Browser.IE) {
1762
+ var t = Element._attributeTranslations.read;
1763
+ if (t.values[name]) return t.values[name](element, name);
1764
+ if (t.names[name]) name = t.names[name];
1765
+ if (name.include(':')) {
1766
+ return (!element.attributes || !element.attributes[name]) ? null :
1767
+ element.attributes[name].value;
1768
+ }
1769
+ }
1770
+ return element.getAttribute(name);
1771
+ },
1772
+
1773
+ writeAttribute: function(element, name, value) {
1774
+ element = $(element);
1775
+ var attributes = { }, t = Element._attributeTranslations.write;
1776
+
1777
+ if (typeof name == 'object') attributes = name;
1778
+ else attributes[name] = Object.isUndefined(value) ? true : value;
1779
+
1780
+ for (var attr in attributes) {
1781
+ name = t.names[attr] || attr;
1782
+ value = attributes[attr];
1783
+ if (t.values[attr]) name = t.values[attr](element, value);
1784
+ if (value === false || value === null)
1785
+ element.removeAttribute(name);
1786
+ else if (value === true)
1787
+ element.setAttribute(name, name);
1788
+ else element.setAttribute(name, value);
1789
+ }
1790
+ return element;
1791
+ },
1792
+
1793
+ getHeight: function(element) {
1794
+ return $(element).getDimensions().height;
1795
+ },
1796
+
1797
+ getWidth: function(element) {
1798
+ return $(element).getDimensions().width;
1799
+ },
1800
+
1801
+ classNames: function(element) {
1802
+ return new Element.ClassNames(element);
1803
+ },
1804
+
1805
+ hasClassName: function(element, className) {
1806
+ if (!(element = $(element))) return;
1807
+ var elementClassName = element.className;
1808
+ return (elementClassName.length > 0 && (elementClassName == className ||
1809
+ new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName)));
1810
+ },
1811
+
1812
+ addClassName: function(element, className) {
1813
+ if (!(element = $(element))) return;
1814
+ if (!element.hasClassName(className))
1815
+ element.className += (element.className ? ' ' : '') + className;
1816
+ return element;
1817
+ },
1818
+
1819
+ removeClassName: function(element, className) {
1820
+ if (!(element = $(element))) return;
1821
+ element.className = element.className.replace(
1822
+ new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip();
1823
+ return element;
1824
+ },
1825
+
1826
+ toggleClassName: function(element, className) {
1827
+ if (!(element = $(element))) return;
1828
+ return element[element.hasClassName(className) ?
1829
+ 'removeClassName' : 'addClassName'](className);
1830
+ },
1831
+
1832
+ // removes whitespace-only text node children
1833
+ cleanWhitespace: function(element) {
1834
+ element = $(element);
1835
+ var node = element.firstChild;
1836
+ while (node) {
1837
+ var nextNode = node.nextSibling;
1838
+ if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
1839
+ element.removeChild(node);
1840
+ node = nextNode;
1841
+ }
1842
+ return element;
1843
+ },
1844
+
1845
+ empty: function(element) {
1846
+ return $(element).innerHTML.blank();
1847
+ },
1848
+
1849
+ descendantOf: function(element, ancestor) {
1850
+ element = $(element), ancestor = $(ancestor);
1851
+ var originalAncestor = ancestor;
1852
+
1853
+ if (element.compareDocumentPosition)
1854
+ return (element.compareDocumentPosition(ancestor) & 8) === 8;
1855
+
1856
+ if (element.sourceIndex && !Prototype.Browser.Opera) {
1857
+ var e = element.sourceIndex, a = ancestor.sourceIndex,
1858
+ nextAncestor = ancestor.nextSibling;
1859
+ if (!nextAncestor) {
1860
+ do { ancestor = ancestor.parentNode; }
1861
+ while (!(nextAncestor = ancestor.nextSibling) && ancestor.parentNode);
1862
+ }
1863
+ if (nextAncestor) return (e > a && e < nextAncestor.sourceIndex);
1864
+ }
1865
+
1866
+ while (element = element.parentNode)
1867
+ if (element == originalAncestor) return true;
1868
+ return false;
1869
+ },
1870
+
1871
+ scrollTo: function(element) {
1872
+ element = $(element);
1873
+ var pos = element.cumulativeOffset();
1874
+ window.scrollTo(pos[0], pos[1]);
1875
+ return element;
1876
+ },
1877
+
1878
+ getStyle: function(element, style) {
1879
+ element = $(element);
1880
+ style = style == 'float' ? 'cssFloat' : style.camelize();
1881
+ var value = element.style[style];
1882
+ if (!value) {
1883
+ var css = document.defaultView.getComputedStyle(element, null);
1884
+ value = css ? css[style] : null;
1885
+ }
1886
+ if (style == 'opacity') return value ? parseFloat(value) : 1.0;
1887
+ return value == 'auto' ? null : value;
1888
+ },
1889
+
1890
+ getOpacity: function(element) {
1891
+ return $(element).getStyle('opacity');
1892
+ },
1893
+
1894
+ setStyle: function(element, styles) {
1895
+ element = $(element);
1896
+ var elementStyle = element.style, match;
1897
+ if (Object.isString(styles)) {
1898
+ element.style.cssText += ';' + styles;
1899
+ return styles.include('opacity') ?
1900
+ element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element;
1901
+ }
1902
+ for (var property in styles)
1903
+ if (property == 'opacity') element.setOpacity(styles[property]);
1904
+ else
1905
+ elementStyle[(property == 'float' || property == 'cssFloat') ?
1906
+ (Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
1907
+ property] = styles[property];
1908
+
1909
+ return element;
1910
+ },
1911
+
1912
+ setOpacity: function(element, value) {
1913
+ element = $(element);
1914
+ element.style.opacity = (value == 1 || value === '') ? '' :
1915
+ (value < 0.00001) ? 0 : value;
1916
+ return element;
1917
+ },
1918
+
1919
+ getDimensions: function(element) {
1920
+ element = $(element);
1921
+ var display = $(element).getStyle('display');
1922
+ if (display != 'none' && display != null) // Safari bug
1923
+ return {width: element.offsetWidth, height: element.offsetHeight};
1924
+
1925
+ // All *Width and *Height properties give 0 on elements with display none,
1926
+ // so enable the element temporarily
1927
+ var els = element.style;
1928
+ var originalVisibility = els.visibility;
1929
+ var originalPosition = els.position;
1930
+ var originalDisplay = els.display;
1931
+ els.visibility = 'hidden';
1932
+ els.position = 'absolute';
1933
+ els.display = 'block';
1934
+ var originalWidth = element.clientWidth;
1935
+ var originalHeight = element.clientHeight;
1936
+ els.display = originalDisplay;
1937
+ els.position = originalPosition;
1938
+ els.visibility = originalVisibility;
1939
+ return {width: originalWidth, height: originalHeight};
1940
+ },
1941
+
1942
+ makePositioned: function(element) {
1943
+ element = $(element);
1944
+ var pos = Element.getStyle(element, 'position');
1945
+ if (pos == 'static' || !pos) {
1946
+ element._madePositioned = true;
1947
+ element.style.position = 'relative';
1948
+ // Opera returns the offset relative to the positioning context, when an
1949
+ // element is position relative but top and left have not been defined
1950
+ if (window.opera) {
1951
+ element.style.top = 0;
1952
+ element.style.left = 0;
1953
+ }
1954
+ }
1955
+ return element;
1956
+ },
1957
+
1958
+ undoPositioned: function(element) {
1959
+ element = $(element);
1960
+ if (element._madePositioned) {
1961
+ element._madePositioned = undefined;
1962
+ element.style.position =
1963
+ element.style.top =
1964
+ element.style.left =
1965
+ element.style.bottom =
1966
+ element.style.right = '';
1967
+ }
1968
+ return element;
1969
+ },
1970
+
1971
+ makeClipping: function(element) {
1972
+ element = $(element);
1973
+ if (element._overflow) return element;
1974
+ element._overflow = Element.getStyle(element, 'overflow') || 'auto';
1975
+ if (element._overflow !== 'hidden')
1976
+ element.style.overflow = 'hidden';
1977
+ return element;
1978
+ },
1979
+
1980
+ undoClipping: function(element) {
1981
+ element = $(element);
1982
+ if (!element._overflow) return element;
1983
+ element.style.overflow = element._overflow == 'auto' ? '' : element._overflow;
1984
+ element._overflow = null;
1985
+ return element;
1986
+ },
1987
+
1988
+ cumulativeOffset: function(element) {
1989
+ var valueT = 0, valueL = 0;
1990
+ do {
1991
+ valueT += element.offsetTop || 0;
1992
+ valueL += element.offsetLeft || 0;
1993
+ element = element.offsetParent;
1994
+ } while (element);
1995
+ return Element._returnOffset(valueL, valueT);
1996
+ },
1997
+
1998
+ positionedOffset: function(element) {
1999
+ var valueT = 0, valueL = 0;
2000
+ do {
2001
+ valueT += element.offsetTop || 0;
2002
+ valueL += element.offsetLeft || 0;
2003
+ element = element.offsetParent;
2004
+ if (element) {
2005
+ if (element.tagName == 'BODY') break;
2006
+ var p = Element.getStyle(element, 'position');
2007
+ if (p == 'relative' || p == 'absolute') break;
2008
+ }
2009
+ } while (element);
2010
+ return Element._returnOffset(valueL, valueT);
2011
+ },
2012
+
2013
+ absolutize: function(element) {
2014
+ element = $(element);
2015
+ if (element.getStyle('position') == 'absolute') return;
2016
+ // Position.prepare(); // To be done manually by Scripty when it needs it.
2017
+
2018
+ var offsets = element.positionedOffset();
2019
+ var top = offsets[1];
2020
+ var left = offsets[0];
2021
+ var width = element.clientWidth;
2022
+ var height = element.clientHeight;
2023
+
2024
+ element._originalLeft = left - parseFloat(element.style.left || 0);
2025
+ element._originalTop = top - parseFloat(element.style.top || 0);
2026
+ element._originalWidth = element.style.width;
2027
+ element._originalHeight = element.style.height;
2028
+
2029
+ element.style.position = 'absolute';
2030
+ element.style.top = top + 'px';
2031
+ element.style.left = left + 'px';
2032
+ element.style.width = width + 'px';
2033
+ element.style.height = height + 'px';
2034
+ return element;
2035
+ },
2036
+
2037
+ relativize: function(element) {
2038
+ element = $(element);
2039
+ if (element.getStyle('position') == 'relative') return;
2040
+ // Position.prepare(); // To be done manually by Scripty when it needs it.
2041
+
2042
+ element.style.position = 'relative';
2043
+ var top = parseFloat(element.style.top || 0) - (element._originalTop || 0);
2044
+ var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);
2045
+
2046
+ element.style.top = top + 'px';
2047
+ element.style.left = left + 'px';
2048
+ element.style.height = element._originalHeight;
2049
+ element.style.width = element._originalWidth;
2050
+ return element;
2051
+ },
2052
+
2053
+ cumulativeScrollOffset: function(element) {
2054
+ var valueT = 0, valueL = 0;
2055
+ do {
2056
+ valueT += element.scrollTop || 0;
2057
+ valueL += element.scrollLeft || 0;
2058
+ element = element.parentNode;
2059
+ } while (element);
2060
+ return Element._returnOffset(valueL, valueT);
2061
+ },
2062
+
2063
+ getOffsetParent: function(element) {
2064
+ if (element.offsetParent) return $(element.offsetParent);
2065
+ if (element == document.body) return $(element);
2066
+
2067
+ while ((element = element.parentNode) && element != document.body)
2068
+ if (Element.getStyle(element, 'position') != 'static')
2069
+ return $(element);
2070
+
2071
+ return $(document.body);
2072
+ },
2073
+
2074
+ viewportOffset: function(forElement) {
2075
+ var valueT = 0, valueL = 0;
2076
+
2077
+ var element = forElement;
2078
+ do {
2079
+ valueT += element.offsetTop || 0;
2080
+ valueL += element.offsetLeft || 0;
2081
+
2082
+ // Safari fix
2083
+ if (element.offsetParent == document.body &&
2084
+ Element.getStyle(element, 'position') == 'absolute') break;
2085
+
2086
+ } while (element = element.offsetParent);
2087
+
2088
+ element = forElement;
2089
+ do {
2090
+ if (!Prototype.Browser.Opera || element.tagName == 'BODY') {
2091
+ valueT -= element.scrollTop || 0;
2092
+ valueL -= element.scrollLeft || 0;
2093
+ }
2094
+ } while (element = element.parentNode);
2095
+
2096
+ return Element._returnOffset(valueL, valueT);
2097
+ },
2098
+
2099
+ clonePosition: function(element, source) {
2100
+ var options = Object.extend({
2101
+ setLeft: true,
2102
+ setTop: true,
2103
+ setWidth: true,
2104
+ setHeight: true,
2105
+ offsetTop: 0,
2106
+ offsetLeft: 0
2107
+ }, arguments[2] || { });
2108
+
2109
+ // find page position of source
2110
+ source = $(source);
2111
+ var p = source.viewportOffset();
2112
+
2113
+ // find coordinate system to use
2114
+ element = $(element);
2115
+ var delta = [0, 0];
2116
+ var parent = null;
2117
+ // delta [0,0] will do fine with position: fixed elements,
2118
+ // position:absolute needs offsetParent deltas
2119
+ if (Element.getStyle(element, 'position') == 'absolute') {
2120
+ parent = element.getOffsetParent();
2121
+ delta = parent.viewportOffset();
2122
+ }
2123
+
2124
+ // correct by body offsets (fixes Safari)
2125
+ if (parent == document.body) {
2126
+ delta[0] -= document.body.offsetLeft;
2127
+ delta[1] -= document.body.offsetTop;
2128
+ }
2129
+
2130
+ // set position
2131
+ if (options.setLeft) element.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px';
2132
+ if (options.setTop) element.style.top = (p[1] - delta[1] + options.offsetTop) + 'px';
2133
+ if (options.setWidth) element.style.width = source.offsetWidth + 'px';
2134
+ if (options.setHeight) element.style.height = source.offsetHeight + 'px';
2135
+ return element;
2136
+ }
2137
+ };
2138
+
2139
+ Element.Methods.identify.counter = 1;
2140
+
2141
+ Object.extend(Element.Methods, {
2142
+ getElementsBySelector: Element.Methods.select,
2143
+ childElements: Element.Methods.immediateDescendants
2144
+ });
2145
+
2146
+ Element._attributeTranslations = {
2147
+ write: {
2148
+ names: {
2149
+ className: 'class',
2150
+ htmlFor: 'for'
2151
+ },
2152
+ values: { }
2153
+ }
2154
+ };
2155
+
2156
+
2157
+ if (!document.createRange || Prototype.Browser.Opera) {
2158
+ Element.Methods.insert = function(element, insertions) {
2159
+ element = $(element);
2160
+
2161
+ if (Object.isString(insertions) || Object.isNumber(insertions) ||
2162
+ Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
2163
+ insertions = { bottom: insertions };
2164
+
2165
+ var t = Element._insertionTranslations, content, position, pos, tagName;
2166
+
2167
+ for (position in insertions) {
2168
+ content = insertions[position];
2169
+ position = position.toLowerCase();
2170
+ pos = t[position];
2171
+
2172
+ if (content && content.toElement) content = content.toElement();
2173
+ if (Object.isElement(content)) {
2174
+ pos.insert(element, content);
2175
+ continue;
2176
+ }
2177
+
2178
+ content = Object.toHTML(content);
2179
+ tagName = ((position == 'before' || position == 'after')
2180
+ ? element.parentNode : element).tagName.toUpperCase();
2181
+
2182
+ if (t.tags[tagName]) {
2183
+ var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
2184
+ if (position == 'top' || position == 'after') fragments.reverse();
2185
+ fragments.each(pos.insert.curry(element));
2186
+ }
2187
+ else element.insertAdjacentHTML(pos.adjacency, content.stripScripts());
2188
+
2189
+ content.evalScripts.bind(content).defer();
2190
+ }
2191
+
2192
+ return element;
2193
+ };
2194
+ }
2195
+
2196
+ if (Prototype.Browser.Opera) {
2197
+ Element.Methods.getStyle = Element.Methods.getStyle.wrap(
2198
+ function(proceed, element, style) {
2199
+ switch (style) {
2200
+ case 'left': case 'top': case 'right': case 'bottom':
2201
+ if (proceed(element, 'position') === 'static') return null;
2202
+ case 'height': case 'width':
2203
+ // returns '0px' for hidden elements; we want it to return null
2204
+ if (!Element.visible(element)) return null;
2205
+
2206
+ // returns the border-box dimensions rather than the content-box
2207
+ // dimensions, so we subtract padding and borders from the value
2208
+ var dim = parseInt(proceed(element, style), 10);
2209
+
2210
+ if (dim !== element['offset' + style.capitalize()])
2211
+ return dim + 'px';
2212
+
2213
+ var properties;
2214
+ if (style === 'height') {
2215
+ properties = ['border-top-width', 'padding-top',
2216
+ 'padding-bottom', 'border-bottom-width'];
2217
+ }
2218
+ else {
2219
+ properties = ['border-left-width', 'padding-left',
2220
+ 'padding-right', 'border-right-width'];
2221
+ }
2222
+ return properties.inject(dim, function(memo, property) {
2223
+ var val = proceed(element, property);
2224
+ return val === null ? memo : memo - parseInt(val, 10);
2225
+ }) + 'px';
2226
+ default: return proceed(element, style);
2227
+ }
2228
+ }
2229
+ );
2230
+
2231
+ Element.Methods.readAttribute = Element.Methods.readAttribute.wrap(
2232
+ function(proceed, element, attribute) {
2233
+ if (attribute === 'title') return element.title;
2234
+ return proceed(element, attribute);
2235
+ }
2236
+ );
2237
+ }
2238
+
2239
+ else if (Prototype.Browser.IE) {
2240
+ $w('positionedOffset getOffsetParent viewportOffset').each(function(method) {
2241
+ Element.Methods[method] = Element.Methods[method].wrap(
2242
+ function(proceed, element) {
2243
+ element = $(element);
2244
+ var position = element.getStyle('position');
2245
+ if (position != 'static') return proceed(element);
2246
+ element.setStyle({ position: 'relative' });
2247
+ var value = proceed(element);
2248
+ element.setStyle({ position: position });
2249
+ return value;
2250
+ }
2251
+ );
2252
+ });
2253
+
2254
+ Element.Methods.getStyle = function(element, style) {
2255
+ element = $(element);
2256
+ style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
2257
+ var value = element.style[style];
2258
+ if (!value && element.currentStyle) value = element.currentStyle[style];
2259
+
2260
+ if (style == 'opacity') {
2261
+ if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
2262
+ if (value[1]) return parseFloat(value[1]) / 100;
2263
+ return 1.0;
2264
+ }
2265
+
2266
+ if (value == 'auto') {
2267
+ if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none'))
2268
+ return element['offset' + style.capitalize()] + 'px';
2269
+ return null;
2270
+ }
2271
+ return value;
2272
+ };
2273
+
2274
+ Element.Methods.setOpacity = function(element, value) {
2275
+ function stripAlpha(filter){
2276
+ return filter.replace(/alpha\([^\)]*\)/gi,'');
2277
+ }
2278
+ element = $(element);
2279
+ var currentStyle = element.currentStyle;
2280
+ if ((currentStyle && !currentStyle.hasLayout) ||
2281
+ (!currentStyle && element.style.zoom == 'normal'))
2282
+ element.style.zoom = 1;
2283
+
2284
+ var filter = element.getStyle('filter'), style = element.style;
2285
+ if (value == 1 || value === '') {
2286
+ (filter = stripAlpha(filter)) ?
2287
+ style.filter = filter : style.removeAttribute('filter');
2288
+ return element;
2289
+ } else if (value < 0.00001) value = 0;
2290
+ style.filter = stripAlpha(filter) +
2291
+ 'alpha(opacity=' + (value * 100) + ')';
2292
+ return element;
2293
+ };
2294
+
2295
+ Element._attributeTranslations = {
2296
+ read: {
2297
+ names: {
2298
+ 'class': 'className',
2299
+ 'for': 'htmlFor'
2300
+ },
2301
+ values: {
2302
+ _getAttr: function(element, attribute) {
2303
+ return element.getAttribute(attribute, 2);
2304
+ },
2305
+ _getAttrNode: function(element, attribute) {
2306
+ var node = element.getAttributeNode(attribute);
2307
+ return node ? node.value : "";
2308
+ },
2309
+ _getEv: function(element, attribute) {
2310
+ attribute = element.getAttribute(attribute);
2311
+ return attribute ? attribute.toString().slice(23, -2) : null;
2312
+ },
2313
+ _flag: function(element, attribute) {
2314
+ return $(element).hasAttribute(attribute) ? attribute : null;
2315
+ },
2316
+ style: function(element) {
2317
+ return element.style.cssText.toLowerCase();
2318
+ },
2319
+ title: function(element) {
2320
+ return element.title;
2321
+ }
2322
+ }
2323
+ }
2324
+ };
2325
+
2326
+ Element._attributeTranslations.write = {
2327
+ names: Object.clone(Element._attributeTranslations.read.names),
2328
+ values: {
2329
+ checked: function(element, value) {
2330
+ element.checked = !!value;
2331
+ },
2332
+
2333
+ style: function(element, value) {
2334
+ element.style.cssText = value ? value : '';
2335
+ }
2336
+ }
2337
+ };
2338
+
2339
+ Element._attributeTranslations.has = {};
2340
+
2341
+ $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' +
2342
+ 'encType maxLength readOnly longDesc').each(function(attr) {
2343
+ Element._attributeTranslations.write.names[attr.toLowerCase()] = attr;
2344
+ Element._attributeTranslations.has[attr.toLowerCase()] = attr;
2345
+ });
2346
+
2347
+ (function(v) {
2348
+ Object.extend(v, {
2349
+ href: v._getAttr,
2350
+ src: v._getAttr,
2351
+ type: v._getAttr,
2352
+ action: v._getAttrNode,
2353
+ disabled: v._flag,
2354
+ checked: v._flag,
2355
+ readonly: v._flag,
2356
+ multiple: v._flag,
2357
+ onload: v._getEv,
2358
+ onunload: v._getEv,
2359
+ onclick: v._getEv,
2360
+ ondblclick: v._getEv,
2361
+ onmousedown: v._getEv,
2362
+ onmouseup: v._getEv,
2363
+ onmouseover: v._getEv,
2364
+ onmousemove: v._getEv,
2365
+ onmouseout: v._getEv,
2366
+ onfocus: v._getEv,
2367
+ onblur: v._getEv,
2368
+ onkeypress: v._getEv,
2369
+ onkeydown: v._getEv,
2370
+ onkeyup: v._getEv,
2371
+ onsubmit: v._getEv,
2372
+ onreset: v._getEv,
2373
+ onselect: v._getEv,
2374
+ onchange: v._getEv
2375
+ });
2376
+ })(Element._attributeTranslations.read.values);
2377
+ }
2378
+
2379
+ else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) {
2380
+ Element.Methods.setOpacity = function(element, value) {
2381
+ element = $(element);
2382
+ element.style.opacity = (value == 1) ? 0.999999 :
2383
+ (value === '') ? '' : (value < 0.00001) ? 0 : value;
2384
+ return element;
2385
+ };
2386
+ }
2387
+
2388
+ else if (Prototype.Browser.WebKit) {
2389
+ Element.Methods.setOpacity = function(element, value) {
2390
+ element = $(element);
2391
+ element.style.opacity = (value == 1 || value === '') ? '' :
2392
+ (value < 0.00001) ? 0 : value;
2393
+
2394
+ if (value == 1)
2395
+ if(element.tagName == 'IMG' && element.width) {
2396
+ element.width++; element.width--;
2397
+ } else try {
2398
+ var n = document.createTextNode(' ');
2399
+ element.appendChild(n);
2400
+ element.removeChild(n);
2401
+ } catch (e) { }
2402
+
2403
+ return element;
2404
+ };
2405
+
2406
+ // Safari returns margins on body which is incorrect if the child is absolutely
2407
+ // positioned. For performance reasons, redefine Element#cumulativeOffset for
2408
+ // KHTML/WebKit only.
2409
+ Element.Methods.cumulativeOffset = function(element) {
2410
+ var valueT = 0, valueL = 0;
2411
+ do {
2412
+ valueT += element.offsetTop || 0;
2413
+ valueL += element.offsetLeft || 0;
2414
+ if (element.offsetParent == document.body)
2415
+ if (Element.getStyle(element, 'position') == 'absolute') break;
2416
+
2417
+ element = element.offsetParent;
2418
+ } while (element);
2419
+
2420
+ return Element._returnOffset(valueL, valueT);
2421
+ };
2422
+ }
2423
+
2424
+ if (Prototype.Browser.IE || Prototype.Browser.Opera) {
2425
+ // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements
2426
+ Element.Methods.update = function(element, content) {
2427
+ element = $(element);
2428
+
2429
+ if (content && content.toElement) content = content.toElement();
2430
+ if (Object.isElement(content)) return element.update().insert(content);
2431
+
2432
+ content = Object.toHTML(content);
2433
+ var tagName = element.tagName.toUpperCase();
2434
+
2435
+ if (tagName in Element._insertionTranslations.tags) {
2436
+ $A(element.childNodes).each(function(node) { element.removeChild(node) });
2437
+ Element._getContentFromAnonymousElement(tagName, content.stripScripts())
2438
+ .each(function(node) { element.appendChild(node) });
2439
+ }
2440
+ else element.innerHTML = content.stripScripts();
2441
+
2442
+ content.evalScripts.bind(content).defer();
2443
+ return element;
2444
+ };
2445
+ }
2446
+
2447
+ if (document.createElement('div').outerHTML) {
2448
+ Element.Methods.replace = function(element, content) {
2449
+ element = $(element);
2450
+
2451
+ if (content && content.toElement) content = content.toElement();
2452
+ if (Object.isElement(content)) {
2453
+ element.parentNode.replaceChild(content, element);
2454
+ return element;
2455
+ }
2456
+
2457
+ content = Object.toHTML(content);
2458
+ var parent = element.parentNode, tagName = parent.tagName.toUpperCase();
2459
+
2460
+ if (Element._insertionTranslations.tags[tagName]) {
2461
+ var nextSibling = element.next();
2462
+ var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
2463
+ parent.removeChild(element);
2464
+ if (nextSibling)
2465
+ fragments.each(function(node) { parent.insertBefore(node, nextSibling) });
2466
+ else
2467
+ fragments.each(function(node) { parent.appendChild(node) });
2468
+ }
2469
+ else element.outerHTML = content.stripScripts();
2470
+
2471
+ content.evalScripts.bind(content).defer();
2472
+ return element;
2473
+ };
2474
+ }
2475
+
2476
+ Element._returnOffset = function(l, t) {
2477
+ var result = [l, t];
2478
+ result.left = l;
2479
+ result.top = t;
2480
+ return result;
2481
+ };
2482
+
2483
+ Element._getContentFromAnonymousElement = function(tagName, html) {
2484
+ var div = new Element('div'), t = Element._insertionTranslations.tags[tagName];
2485
+ div.innerHTML = t[0] + html + t[1];
2486
+ t[2].times(function() { div = div.firstChild });
2487
+ return $A(div.childNodes);
2488
+ };
2489
+
2490
+ Element._insertionTranslations = {
2491
+ before: {
2492
+ adjacency: 'beforeBegin',
2493
+ insert: function(element, node) {
2494
+ element.parentNode.insertBefore(node, element);
2495
+ },
2496
+ initializeRange: function(element, range) {
2497
+ range.setStartBefore(element);
2498
+ }
2499
+ },
2500
+ top: {
2501
+ adjacency: 'afterBegin',
2502
+ insert: function(element, node) {
2503
+ element.insertBefore(node, element.firstChild);
2504
+ },
2505
+ initializeRange: function(element, range) {
2506
+ range.selectNodeContents(element);
2507
+ range.collapse(true);
2508
+ }
2509
+ },
2510
+ bottom: {
2511
+ adjacency: 'beforeEnd',
2512
+ insert: function(element, node) {
2513
+ element.appendChild(node);
2514
+ }
2515
+ },
2516
+ after: {
2517
+ adjacency: 'afterEnd',
2518
+ insert: function(element, node) {
2519
+ element.parentNode.insertBefore(node, element.nextSibling);
2520
+ },
2521
+ initializeRange: function(element, range) {
2522
+ range.setStartAfter(element);
2523
+ }
2524
+ },
2525
+ tags: {
2526
+ TABLE: ['<table>', '</table>', 1],
2527
+ TBODY: ['<table><tbody>', '</tbody></table>', 2],
2528
+ TR: ['<table><tbody><tr>', '</tr></tbody></table>', 3],
2529
+ TD: ['<table><tbody><tr><td>', '</td></tr></tbody></table>', 4],
2530
+ SELECT: ['<select>', '</select>', 1]
2531
+ }
2532
+ };
2533
+
2534
+ (function() {
2535
+ this.bottom.initializeRange = this.top.initializeRange;
2536
+ Object.extend(this.tags, {
2537
+ THEAD: this.tags.TBODY,
2538
+ TFOOT: this.tags.TBODY,
2539
+ TH: this.tags.TD
2540
+ });
2541
+ }).call(Element._insertionTranslations);
2542
+
2543
+ Element.Methods.Simulated = {
2544
+ hasAttribute: function(element, attribute) {
2545
+ attribute = Element._attributeTranslations.has[attribute] || attribute;
2546
+ var node = $(element).getAttributeNode(attribute);
2547
+ return node && node.specified;
2548
+ }
2549
+ };
2550
+
2551
+ Element.Methods.ByTag = { };
2552
+
2553
+ Object.extend(Element, Element.Methods);
2554
+
2555
+ if (!Prototype.BrowserFeatures.ElementExtensions &&
2556
+ document.createElement('div').__proto__) {
2557
+ window.HTMLElement = { };
2558
+ window.HTMLElement.prototype = document.createElement('div').__proto__;
2559
+ Prototype.BrowserFeatures.ElementExtensions = true;
2560
+ }
2561
+
2562
+ Element.extend = (function() {
2563
+ if (Prototype.BrowserFeatures.SpecificElementExtensions)
2564
+ return Prototype.K;
2565
+
2566
+ var Methods = { }, ByTag = Element.Methods.ByTag;
2567
+
2568
+ var extend = Object.extend(function(element) {
2569
+ if (!element || element._extendedByPrototype ||
2570
+ element.nodeType != 1 || element == window) return element;
2571
+
2572
+ var methods = Object.clone(Methods),
2573
+ tagName = element.tagName, property, value;
2574
+
2575
+ // extend methods for specific tags
2576
+ if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]);
2577
+
2578
+ for (property in methods) {
2579
+ value = methods[property];
2580
+ if (Object.isFunction(value) && !(property in element))
2581
+ element[property] = value.methodize();
2582
+ }
2583
+
2584
+ element._extendedByPrototype = Prototype.emptyFunction;
2585
+ return element;
2586
+
2587
+ }, {
2588
+ refresh: function() {
2589
+ // extend methods for all tags (Safari doesn't need this)
2590
+ if (!Prototype.BrowserFeatures.ElementExtensions) {
2591
+ Object.extend(Methods, Element.Methods);
2592
+ Object.extend(Methods, Element.Methods.Simulated);
2593
+ }
2594
+ }
2595
+ });
2596
+
2597
+ extend.refresh();
2598
+ return extend;
2599
+ })();
2600
+
2601
+ Element.hasAttribute = function(element, attribute) {
2602
+ if (element.hasAttribute) return element.hasAttribute(attribute);
2603
+ return Element.Methods.Simulated.hasAttribute(element, attribute);
2604
+ };
2605
+
2606
+ Element.addMethods = function(methods) {
2607
+ var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag;
2608
+
2609
+ if (!methods) {
2610
+ Object.extend(Form, Form.Methods);
2611
+ Object.extend(Form.Element, Form.Element.Methods);
2612
+ Object.extend(Element.Methods.ByTag, {
2613
+ "FORM": Object.clone(Form.Methods),
2614
+ "INPUT": Object.clone(Form.Element.Methods),
2615
+ "SELECT": Object.clone(Form.Element.Methods),
2616
+ "TEXTAREA": Object.clone(Form.Element.Methods)
2617
+ });
2618
+ }
2619
+
2620
+ if (arguments.length == 2) {
2621
+ var tagName = methods;
2622
+ methods = arguments[1];
2623
+ }
2624
+
2625
+ if (!tagName) Object.extend(Element.Methods, methods || { });
2626
+ else {
2627
+ if (Object.isArray(tagName)) tagName.each(extend);
2628
+ else extend(tagName);
2629
+ }
2630
+
2631
+ function extend(tagName) {
2632
+ tagName = tagName.toUpperCase();
2633
+ if (!Element.Methods.ByTag[tagName])
2634
+ Element.Methods.ByTag[tagName] = { };
2635
+ Object.extend(Element.Methods.ByTag[tagName], methods);
2636
+ }
2637
+
2638
+ function copy(methods, destination, onlyIfAbsent) {
2639
+ onlyIfAbsent = onlyIfAbsent || false;
2640
+ for (var property in methods) {
2641
+ var value = methods[property];
2642
+ if (!Object.isFunction(value)) continue;
2643
+ if (!onlyIfAbsent || !(property in destination))
2644
+ destination[property] = value.methodize();
2645
+ }
2646
+ }
2647
+
2648
+ function findDOMClass(tagName) {
2649
+ var klass;
2650
+ var trans = {
2651
+ "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph",
2652
+ "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList",
2653
+ "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading",
2654
+ "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote",
2655
+ "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION":
2656
+ "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD":
2657
+ "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR":
2658
+ "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET":
2659
+ "FrameSet", "IFRAME": "IFrame"
2660
+ };
2661
+ if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element';
2662
+ if (window[klass]) return window[klass];
2663
+ klass = 'HTML' + tagName + 'Element';
2664
+ if (window[klass]) return window[klass];
2665
+ klass = 'HTML' + tagName.capitalize() + 'Element';
2666
+ if (window[klass]) return window[klass];
2667
+
2668
+ window[klass] = { };
2669
+ window[klass].prototype = document.createElement(tagName).__proto__;
2670
+ return window[klass];
2671
+ }
2672
+
2673
+ if (F.ElementExtensions) {
2674
+ copy(Element.Methods, HTMLElement.prototype);
2675
+ copy(Element.Methods.Simulated, HTMLElement.prototype, true);
2676
+ }
2677
+
2678
+ if (F.SpecificElementExtensions) {
2679
+ for (var tag in Element.Methods.ByTag) {
2680
+ var klass = findDOMClass(tag);
2681
+ if (Object.isUndefined(klass)) continue;
2682
+ copy(T[tag], klass.prototype);
2683
+ }
2684
+ }
2685
+
2686
+ Object.extend(Element, Element.Methods);
2687
+ delete Element.ByTag;
2688
+
2689
+ if (Element.extend.refresh) Element.extend.refresh();
2690
+ Element.cache = { };
2691
+ };
2692
+
2693
+ document.viewport = {
2694
+ getDimensions: function() {
2695
+ var dimensions = { };
2696
+ var B = Prototype.Browser;
2697
+ $w('width height').each(function(d) {
2698
+ var D = d.capitalize();
2699
+ dimensions[d] = (B.WebKit && !document.evaluate) ? self['inner' + D] :
2700
+ (B.Opera) ? document.body['client' + D] : document.documentElement['client' + D];
2701
+ });
2702
+ return dimensions;
2703
+ },
2704
+
2705
+ getWidth: function() {
2706
+ return this.getDimensions().width;
2707
+ },
2708
+
2709
+ getHeight: function() {
2710
+ return this.getDimensions().height;
2711
+ },
2712
+
2713
+ getScrollOffsets: function() {
2714
+ return Element._returnOffset(
2715
+ window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft,
2716
+ window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop);
2717
+ }
2718
+ };
2719
+ /* Portions of the Selector class are derived from Jack Slocum’s DomQuery,
2720
+ * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style
2721
+ * license. Please see http://www.yui-ext.com/ for more information. */
2722
+
2723
+ var Selector = Class.create({
2724
+ initialize: function(expression) {
2725
+ this.expression = expression.strip();
2726
+ this.compileMatcher();
2727
+ },
2728
+
2729
+ shouldUseXPath: function() {
2730
+ if (!Prototype.BrowserFeatures.XPath) return false;
2731
+
2732
+ var e = this.expression;
2733
+
2734
+ // Safari 3 chokes on :*-of-type and :empty
2735
+ if (Prototype.Browser.WebKit &&
2736
+ (e.include("-of-type") || e.include(":empty")))
2737
+ return false;
2738
+
2739
+ // XPath can't do namespaced attributes, nor can it read
2740
+ // the "checked" property from DOM nodes
2741
+ if ((/(\[[\w-]*?:|:checked)/).test(this.expression))
2742
+ return false;
2743
+
2744
+ return true;
2745
+ },
2746
+
2747
+ compileMatcher: function() {
2748
+ if (this.shouldUseXPath())
2749
+ return this.compileXPathMatcher();
2750
+
2751
+ var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
2752
+ c = Selector.criteria, le, p, m;
2753
+
2754
+ if (Selector._cache[e]) {
2755
+ this.matcher = Selector._cache[e];
2756
+ return;
2757
+ }
2758
+
2759
+ this.matcher = ["this.matcher = function(root) {",
2760
+ "var r = root, h = Selector.handlers, c = false, n;"];
2761
+
2762
+ while (e && le != e && (/\S/).test(e)) {
2763
+ le = e;
2764
+ for (var i in ps) {
2765
+ p = ps[i];
2766
+ if (m = e.match(p)) {
2767
+ this.matcher.push(Object.isFunction(c[i]) ? c[i](m) :
2768
+ new Template(c[i]).evaluate(m));
2769
+ e = e.replace(m[0], '');
2770
+ break;
2771
+ }
2772
+ }
2773
+ }
2774
+
2775
+ this.matcher.push("return h.unique(n);\n}");
2776
+ eval(this.matcher.join('\n'));
2777
+ Selector._cache[this.expression] = this.matcher;
2778
+ },
2779
+
2780
+ compileXPathMatcher: function() {
2781
+ var e = this.expression, ps = Selector.patterns,
2782
+ x = Selector.xpath, le, m;
2783
+
2784
+ if (Selector._cache[e]) {
2785
+ this.xpath = Selector._cache[e]; return;
2786
+ }
2787
+
2788
+ this.matcher = ['.//*'];
2789
+ while (e && le != e && (/\S/).test(e)) {
2790
+ le = e;
2791
+ for (var i in ps) {
2792
+ if (m = e.match(ps[i])) {
2793
+ this.matcher.push(Object.isFunction(x[i]) ? x[i](m) :
2794
+ new Template(x[i]).evaluate(m));
2795
+ e = e.replace(m[0], '');
2796
+ break;
2797
+ }
2798
+ }
2799
+ }
2800
+
2801
+ this.xpath = this.matcher.join('');
2802
+ Selector._cache[this.expression] = this.xpath;
2803
+ },
2804
+
2805
+ findElements: function(root) {
2806
+ root = root || document;
2807
+ if (this.xpath) return document._getElementsByXPath(this.xpath, root);
2808
+ return this.matcher(root);
2809
+ },
2810
+
2811
+ match: function(element) {
2812
+ this.tokens = [];
2813
+
2814
+ var e = this.expression, ps = Selector.patterns, as = Selector.assertions;
2815
+ var le, p, m;
2816
+
2817
+ while (e && le !== e && (/\S/).test(e)) {
2818
+ le = e;
2819
+ for (var i in ps) {
2820
+ p = ps[i];
2821
+ if (m = e.match(p)) {
2822
+ // use the Selector.assertions methods unless the selector
2823
+ // is too complex.
2824
+ if (as[i]) {
2825
+ this.tokens.push([i, Object.clone(m)]);
2826
+ e = e.replace(m[0], '');
2827
+ } else {
2828
+ // reluctantly do a document-wide search
2829
+ // and look for a match in the array
2830
+ return this.findElements(document).include(element);
2831
+ }
2832
+ }
2833
+ }
2834
+ }
2835
+
2836
+ var match = true, name, matches;
2837
+ for (var i = 0, token; token = this.tokens[i]; i++) {
2838
+ name = token[0], matches = token[1];
2839
+ if (!Selector.assertions[name](element, matches)) {
2840
+ match = false; break;
2841
+ }
2842
+ }
2843
+
2844
+ return match;
2845
+ },
2846
+
2847
+ toString: function() {
2848
+ return this.expression;
2849
+ },
2850
+
2851
+ inspect: function() {
2852
+ return "#<Selector:" + this.expression.inspect() + ">";
2853
+ }
2854
+ });
2855
+
2856
+ Object.extend(Selector, {
2857
+ _cache: { },
2858
+
2859
+ xpath: {
2860
+ descendant: "//*",
2861
+ child: "/*",
2862
+ adjacent: "/following-sibling::*[1]",
2863
+ laterSibling: '/following-sibling::*',
2864
+ tagName: function(m) {
2865
+ if (m[1] == '*') return '';
2866
+ return "[local-name()='" + m[1].toLowerCase() +
2867
+ "' or local-name()='" + m[1].toUpperCase() + "']";
2868
+ },
2869
+ className: "[contains(concat(' ', @class, ' '), ' #{1} ')]",
2870
+ id: "[@id='#{1}']",
2871
+ attrPresence: function(m) {
2872
+ m[1] = m[1].toLowerCase();
2873
+ return new Template("[@#{1}]").evaluate(m);
2874
+ },
2875
+ attr: function(m) {
2876
+ m[1] = m[1].toLowerCase();
2877
+ m[3] = m[5] || m[6];
2878
+ return new Template(Selector.xpath.operators[m[2]]).evaluate(m);
2879
+ },
2880
+ pseudo: function(m) {
2881
+ var h = Selector.xpath.pseudos[m[1]];
2882
+ if (!h) return '';
2883
+ if (Object.isFunction(h)) return h(m);
2884
+ return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);
2885
+ },
2886
+ operators: {
2887
+ '=': "[@#{1}='#{3}']",
2888
+ '!=': "[@#{1}!='#{3}']",
2889
+ '^=': "[starts-with(@#{1}, '#{3}')]",
2890
+ '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",
2891
+ '*=': "[contains(@#{1}, '#{3}')]",
2892
+ '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",
2893
+ '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]"
2894
+ },
2895
+ pseudos: {
2896
+ 'first-child': '[not(preceding-sibling::*)]',
2897
+ 'last-child': '[not(following-sibling::*)]',
2898
+ 'only-child': '[not(preceding-sibling::* or following-sibling::*)]',
2899
+ 'empty': "[count(*) = 0 and (count(text()) = 0 or translate(text(), ' \t\r\n', '') = '')]",
2900
+ 'checked': "[@checked]",
2901
+ 'disabled': "[@disabled]",
2902
+ 'enabled': "[not(@disabled)]",
2903
+ 'not': function(m) {
2904
+ var e = m[6], p = Selector.patterns,
2905
+ x = Selector.xpath, le, v;
2906
+
2907
+ var exclusion = [];
2908
+ while (e && le != e && (/\S/).test(e)) {
2909
+ le = e;
2910
+ for (var i in p) {
2911
+ if (m = e.match(p[i])) {
2912
+ v = Object.isFunction(x[i]) ? x[i](m) : new Template(x[i]).evaluate(m);
2913
+ exclusion.push("(" + v.substring(1, v.length - 1) + ")");
2914
+ e = e.replace(m[0], '');
2915
+ break;
2916
+ }
2917
+ }
2918
+ }
2919
+ return "[not(" + exclusion.join(" and ") + ")]";
2920
+ },
2921
+ 'nth-child': function(m) {
2922
+ return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
2923
+ },
2924
+ 'nth-last-child': function(m) {
2925
+ return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
2926
+ },
2927
+ 'nth-of-type': function(m) {
2928
+ return Selector.xpath.pseudos.nth("position() ", m);
2929
+ },
2930
+ 'nth-last-of-type': function(m) {
2931
+ return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m);
2932
+ },
2933
+ 'first-of-type': function(m) {
2934
+ m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m);
2935
+ },
2936
+ 'last-of-type': function(m) {
2937
+ m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m);
2938
+ },
2939
+ 'only-of-type': function(m) {
2940
+ var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m);
2941
+ },
2942
+ nth: function(fragment, m) {
2943
+ var mm, formula = m[6], predicate;
2944
+ if (formula == 'even') formula = '2n+0';
2945
+ if (formula == 'odd') formula = '2n+1';
2946
+ if (mm = formula.match(/^(\d+)$/)) // digit only
2947
+ return '[' + fragment + "= " + mm[1] + ']';
2948
+ if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
2949
+ if (mm[1] == "-") mm[1] = -1;
2950
+ var a = mm[1] ? Number(mm[1]) : 1;
2951
+ var b = mm[2] ? Number(mm[2]) : 0;
2952
+ predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " +
2953
+ "((#{fragment} - #{b}) div #{a} >= 0)]";
2954
+ return new Template(predicate).evaluate({
2955
+ fragment: fragment, a: a, b: b });
2956
+ }
2957
+ }
2958
+ }
2959
+ },
2960
+
2961
+ criteria: {
2962
+ tagName: 'n = h.tagName(n, r, "#{1}", c); c = false;',
2963
+ className: 'n = h.className(n, r, "#{1}", c); c = false;',
2964
+ id: 'n = h.id(n, r, "#{1}", c); c = false;',
2965
+ attrPresence: 'n = h.attrPresence(n, r, "#{1}"); c = false;',
2966
+ attr: function(m) {
2967
+ m[3] = (m[5] || m[6]);
2968
+ return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}"); c = false;').evaluate(m);
2969
+ },
2970
+ pseudo: function(m) {
2971
+ if (m[6]) m[6] = m[6].replace(/"/g, '\\"');
2972
+ return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);
2973
+ },
2974
+ descendant: 'c = "descendant";',
2975
+ child: 'c = "child";',
2976
+ adjacent: 'c = "adjacent";',
2977
+ laterSibling: 'c = "laterSibling";'
2978
+ },
2979
+
2980
+ patterns: {
2981
+ // combinators must be listed first
2982
+ // (and descendant needs to be last combinator)
2983
+ laterSibling: /^\s*~\s*/,
2984
+ child: /^\s*>\s*/,
2985
+ adjacent: /^\s*\+\s*/,
2986
+ descendant: /^\s/,
2987
+
2988
+ // selectors follow
2989
+ tagName: /^\s*(\*|[\w\-]+)(\b|$)?/,
2990
+ id: /^#([\w\-\*]+)(\b|$)/,
2991
+ className: /^\.([\w\-\*]+)(\b|$)/,
2992
+ pseudo: /^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s)|(?=:))/,
2993
+ attrPresence: /^\[([\w]+)\]/,
2994
+ attr: /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/
2995
+ },
2996
+
2997
+ // for Selector.match and Element#match
2998
+ assertions: {
2999
+ tagName: function(element, matches) {
3000
+ return matches[1].toUpperCase() == element.tagName.toUpperCase();
3001
+ },
3002
+
3003
+ className: function(element, matches) {
3004
+ return Element.hasClassName(element, matches[1]);
3005
+ },
3006
+
3007
+ id: function(element, matches) {
3008
+ return element.id === matches[1];
3009
+ },
3010
+
3011
+ attrPresence: function(element, matches) {
3012
+ return Element.hasAttribute(element, matches[1]);
3013
+ },
3014
+
3015
+ attr: function(element, matches) {
3016
+ var nodeValue = Element.readAttribute(element, matches[1]);
3017
+ return Selector.operators[matches[2]](nodeValue, matches[3]);
3018
+ }
3019
+ },
3020
+
3021
+ handlers: {
3022
+ // UTILITY FUNCTIONS
3023
+ // joins two collections
3024
+ concat: function(a, b) {
3025
+ for (var i = 0, node; node = b[i]; i++)
3026
+ a.push(node);
3027
+ return a;
3028
+ },
3029
+
3030
+ // marks an array of nodes for counting
3031
+ mark: function(nodes) {
3032
+ for (var i = 0, node; node = nodes[i]; i++)
3033
+ node._counted = true;
3034
+ return nodes;
3035
+ },
3036
+
3037
+ unmark: function(nodes) {
3038
+ for (var i = 0, node; node = nodes[i]; i++)
3039
+ node._counted = undefined;
3040
+ return nodes;
3041
+ },
3042
+
3043
+ // mark each child node with its position (for nth calls)
3044
+ // "ofType" flag indicates whether we're indexing for nth-of-type
3045
+ // rather than nth-child
3046
+ index: function(parentNode, reverse, ofType) {
3047
+ parentNode._counted = true;
3048
+ if (reverse) {
3049
+ for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) {
3050
+ var node = nodes[i];
3051
+ if (node.nodeType == 1 && (!ofType || node._counted)) node.nodeIndex = j++;
3052
+ }
3053
+ } else {
3054
+ for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++)
3055
+ if (node.nodeType == 1 && (!ofType || node._counted)) node.nodeIndex = j++;
3056
+ }
3057
+ },
3058
+
3059
+ // filters out duplicates and extends all nodes
3060
+ unique: function(nodes) {
3061
+ if (nodes.length == 0) return nodes;
3062
+ var results = [], n;
3063
+ for (var i = 0, l = nodes.length; i < l; i++)
3064
+ if (!(n = nodes[i])._counted) {
3065
+ n._counted = true;
3066
+ results.push(Element.extend(n));
3067
+ }
3068
+ return Selector.handlers.unmark(results);
3069
+ },
3070
+
3071
+ // COMBINATOR FUNCTIONS
3072
+ descendant: function(nodes) {
3073
+ var h = Selector.handlers;
3074
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3075
+ h.concat(results, node.getElementsByTagName('*'));
3076
+ return results;
3077
+ },
3078
+
3079
+ child: function(nodes) {
3080
+ var h = Selector.handlers;
3081
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3082
+ for (var j = 0, child; child = node.childNodes[j]; j++)
3083
+ if (child.nodeType == 1 && child.tagName != '!') results.push(child);
3084
+ }
3085
+ return results;
3086
+ },
3087
+
3088
+ adjacent: function(nodes) {
3089
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3090
+ var next = this.nextElementSibling(node);
3091
+ if (next) results.push(next);
3092
+ }
3093
+ return results;
3094
+ },
3095
+
3096
+ laterSibling: function(nodes) {
3097
+ var h = Selector.handlers;
3098
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3099
+ h.concat(results, Element.nextSiblings(node));
3100
+ return results;
3101
+ },
3102
+
3103
+ nextElementSibling: function(node) {
3104
+ while (node = node.nextSibling)
3105
+ if (node.nodeType == 1) return node;
3106
+ return null;
3107
+ },
3108
+
3109
+ previousElementSibling: function(node) {
3110
+ while (node = node.previousSibling)
3111
+ if (node.nodeType == 1) return node;
3112
+ return null;
3113
+ },
3114
+
3115
+ // TOKEN FUNCTIONS
3116
+ tagName: function(nodes, root, tagName, combinator) {
3117
+ tagName = tagName.toUpperCase();
3118
+ var results = [], h = Selector.handlers;
3119
+ if (nodes) {
3120
+ if (combinator) {
3121
+ // fastlane for ordinary descendant combinators
3122
+ if (combinator == "descendant") {
3123
+ for (var i = 0, node; node = nodes[i]; i++)
3124
+ h.concat(results, node.getElementsByTagName(tagName));
3125
+ return results;
3126
+ } else nodes = this[combinator](nodes);
3127
+ if (tagName == "*") return nodes;
3128
+ }
3129
+ for (var i = 0, node; node = nodes[i]; i++)
3130
+ if (node.tagName.toUpperCase() == tagName) results.push(node);
3131
+ return results;
3132
+ } else return root.getElementsByTagName(tagName);
3133
+ },
3134
+
3135
+ id: function(nodes, root, id, combinator) {
3136
+ var targetNode = $(id), h = Selector.handlers;
3137
+ if (!targetNode) return [];
3138
+ if (!nodes && root == document) return [targetNode];
3139
+ if (nodes) {
3140
+ if (combinator) {
3141
+ if (combinator == 'child') {
3142
+ for (var i = 0, node; node = nodes[i]; i++)
3143
+ if (targetNode.parentNode == node) return [targetNode];
3144
+ } else if (combinator == 'descendant') {
3145
+ for (var i = 0, node; node = nodes[i]; i++)
3146
+ if (Element.descendantOf(targetNode, node)) return [targetNode];
3147
+ } else if (combinator == 'adjacent') {
3148
+ for (var i = 0, node; node = nodes[i]; i++)
3149
+ if (Selector.handlers.previousElementSibling(targetNode) == node)
3150
+ return [targetNode];
3151
+ } else nodes = h[combinator](nodes);
3152
+ }
3153
+ for (var i = 0, node; node = nodes[i]; i++)
3154
+ if (node == targetNode) return [targetNode];
3155
+ return [];
3156
+ }
3157
+ return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : [];
3158
+ },
3159
+
3160
+ className: function(nodes, root, className, combinator) {
3161
+ if (nodes && combinator) nodes = this[combinator](nodes);
3162
+ return Selector.handlers.byClassName(nodes, root, className);
3163
+ },
3164
+
3165
+ byClassName: function(nodes, root, className) {
3166
+ if (!nodes) nodes = Selector.handlers.descendant([root]);
3167
+ var needle = ' ' + className + ' ';
3168
+ for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) {
3169
+ nodeClassName = node.className;
3170
+ if (nodeClassName.length == 0) continue;
3171
+ if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle))
3172
+ results.push(node);
3173
+ }
3174
+ return results;
3175
+ },
3176
+
3177
+ attrPresence: function(nodes, root, attr) {
3178
+ if (!nodes) nodes = root.getElementsByTagName("*");
3179
+ var results = [];
3180
+ for (var i = 0, node; node = nodes[i]; i++)
3181
+ if (Element.hasAttribute(node, attr)) results.push(node);
3182
+ return results;
3183
+ },
3184
+
3185
+ attr: function(nodes, root, attr, value, operator) {
3186
+ if (!nodes) nodes = root.getElementsByTagName("*");
3187
+ var handler = Selector.operators[operator], results = [];
3188
+ for (var i = 0, node; node = nodes[i]; i++) {
3189
+ var nodeValue = Element.readAttribute(node, attr);
3190
+ if (nodeValue === null) continue;
3191
+ if (handler(nodeValue, value)) results.push(node);
3192
+ }
3193
+ return results;
3194
+ },
3195
+
3196
+ pseudo: function(nodes, name, value, root, combinator) {
3197
+ if (nodes && combinator) nodes = this[combinator](nodes);
3198
+ if (!nodes) nodes = root.getElementsByTagName("*");
3199
+ return Selector.pseudos[name](nodes, value, root);
3200
+ }
3201
+ },
3202
+
3203
+ pseudos: {
3204
+ 'first-child': function(nodes, value, root) {
3205
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3206
+ if (Selector.handlers.previousElementSibling(node)) continue;
3207
+ results.push(node);
3208
+ }
3209
+ return results;
3210
+ },
3211
+ 'last-child': function(nodes, value, root) {
3212
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3213
+ if (Selector.handlers.nextElementSibling(node)) continue;
3214
+ results.push(node);
3215
+ }
3216
+ return results;
3217
+ },
3218
+ 'only-child': function(nodes, value, root) {
3219
+ var h = Selector.handlers;
3220
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3221
+ if (!h.previousElementSibling(node) && !h.nextElementSibling(node))
3222
+ results.push(node);
3223
+ return results;
3224
+ },
3225
+ 'nth-child': function(nodes, formula, root) {
3226
+ return Selector.pseudos.nth(nodes, formula, root);
3227
+ },
3228
+ 'nth-last-child': function(nodes, formula, root) {
3229
+ return Selector.pseudos.nth(nodes, formula, root, true);
3230
+ },
3231
+ 'nth-of-type': function(nodes, formula, root) {
3232
+ return Selector.pseudos.nth(nodes, formula, root, false, true);
3233
+ },
3234
+ 'nth-last-of-type': function(nodes, formula, root) {
3235
+ return Selector.pseudos.nth(nodes, formula, root, true, true);
3236
+ },
3237
+ 'first-of-type': function(nodes, formula, root) {
3238
+ return Selector.pseudos.nth(nodes, "1", root, false, true);
3239
+ },
3240
+ 'last-of-type': function(nodes, formula, root) {
3241
+ return Selector.pseudos.nth(nodes, "1", root, true, true);
3242
+ },
3243
+ 'only-of-type': function(nodes, formula, root) {
3244
+ var p = Selector.pseudos;
3245
+ return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root);
3246
+ },
3247
+
3248
+ // handles the an+b logic
3249
+ getIndices: function(a, b, total) {
3250
+ if (a == 0) return b > 0 ? [b] : [];
3251
+ return $R(1, total).inject([], function(memo, i) {
3252
+ if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
3253
+ return memo;
3254
+ });
3255
+ },
3256
+
3257
+ // handles nth(-last)-child, nth(-last)-of-type, and (first|last)-of-type
3258
+ nth: function(nodes, formula, root, reverse, ofType) {
3259
+ if (nodes.length == 0) return [];
3260
+ if (formula == 'even') formula = '2n+0';
3261
+ if (formula == 'odd') formula = '2n+1';
3262
+ var h = Selector.handlers, results = [], indexed = [], m;
3263
+ h.mark(nodes);
3264
+ for (var i = 0, node; node = nodes[i]; i++) {
3265
+ if (!node.parentNode._counted) {
3266
+ h.index(node.parentNode, reverse, ofType);
3267
+ indexed.push(node.parentNode);
3268
+ }
3269
+ }
3270
+ if (formula.match(/^\d+$/)) { // just a number
3271
+ formula = Number(formula);
3272
+ for (var i = 0, node; node = nodes[i]; i++)
3273
+ if (node.nodeIndex == formula) results.push(node);
3274
+ } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
3275
+ if (m[1] == "-") m[1] = -1;
3276
+ var a = m[1] ? Number(m[1]) : 1;
3277
+ var b = m[2] ? Number(m[2]) : 0;
3278
+ var indices = Selector.pseudos.getIndices(a, b, nodes.length);
3279
+ for (var i = 0, node, l = indices.length; node = nodes[i]; i++) {
3280
+ for (var j = 0; j < l; j++)
3281
+ if (node.nodeIndex == indices[j]) results.push(node);
3282
+ }
3283
+ }
3284
+ h.unmark(nodes);
3285
+ h.unmark(indexed);
3286
+ return results;
3287
+ },
3288
+
3289
+ 'empty': function(nodes, value, root) {
3290
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3291
+ // IE treats comments as element nodes
3292
+ if (node.tagName == '!' || (node.firstChild && !node.innerHTML.match(/^\s*$/))) continue;
3293
+ results.push(node);
3294
+ }
3295
+ return results;
3296
+ },
3297
+
3298
+ 'not': function(nodes, selector, root) {
3299
+ var h = Selector.handlers, selectorType, m;
3300
+ var exclusions = new Selector(selector).findElements(root);
3301
+ h.mark(exclusions);
3302
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3303
+ if (!node._counted) results.push(node);
3304
+ h.unmark(exclusions);
3305
+ return results;
3306
+ },
3307
+
3308
+ 'enabled': function(nodes, value, root) {
3309
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3310
+ if (!node.disabled) results.push(node);
3311
+ return results;
3312
+ },
3313
+
3314
+ 'disabled': function(nodes, value, root) {
3315
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3316
+ if (node.disabled) results.push(node);
3317
+ return results;
3318
+ },
3319
+
3320
+ 'checked': function(nodes, value, root) {
3321
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3322
+ if (node.checked) results.push(node);
3323
+ return results;
3324
+ }
3325
+ },
3326
+
3327
+ operators: {
3328
+ '=': function(nv, v) { return nv == v; },
3329
+ '!=': function(nv, v) { return nv != v; },
3330
+ '^=': function(nv, v) { return nv.startsWith(v); },
3331
+ '$=': function(nv, v) { return nv.endsWith(v); },
3332
+ '*=': function(nv, v) { return nv.include(v); },
3333
+ '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); },
3334
+ '|=': function(nv, v) { return ('-' + nv.toUpperCase() + '-').include('-' + v.toUpperCase() + '-'); }
3335
+ },
3336
+
3337
+ matchElements: function(elements, expression) {
3338
+ var matches = new Selector(expression).findElements(), h = Selector.handlers;
3339
+ h.mark(matches);
3340
+ for (var i = 0, results = [], element; element = elements[i]; i++)
3341
+ if (element._counted) results.push(element);
3342
+ h.unmark(matches);
3343
+ return results;
3344
+ },
3345
+
3346
+ findElement: function(elements, expression, index) {
3347
+ if (Object.isNumber(expression)) {
3348
+ index = expression; expression = false;
3349
+ }
3350
+ return Selector.matchElements(elements, expression || '*')[index || 0];
3351
+ },
3352
+
3353
+ findChildElements: function(element, expressions) {
3354
+ var exprs = expressions.join(',');
3355
+ expressions = [];
3356
+ exprs.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) {
3357
+ expressions.push(m[1].strip());
3358
+ });
3359
+ var results = [], h = Selector.handlers;
3360
+ for (var i = 0, l = expressions.length, selector; i < l; i++) {
3361
+ selector = new Selector(expressions[i].strip());
3362
+ h.concat(results, selector.findElements(element));
3363
+ }
3364
+ return (l > 1) ? h.unique(results) : results;
3365
+ }
3366
+ });
3367
+
3368
+ if (Prototype.Browser.IE) {
3369
+ // IE returns comment nodes on getElementsByTagName("*").
3370
+ // Filter them out.
3371
+ Selector.handlers.concat = function(a, b) {
3372
+ for (var i = 0, node; node = b[i]; i++)
3373
+ if (node.tagName !== "!") a.push(node);
3374
+ return a;
3375
+ };
3376
+ }
3377
+
3378
+ function $$() {
3379
+ return Selector.findChildElements(document, $A(arguments));
3380
+ }
3381
+ var Form = {
3382
+ reset: function(form) {
3383
+ $(form).reset();
3384
+ return form;
3385
+ },
3386
+
3387
+ serializeElements: function(elements, options) {
3388
+ if (typeof options != 'object') options = { hash: !!options };
3389
+ else if (Object.isUndefined(options.hash)) options.hash = true;
3390
+ var key, value, submitted = false, submit = options.submit;
3391
+
3392
+ var data = elements.inject({ }, function(result, element) {
3393
+ if (!element.disabled && element.name) {
3394
+ key = element.name; value = $(element).getValue();
3395
+ if (value != null && (element.type != 'submit' || (!submitted &&
3396
+ submit !== false && (!submit || key == submit) && (submitted = true)))) {
3397
+ if (key in result) {
3398
+ // a key is already present; construct an array of values
3399
+ if (!Object.isArray(result[key])) result[key] = [result[key]];
3400
+ result[key].push(value);
3401
+ }
3402
+ else result[key] = value;
3403
+ }
3404
+ }
3405
+ return result;
3406
+ });
3407
+
3408
+ return options.hash ? data : Object.toQueryString(data);
3409
+ }
3410
+ };
3411
+
3412
+ Form.Methods = {
3413
+ serialize: function(form, options) {
3414
+ return Form.serializeElements(Form.getElements(form), options);
3415
+ },
3416
+
3417
+ getElements: function(form) {
3418
+ return $A($(form).getElementsByTagName('*')).inject([],
3419
+ function(elements, child) {
3420
+ if (Form.Element.Serializers[child.tagName.toLowerCase()])
3421
+ elements.push(Element.extend(child));
3422
+ return elements;
3423
+ }
3424
+ );
3425
+ },
3426
+
3427
+ getInputs: function(form, typeName, name) {
3428
+ form = $(form);
3429
+ var inputs = form.getElementsByTagName('input');
3430
+
3431
+ if (!typeName && !name) return $A(inputs).map(Element.extend);
3432
+
3433
+ for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) {
3434
+ var input = inputs[i];
3435
+ if ((typeName && input.type != typeName) || (name && input.name != name))
3436
+ continue;
3437
+ matchingInputs.push(Element.extend(input));
3438
+ }
3439
+
3440
+ return matchingInputs;
3441
+ },
3442
+
3443
+ disable: function(form) {
3444
+ form = $(form);
3445
+ Form.getElements(form).invoke('disable');
3446
+ return form;
3447
+ },
3448
+
3449
+ enable: function(form) {
3450
+ form = $(form);
3451
+ Form.getElements(form).invoke('enable');
3452
+ return form;
3453
+ },
3454
+
3455
+ findFirstElement: function(form) {
3456
+ var elements = $(form).getElements().findAll(function(element) {
3457
+ return 'hidden' != element.type && !element.disabled;
3458
+ });
3459
+ var firstByIndex = elements.findAll(function(element) {
3460
+ return element.hasAttribute('tabIndex') && element.tabIndex >= 0;
3461
+ }).sortBy(function(element) { return element.tabIndex }).first();
3462
+
3463
+ return firstByIndex ? firstByIndex : elements.find(function(element) {
3464
+ return ['input', 'select', 'textarea'].include(element.tagName.toLowerCase());
3465
+ });
3466
+ },
3467
+
3468
+ focusFirstElement: function(form) {
3469
+ form = $(form);
3470
+ form.findFirstElement().activate();
3471
+ return form;
3472
+ },
3473
+
3474
+ request: function(form, options) {
3475
+ form = $(form), options = Object.clone(options || { });
3476
+
3477
+ var params = options.parameters, action = form.readAttribute('action') || '';
3478
+ if (action.blank()) action = window.location.href;
3479
+ options.parameters = form.serialize(true);
3480
+
3481
+ if (params) {
3482
+ if (Object.isString(params)) params = params.toQueryParams();
3483
+ Object.extend(options.parameters, params);
3484
+ }
3485
+
3486
+ if (form.hasAttribute('method') && !options.method)
3487
+ options.method = form.method;
3488
+
3489
+ return new Ajax.Request(action, options);
3490
+ }
3491
+ };
3492
+
3493
+ /*--------------------------------------------------------------------------*/
3494
+
3495
+ Form.Element = {
3496
+ focus: function(element) {
3497
+ $(element).focus();
3498
+ return element;
3499
+ },
3500
+
3501
+ select: function(element) {
3502
+ $(element).select();
3503
+ return element;
3504
+ }
3505
+ };
3506
+
3507
+ Form.Element.Methods = {
3508
+ serialize: function(element) {
3509
+ element = $(element);
3510
+ if (!element.disabled && element.name) {
3511
+ var value = element.getValue();
3512
+ if (value != undefined) {
3513
+ var pair = { };
3514
+ pair[element.name] = value;
3515
+ return Object.toQueryString(pair);
3516
+ }
3517
+ }
3518
+ return '';
3519
+ },
3520
+
3521
+ getValue: function(element) {
3522
+ element = $(element);
3523
+ var method = element.tagName.toLowerCase();
3524
+ return Form.Element.Serializers[method](element);
3525
+ },
3526
+
3527
+ setValue: function(element, value) {
3528
+ element = $(element);
3529
+ var method = element.tagName.toLowerCase();
3530
+ Form.Element.Serializers[method](element, value);
3531
+ return element;
3532
+ },
3533
+
3534
+ clear: function(element) {
3535
+ $(element).value = '';
3536
+ return element;
3537
+ },
3538
+
3539
+ present: function(element) {
3540
+ return $(element).value != '';
3541
+ },
3542
+
3543
+ activate: function(element) {
3544
+ element = $(element);
3545
+ try {
3546
+ element.focus();
3547
+ if (element.select && (element.tagName.toLowerCase() != 'input' ||
3548
+ !['button', 'reset', 'submit'].include(element.type)))
3549
+ element.select();
3550
+ } catch (e) { }
3551
+ return element;
3552
+ },
3553
+
3554
+ disable: function(element) {
3555
+ element = $(element);
3556
+ element.blur();
3557
+ element.disabled = true;
3558
+ return element;
3559
+ },
3560
+
3561
+ enable: function(element) {
3562
+ element = $(element);
3563
+ element.disabled = false;
3564
+ return element;
3565
+ }
3566
+ };
3567
+
3568
+ /*--------------------------------------------------------------------------*/
3569
+
3570
+ var Field = Form.Element;
3571
+ var $F = Form.Element.Methods.getValue;
3572
+
3573
+ /*--------------------------------------------------------------------------*/
3574
+
3575
+ Form.Element.Serializers = {
3576
+ input: function(element, value) {
3577
+ switch (element.type.toLowerCase()) {
3578
+ case 'checkbox':
3579
+ case 'radio':
3580
+ return Form.Element.Serializers.inputSelector(element, value);
3581
+ default:
3582
+ return Form.Element.Serializers.textarea(element, value);
3583
+ }
3584
+ },
3585
+
3586
+ inputSelector: function(element, value) {
3587
+ if (Object.isUndefined(value)) return element.checked ? element.value : null;
3588
+ else element.checked = !!value;
3589
+ },
3590
+
3591
+ textarea: function(element, value) {
3592
+ if (Object.isUndefined(value)) return element.value;
3593
+ else element.value = value;
3594
+ },
3595
+
3596
+ select: function(element, index) {
3597
+ if (Object.isUndefined(index))
3598
+ return this[element.type == 'select-one' ?
3599
+ 'selectOne' : 'selectMany'](element);
3600
+ else {
3601
+ var opt, value, single = !Object.isArray(index);
3602
+ for (var i = 0, length = element.length; i < length; i++) {
3603
+ opt = element.options[i];
3604
+ value = this.optionValue(opt);
3605
+ if (single) {
3606
+ if (value == index) {
3607
+ opt.selected = true;
3608
+ return;
3609
+ }
3610
+ }
3611
+ else opt.selected = index.include(value);
3612
+ }
3613
+ }
3614
+ },
3615
+
3616
+ selectOne: function(element) {
3617
+ var index = element.selectedIndex;
3618
+ return index >= 0 ? this.optionValue(element.options[index]) : null;
3619
+ },
3620
+
3621
+ selectMany: function(element) {
3622
+ var values, length = element.length;
3623
+ if (!length) return null;
3624
+
3625
+ for (var i = 0, values = []; i < length; i++) {
3626
+ var opt = element.options[i];
3627
+ if (opt.selected) values.push(this.optionValue(opt));
3628
+ }
3629
+ return values;
3630
+ },
3631
+
3632
+ optionValue: function(opt) {
3633
+ // extend element because hasAttribute may not be native
3634
+ return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text;
3635
+ }
3636
+ };
3637
+
3638
+ /*--------------------------------------------------------------------------*/
3639
+
3640
+ Abstract.TimedObserver = Class.create(PeriodicalExecuter, {
3641
+ initialize: function($super, element, frequency, callback) {
3642
+ $super(callback, frequency);
3643
+ this.element = $(element);
3644
+ this.lastValue = this.getValue();
3645
+ },
3646
+
3647
+ execute: function() {
3648
+ var value = this.getValue();
3649
+ if (Object.isString(this.lastValue) && Object.isString(value) ?
3650
+ this.lastValue != value : String(this.lastValue) != String(value)) {
3651
+ this.callback(this.element, value);
3652
+ this.lastValue = value;
3653
+ }
3654
+ }
3655
+ });
3656
+
3657
+ Form.Element.Observer = Class.create(Abstract.TimedObserver, {
3658
+ getValue: function() {
3659
+ return Form.Element.getValue(this.element);
3660
+ }
3661
+ });
3662
+
3663
+ Form.Observer = Class.create(Abstract.TimedObserver, {
3664
+ getValue: function() {
3665
+ return Form.serialize(this.element);
3666
+ }
3667
+ });
3668
+
3669
+ /*--------------------------------------------------------------------------*/
3670
+
3671
+ Abstract.EventObserver = Class.create({
3672
+ initialize: function(element, callback) {
3673
+ this.element = $(element);
3674
+ this.callback = callback;
3675
+
3676
+ this.lastValue = this.getValue();
3677
+ if (this.element.tagName.toLowerCase() == 'form')
3678
+ this.registerFormCallbacks();
3679
+ else
3680
+ this.registerCallback(this.element);
3681
+ },
3682
+
3683
+ onElementEvent: function() {
3684
+ var value = this.getValue();
3685
+ if (this.lastValue != value) {
3686
+ this.callback(this.element, value);
3687
+ this.lastValue = value;
3688
+ }
3689
+ },
3690
+
3691
+ registerFormCallbacks: function() {
3692
+ Form.getElements(this.element).each(this.registerCallback, this);
3693
+ },
3694
+
3695
+ registerCallback: function(element) {
3696
+ if (element.type) {
3697
+ switch (element.type.toLowerCase()) {
3698
+ case 'checkbox':
3699
+ case 'radio':
3700
+ Event.observe(element, 'click', this.onElementEvent.bind(this));
3701
+ break;
3702
+ default:
3703
+ Event.observe(element, 'change', this.onElementEvent.bind(this));
3704
+ break;
3705
+ }
3706
+ }
3707
+ }
3708
+ });
3709
+
3710
+ Form.Element.EventObserver = Class.create(Abstract.EventObserver, {
3711
+ getValue: function() {
3712
+ return Form.Element.getValue(this.element);
3713
+ }
3714
+ });
3715
+
3716
+ Form.EventObserver = Class.create(Abstract.EventObserver, {
3717
+ getValue: function() {
3718
+ return Form.serialize(this.element);
3719
+ }
3720
+ });
3721
+ if (!window.Event) var Event = { };
3722
+
3723
+ Object.extend(Event, {
3724
+ KEY_BACKSPACE: 8,
3725
+ KEY_TAB: 9,
3726
+ KEY_RETURN: 13,
3727
+ KEY_ESC: 27,
3728
+ KEY_LEFT: 37,
3729
+ KEY_UP: 38,
3730
+ KEY_RIGHT: 39,
3731
+ KEY_DOWN: 40,
3732
+ KEY_DELETE: 46,
3733
+ KEY_HOME: 36,
3734
+ KEY_END: 35,
3735
+ KEY_PAGEUP: 33,
3736
+ KEY_PAGEDOWN: 34,
3737
+ KEY_INSERT: 45,
3738
+
3739
+ cache: { },
3740
+
3741
+ relatedTarget: function(event) {
3742
+ var element;
3743
+ switch(event.type) {
3744
+ case 'mouseover': element = event.fromElement; break;
3745
+ case 'mouseout': element = event.toElement; break;
3746
+ default: return null;
3747
+ }
3748
+ return Element.extend(element);
3749
+ }
3750
+ });
3751
+
3752
+ Event.Methods = (function() {
3753
+ var isButton;
3754
+
3755
+ if (Prototype.Browser.IE) {
3756
+ var buttonMap = { 0: 1, 1: 4, 2: 2 };
3757
+ isButton = function(event, code) {
3758
+ return event.button == buttonMap[code];
3759
+ };
3760
+
3761
+ } else if (Prototype.Browser.WebKit) {
3762
+ isButton = function(event, code) {
3763
+ switch (code) {
3764
+ case 0: return event.which == 1 && !event.metaKey;
3765
+ case 1: return event.which == 1 && event.metaKey;
3766
+ default: return false;
3767
+ }
3768
+ };
3769
+
3770
+ } else {
3771
+ isButton = function(event, code) {
3772
+ return event.which ? (event.which === code + 1) : (event.button === code);
3773
+ };
3774
+ }
3775
+
3776
+ return {
3777
+ isLeftClick: function(event) { return isButton(event, 0) },
3778
+ isMiddleClick: function(event) { return isButton(event, 1) },
3779
+ isRightClick: function(event) { return isButton(event, 2) },
3780
+
3781
+ element: function(event) {
3782
+ var node = Event.extend(event).target;
3783
+ return Element.extend(node.nodeType == Node.TEXT_NODE ? node.parentNode : node);
3784
+ },
3785
+
3786
+ findElement: function(event, expression) {
3787
+ var element = Event.element(event);
3788
+ if (!expression) return element;
3789
+ var elements = [element].concat(element.ancestors());
3790
+ return Selector.findElement(elements, expression, 0);
3791
+ },
3792
+
3793
+ pointer: function(event) {
3794
+ return {
3795
+ x: event.pageX || (event.clientX +
3796
+ (document.documentElement.scrollLeft || document.body.scrollLeft)),
3797
+ y: event.pageY || (event.clientY +
3798
+ (document.documentElement.scrollTop || document.body.scrollTop))
3799
+ };
3800
+ },
3801
+
3802
+ pointerX: function(event) { return Event.pointer(event).x },
3803
+ pointerY: function(event) { return Event.pointer(event).y },
3804
+
3805
+ stop: function(event) {
3806
+ Event.extend(event);
3807
+ event.preventDefault();
3808
+ event.stopPropagation();
3809
+ event.stopped = true;
3810
+ }
3811
+ };
3812
+ })();
3813
+
3814
+ Event.extend = (function() {
3815
+ var methods = Object.keys(Event.Methods).inject({ }, function(m, name) {
3816
+ m[name] = Event.Methods[name].methodize();
3817
+ return m;
3818
+ });
3819
+
3820
+ if (Prototype.Browser.IE) {
3821
+ Object.extend(methods, {
3822
+ stopPropagation: function() { this.cancelBubble = true },
3823
+ preventDefault: function() { this.returnValue = false },
3824
+ inspect: function() { return "[object Event]" }
3825
+ });
3826
+
3827
+ return function(event) {
3828
+ if (!event) return false;
3829
+ if (event._extendedByPrototype) return event;
3830
+
3831
+ event._extendedByPrototype = Prototype.emptyFunction;
3832
+ var pointer = Event.pointer(event);
3833
+ Object.extend(event, {
3834
+ target: event.srcElement,
3835
+ relatedTarget: Event.relatedTarget(event),
3836
+ pageX: pointer.x,
3837
+ pageY: pointer.y
3838
+ });
3839
+ return Object.extend(event, methods);
3840
+ };
3841
+
3842
+ } else {
3843
+ Event.prototype = Event.prototype || document.createEvent("HTMLEvents").__proto__;
3844
+ Object.extend(Event.prototype, methods);
3845
+ return Prototype.K;
3846
+ }
3847
+ })();
3848
+
3849
+ Object.extend(Event, (function() {
3850
+ var cache = Event.cache;
3851
+
3852
+ function getEventID(element) {
3853
+ if (element._eventID) return element._eventID;
3854
+ arguments.callee.id = arguments.callee.id || 1;
3855
+ return element._eventID = ++arguments.callee.id;
3856
+ }
3857
+
3858
+ function getDOMEventName(eventName) {
3859
+ if (eventName && eventName.include(':')) return "dataavailable";
3860
+ return eventName;
3861
+ }
3862
+
3863
+ function getCacheForID(id) {
3864
+ return cache[id] = cache[id] || { };
3865
+ }
3866
+
3867
+ function getWrappersForEventName(id, eventName) {
3868
+ var c = getCacheForID(id);
3869
+ return c[eventName] = c[eventName] || [];
3870
+ }
3871
+
3872
+ function createWrapper(element, eventName, handler) {
3873
+ var id = getEventID(element);
3874
+ var c = getWrappersForEventName(id, eventName);
3875
+ if (c.pluck("handler").include(handler)) return false;
3876
+
3877
+ var wrapper = function(event) {
3878
+ if (!Event || !Event.extend ||
3879
+ (event.eventName && event.eventName != eventName))
3880
+ return false;
3881
+
3882
+ Event.extend(event);
3883
+ handler.call(element, event)
3884
+ };
3885
+
3886
+ wrapper.handler = handler;
3887
+ c.push(wrapper);
3888
+ return wrapper;
3889
+ }
3890
+
3891
+ function findWrapper(id, eventName, handler) {
3892
+ var c = getWrappersForEventName(id, eventName);
3893
+ return c.find(function(wrapper) { return wrapper.handler == handler });
3894
+ }
3895
+
3896
+ function destroyWrapper(id, eventName, handler) {
3897
+ var c = getCacheForID(id);
3898
+ if (!c[eventName]) return false;
3899
+ c[eventName] = c[eventName].without(findWrapper(id, eventName, handler));
3900
+ }
3901
+
3902
+ function destroyCache() {
3903
+ for (var id in cache)
3904
+ for (var eventName in cache[id])
3905
+ cache[id][eventName] = null;
3906
+ }
3907
+
3908
+ if (window.attachEvent) {
3909
+ window.attachEvent("onunload", destroyCache);
3910
+ }
3911
+
3912
+ return {
3913
+ observe: function(element, eventName, handler) {
3914
+ element = $(element);
3915
+ var name = getDOMEventName(eventName);
3916
+
3917
+ var wrapper = createWrapper(element, eventName, handler);
3918
+ if (!wrapper) return element;
3919
+
3920
+ if (element.addEventListener) {
3921
+ element.addEventListener(name, wrapper, false);
3922
+ } else {
3923
+ element.attachEvent("on" + name, wrapper);
3924
+ }
3925
+
3926
+ return element;
3927
+ },
3928
+
3929
+ stopObserving: function(element, eventName, handler) {
3930
+ element = $(element);
3931
+ var id = getEventID(element), name = getDOMEventName(eventName);
3932
+
3933
+ if (!handler && eventName) {
3934
+ getWrappersForEventName(id, eventName).each(function(wrapper) {
3935
+ element.stopObserving(eventName, wrapper.handler);
3936
+ });
3937
+ return element;
3938
+
3939
+ } else if (!eventName) {
3940
+ Object.keys(getCacheForID(id)).each(function(eventName) {
3941
+ element.stopObserving(eventName);
3942
+ });
3943
+ return element;
3944
+ }
3945
+
3946
+ var wrapper = findWrapper(id, eventName, handler);
3947
+ if (!wrapper) return element;
3948
+
3949
+ if (element.removeEventListener) {
3950
+ element.removeEventListener(name, wrapper, false);
3951
+ } else {
3952
+ element.detachEvent("on" + name, wrapper);
3953
+ }
3954
+
3955
+ destroyWrapper(id, eventName, handler);
3956
+
3957
+ return element;
3958
+ },
3959
+
3960
+ fire: function(element, eventName, memo) {
3961
+ element = $(element);
3962
+ if (element == document && document.createEvent && !element.dispatchEvent)
3963
+ element = document.documentElement;
3964
+
3965
+ if (document.createEvent) {
3966
+ var event = document.createEvent("HTMLEvents");
3967
+ event.initEvent("dataavailable", true, true);
3968
+ } else {
3969
+ var event = document.createEventObject();
3970
+ event.eventType = "ondataavailable";
3971
+ }
3972
+
3973
+ event.eventName = eventName;
3974
+ event.memo = memo || { };
3975
+
3976
+ if (document.createEvent) {
3977
+ element.dispatchEvent(event);
3978
+ } else {
3979
+ element.fireEvent(event.eventType, event);
3980
+ }
3981
+
3982
+ return Event.extend(event);
3983
+ }
3984
+ };
3985
+ })());
3986
+
3987
+ Object.extend(Event, Event.Methods);
3988
+
3989
+ Element.addMethods({
3990
+ fire: Event.fire,
3991
+ observe: Event.observe,
3992
+ stopObserving: Event.stopObserving
3993
+ });
3994
+
3995
+ Object.extend(document, {
3996
+ fire: Element.Methods.fire.methodize(),
3997
+ observe: Element.Methods.observe.methodize(),
3998
+ stopObserving: Element.Methods.stopObserving.methodize()
3999
+ });
4000
+
4001
+ (function() {
4002
+ /* Support for the DOMContentLoaded event is based on work by Dan Webb,
4003
+ Matthias Miller, Dean Edwards and John Resig. */
4004
+
4005
+ var timer, fired = false;
4006
+
4007
+ function fireContentLoadedEvent() {
4008
+ if (fired) return;
4009
+ if (timer) window.clearInterval(timer);
4010
+ document.fire("dom:loaded");
4011
+ fired = true;
4012
+ }
4013
+
4014
+ if (document.addEventListener) {
4015
+ if (Prototype.Browser.WebKit) {
4016
+ timer = window.setInterval(function() {
4017
+ if (/loaded|complete/.test(document.readyState))
4018
+ fireContentLoadedEvent();
4019
+ }, 0);
4020
+
4021
+ Event.observe(window, "load", fireContentLoadedEvent);
4022
+
4023
+ } else {
4024
+ document.addEventListener("DOMContentLoaded",
4025
+ fireContentLoadedEvent, false);
4026
+ }
4027
+
4028
+ } else {
4029
+ document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");
4030
+ $("__onDOMContentLoaded").onreadystatechange = function() {
4031
+ if (this.readyState == "complete") {
4032
+ this.onreadystatechange = null;
4033
+ fireContentLoadedEvent();
4034
+ }
4035
+ };
4036
+ }
4037
+ })();
4038
+ /*------------------------------- DEPRECATED -------------------------------*/
4039
+
4040
+ Hash.toQueryString = Object.toQueryString;
4041
+
4042
+ var Toggle = { display: Element.toggle };
4043
+
4044
+ Element.Methods.childOf = Element.Methods.descendantOf;
4045
+
4046
+ var Insertion = {
4047
+ Before: function(element, content) {
4048
+ return Element.insert(element, {before:content});
4049
+ },
4050
+
4051
+ Top: function(element, content) {
4052
+ return Element.insert(element, {top:content});
4053
+ },
4054
+
4055
+ Bottom: function(element, content) {
4056
+ return Element.insert(element, {bottom:content});
4057
+ },
4058
+
4059
+ After: function(element, content) {
4060
+ return Element.insert(element, {after:content});
4061
+ }
4062
+ };
4063
+
4064
+ var $continue = new Error('"throw $continue" is deprecated, use "return" instead');
4065
+
4066
+ // This should be moved to script.aculo.us; notice the deprecated methods
4067
+ // further below, that map to the newer Element methods.
4068
+ var Position = {
4069
+ // set to true if needed, warning: firefox performance problems
4070
+ // NOT neeeded for page scrolling, only if draggable contained in
4071
+ // scrollable elements
4072
+ includeScrollOffsets: false,
4073
+
4074
+ // must be called before calling withinIncludingScrolloffset, every time the
4075
+ // page is scrolled
4076
+ prepare: function() {
4077
+ this.deltaX = window.pageXOffset
4078
+ || document.documentElement.scrollLeft
4079
+ || document.body.scrollLeft
4080
+ || 0;
4081
+ this.deltaY = window.pageYOffset
4082
+ || document.documentElement.scrollTop
4083
+ || document.body.scrollTop
4084
+ || 0;
4085
+ },
4086
+
4087
+ // caches x/y coordinate pair to use with overlap
4088
+ within: function(element, x, y) {
4089
+ if (this.includeScrollOffsets)
4090
+ return this.withinIncludingScrolloffsets(element, x, y);
4091
+ this.xcomp = x;
4092
+ this.ycomp = y;
4093
+ this.offset = Element.cumulativeOffset(element);
4094
+
4095
+ return (y >= this.offset[1] &&
4096
+ y < this.offset[1] + element.offsetHeight &&
4097
+ x >= this.offset[0] &&
4098
+ x < this.offset[0] + element.offsetWidth);
4099
+ },
4100
+
4101
+ withinIncludingScrolloffsets: function(element, x, y) {
4102
+ var offsetcache = Element.cumulativeScrollOffset(element);
4103
+
4104
+ this.xcomp = x + offsetcache[0] - this.deltaX;
4105
+ this.ycomp = y + offsetcache[1] - this.deltaY;
4106
+ this.offset = Element.cumulativeOffset(element);
4107
+
4108
+ return (this.ycomp >= this.offset[1] &&
4109
+ this.ycomp < this.offset[1] + element.offsetHeight &&
4110
+ this.xcomp >= this.offset[0] &&
4111
+ this.xcomp < this.offset[0] + element.offsetWidth);
4112
+ },
4113
+
4114
+ // within must be called directly before
4115
+ overlap: function(mode, element) {
4116
+ if (!mode) return 0;
4117
+ if (mode == 'vertical')
4118
+ return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
4119
+ element.offsetHeight;
4120
+ if (mode == 'horizontal')
4121
+ return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
4122
+ element.offsetWidth;
4123
+ },
4124
+
4125
+ // Deprecation layer -- use newer Element methods now (1.5.2).
4126
+
4127
+ cumulativeOffset: Element.Methods.cumulativeOffset,
4128
+
4129
+ positionedOffset: Element.Methods.positionedOffset,
4130
+
4131
+ absolutize: function(element) {
4132
+ Position.prepare();
4133
+ return Element.absolutize(element);
4134
+ },
4135
+
4136
+ relativize: function(element) {
4137
+ Position.prepare();
4138
+ return Element.relativize(element);
4139
+ },
4140
+
4141
+ realOffset: Element.Methods.cumulativeScrollOffset,
4142
+
4143
+ offsetParent: Element.Methods.getOffsetParent,
4144
+
4145
+ page: Element.Methods.viewportOffset,
4146
+
4147
+ clone: function(source, target, options) {
4148
+ options = options || { };
4149
+ return Element.clonePosition(target, source, options);
4150
+ }
4151
+ };
4152
+
4153
+ /*--------------------------------------------------------------------------*/
4154
+
4155
+ if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
4156
+ function iter(name) {
4157
+ return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
4158
+ }
4159
+
4160
+ instanceMethods.getElementsByClassName = Prototype.BrowserFeatures.XPath ?
4161
+ function(element, className) {
4162
+ className = className.toString().strip();
4163
+ var cond = /\s/.test(className) ? $w(className).map(iter).join('') : iter(className);
4164
+ return cond ? document._getElementsByXPath('.//*' + cond, element) : [];
4165
+ } : function(element, className) {
4166
+ className = className.toString().strip();
4167
+ var elements = [], classNames = (/\s/.test(className) ? $w(className) : null);
4168
+ if (!classNames && !className) return elements;
4169
+
4170
+ var nodes = $(element).getElementsByTagName('*');
4171
+ className = ' ' + className + ' ';
4172
+
4173
+ for (var i = 0, child, cn; child = nodes[i]; i++) {
4174
+ if (child.className && (cn = ' ' + child.className + ' ') && (cn.include(className) ||
4175
+ (classNames && classNames.all(function(name) {
4176
+ return !name.toString().blank() && cn.include(' ' + name + ' ');
4177
+ }))))
4178
+ elements.push(Element.extend(child));
4179
+ }
4180
+ return elements;
4181
+ };
4182
+
4183
+ return function(className, parentElement) {
4184
+ return $(parentElement || document.body).getElementsByClassName(className);
4185
+ };
4186
+ }(Element.Methods);
4187
+
4188
+ /*--------------------------------------------------------------------------*/
4189
+
4190
+ Element.ClassNames = Class.create();
4191
+ Element.ClassNames.prototype = {
4192
+ initialize: function(element) {
4193
+ this.element = $(element);
4194
+ },
4195
+
4196
+ _each: function(iterator) {
4197
+ this.element.className.split(/\s+/).select(function(name) {
4198
+ return name.length > 0;
4199
+ })._each(iterator);
4200
+ },
4201
+
4202
+ set: function(className) {
4203
+ this.element.className = className;
4204
+ },
4205
+
4206
+ add: function(classNameToAdd) {
4207
+ if (this.include(classNameToAdd)) return;
4208
+ this.set($A(this).concat(classNameToAdd).join(' '));
4209
+ },
4210
+
4211
+ remove: function(classNameToRemove) {
4212
+ if (!this.include(classNameToRemove)) return;
4213
+ this.set($A(this).without(classNameToRemove).join(' '));
4214
+ },
4215
+
4216
+ toString: function() {
4217
+ return $A(this).join(' ');
4218
+ }
4219
+ };
4220
+
4221
+ Object.extend(Element.ClassNames.prototype, Enumerable);
4222
+
4223
+ /*--------------------------------------------------------------------------*/
4224
+
4225
+ Element.addMethods();