Fx.Slide=new Class({Extends:Fx,options:{mode:"vertical"},initialize:function(a,b){this.addEvent("complete",function(){(this.open=this.wrapper["offset"+this.layout.capitalize()]!=0)&&Browser.Engine.webkit419&&this.element.dispose().inject(this.wrapper)},true);this.element=this.subject=$(a);this.parent(b);this.wrapper=this.element.retrieve("wrapper")||(new Element("div",{styles:$extend(this.element.getStyles("margin","position"),{overflow:"hidden"})})).wraps(this.element);this.element.store("wrapper",
this.wrapper).setStyle("margin",0);this.now=[];this.open=true},vertical:function(){this.margin="margin-top";this.layout="height";this.offset=this.element.offsetHeight},horizontal:function(){this.margin="margin-left";this.layout="width";this.offset=this.element.offsetWidth},set:function(a){this.element.setStyle(this.margin,a[0]);this.wrapper.setStyle(this.layout,a[1]);return this},compute:function(a,b,c){var d=[];(2).times(function(e){d[e]=Fx.compute(a[e],b[e],c)});return d},start:function(a,b){if(!this.check(arguments.callee,
a,b))return this;this[b||this.options.mode]();var c=this.element.getStyle(this.margin).toInt(),d=this.wrapper.getStyle(this.layout).toInt(),e=[[c,d],[0,this.offset]];c=[[c,d],[-this.offset,0]];var f;switch(a){case "in":f=e;break;case "out":f=c;break;case "toggle":f=this.wrapper["offset"+this.layout.capitalize()]==0?e:c}return this.parent(f[0],f[1])},slideIn:function(a){return this.start("in",a)},slideOut:function(a){return this.start("out",a)},hide:function(a){this[a||this.options.mode]();this.open=
false;return this.set([-this.offset,0])},show:function(a){this[a||this.options.mode]();this.open=true;return this.set([0,this.offset])},toggle:function(a){return this.start("toggle",a)}});Element.Properties.slide={set:function(a){var b=this.retrieve("slide");b&&b.cancel();return this.eliminate("slide").store("slide:options",$extend({link:"cancel"},a))},get:function(a){if(a||!this.retrieve("slide")){if(a||!this.retrieve("slide:options"))this.set("slide",a);this.store("slide",new Fx.Slide(this,this.retrieve("slide:options")))}return this.retrieve("slide")}};
Element.implement({slide:function(a,b){a=a||"toggle";var c=this.get("slide"),d;switch(a){case "hide":c.hide(b);break;case "show":c.show(b);break;case "toggle":a=this.retrieve("slide:flag",c.open);c[a?"slideOut":"slideIn"](b);this.store("slide:flag",!a);d=true;break;default:c.start(a,b)}d||this.eliminate("slide:flag");return this}});
Fx.Scroll=new Class({Extends:Fx,options:{offset:{x:0,y:0},wheelStops:true},initialize:function(a,b){this.element=this.subject=$(a);this.parent(b);var c=this.cancel.bind(this,false);if($type(this.element)!="element")this.element=$(this.element.getDocument().body);var d=this.element;if(this.options.wheelStops){this.addEvent("start",function(){d.addEvent("mousewheel",c)},true);this.addEvent("complete",function(){d.removeEvent("mousewheel",c)},true)}},set:function(){var a=Array.flatten(arguments);this.element.scrollTo(a[0],
a[1])},compute:function(a,b,c){var d=[];(2).times(function(e){d.push(Fx.compute(a[e],b[e],c))});return d},start:function(a,b){if(!this.check(arguments.callee,a,b))return this;var c=this.element.getSize(),d=this.element.getScrollSize(),e=this.element.getScroll(),f={x:a,y:b};for(var g in f){var h=d[g]-c[g];f[g]=$chk(f[g])?$type(f[g])=="number"?f[g].limit(0,h):h:e[g];f[g]+=this.options.offset[g]}return this.parent([e.x,e.y],[f.x,f.y])},toTop:function(){return this.start(false,0)},toLeft:function(){return this.start(0,
false)},toRight:function(){return this.start("right",false)},toBottom:function(){return this.start(false,"bottom")},toElement:function(a){a=$(a).getPosition(this.element);return this.start(a.x,a.y)}});
Fx.Elements=new Class({Extends:Fx.CSS,initialize:function(a,b){this.elements=this.subject=$$(a);this.parent(b)},compute:function(a,b,c){var d={};for(var e in a){var f=a[e],g=b[e],h=d[e]={};for(var i in f)h[i]=this.parent(f[i],g[i],c)}return d},set:function(a){for(var b in a){var c=a[b];for(var d in c)this.render(this.elements[b],d,c[d],this.options.unit)}return this},start:function(a){if(!this.check(arguments.callee,a))return this;var b={},c={};for(var d in a){var e=a[d],f=b[d]={},g=c[d]={};for(var h in e){var i=
this.prepare(this.elements[d],h,e[h]);f[h]=i.from;g[h]=i.to}}return this.parent(b,c)}});
var Drag=new Class({Implements:[Events,Options],options:{snap:6,unit:"px",grid:false,style:true,limit:false,handle:false,invert:false,preventDefault:false,modifiers:{x:"left",y:"top"}},initialize:function(){var a=Array.link(arguments,{options:Object.type,element:$defined});this.element=$(a.element);this.document=this.element.getDocument();this.setOptions(a.options||{});a=$type(this.options.handle);this.handles=a=="array"||a=="collection"?$$(this.options.handle):$(this.options.handle)||this.element;
this.mouse={now:{},pos:{}};this.value={start:{},now:{}};this.selection=Browser.Engine.trident?"selectstart":"mousedown";this.bound={start:this.start.bind(this),check:this.check.bind(this),drag:this.drag.bind(this),stop:this.stop.bind(this),cancel:this.cancel.bind(this),eventStop:$lambda(false)};this.attach()},attach:function(){this.handles.addEvent("mousedown",this.bound.start);return this},detach:function(){this.handles.removeEvent("mousedown",this.bound.start);return this},start:function(a){this.options.preventDefault&&
a.preventDefault();this.fireEvent("beforeStart",this.element);this.mouse.start=a.page;var b=this.options.limit;this.limit={x:[],y:[]};for(var c in this.options.modifiers)if(this.options.modifiers[c]){this.value.now[c]=this.options.style?this.element.getStyle(this.options.modifiers[c]).toInt():this.element[this.options.modifiers[c]];if(this.options.invert)this.value.now[c]*=-1;this.mouse.pos[c]=a.page[c]-this.value.now[c];if(b&&b[c])for(var d=2;d--;)if($chk(b[c][d]))this.limit[c][d]=$lambda(b[c][d])()}if($type(this.options.grid)==
"number")this.options.grid={x:this.options.grid,y:this.options.grid};this.document.addEvents({mousemove:this.bound.check,mouseup:this.bound.cancel});this.document.addEvent(this.selection,this.bound.eventStop)},check:function(a){this.options.preventDefault&&a.preventDefault();if(Math.round(Math.sqrt(Math.pow(a.page.x-this.mouse.start.x,2)+Math.pow(a.page.y-this.mouse.start.y,2)))>this.options.snap){this.cancel();this.document.addEvents({mousemove:this.bound.drag,mouseup:this.bound.stop});this.fireEvent("start",
this.element).fireEvent("snap",this.element)}},drag:function(a){this.options.preventDefault&&a.preventDefault();this.mouse.now=a.page;for(var b in this.options.modifiers)if(this.options.modifiers[b]){this.value.now[b]=this.mouse.now[b]-this.mouse.pos[b];if(this.options.invert)this.value.now[b]*=-1;if(this.options.limit&&this.limit[b])if($chk(this.limit[b][1])&&this.value.now[b]>this.limit[b][1])this.value.now[b]=this.limit[b][1];else if($chk(this.limit[b][0])&&this.value.now[b]<this.limit[b][0])this.value.now[b]=
this.limit[b][0];if(this.options.grid[b])this.value.now[b]-=this.value.now[b]%this.options.grid[b];if(this.options.style)this.element.setStyle(this.options.modifiers[b],this.value.now[b]+this.options.unit);else this.element[this.options.modifiers[b]]=this.value.now[b]}this.fireEvent("drag",this.element)},cancel:function(a){this.document.removeEvent("mousemove",this.bound.check);this.document.removeEvent("mouseup",this.bound.cancel);if(a){this.document.removeEvent(this.selection,this.bound.eventStop);
this.fireEvent("cancel",this.element)}},stop:function(a){this.document.removeEvent(this.selection,this.bound.eventStop);this.document.removeEvent("mousemove",this.bound.drag);this.document.removeEvent("mouseup",this.bound.stop);a&&this.fireEvent("complete",this.element)}});Element.implement({makeResizable:function(a){return new Drag(this,$merge({modifiers:{x:"width",y:"height"}},a))}});
Drag.Move=new Class({Extends:Drag,options:{droppables:[],container:false},initialize:function(a,b){this.parent(a,b);this.droppables=$$(this.options.droppables);if((this.container=$(this.options.container))&&$type(this.container)!="element")this.container=$(this.container.getDocument().body);a=this.element;b=a.getStyle("position");b=b!="static"?b:"absolute";if(a.getStyle("left")=="auto"||a.getStyle("top")=="auto")a.position(a.getPosition(a.offsetParent));a.setStyle("position",b);this.addEvent("start",
function(){this.checkDroppables()},true)},start:function(a){if(this.container){var b=this.element,c=this.container,d=c.getCoordinates(b.offsetParent),e={},f={};["top","right","bottom","left"].each(function(g){e[g]=c.getStyle("padding-"+g).toInt();f[g]=b.getStyle("margin-"+g).toInt()},this);this.options.limit={x:[d.left+e.left,d.right-e.right-(b.offsetWidth+f.left+f.right)],y:[d.top+e.top,d.bottom-e.bottom-(b.offsetHeight+f.top+f.bottom)]}}this.parent(a)},checkAgainst:function(a){a=a.getCoordinates();
var b=this.mouse.now;return b.x>a.left&&b.x<a.right&&b.y<a.bottom&&b.y>a.top},checkDroppables:function(){var a=this.droppables.filter(this.checkAgainst,this).getLast();if(this.overed!=a){this.overed&&this.fireEvent("leave",[this.element,this.overed]);if(a){this.overed=a;this.fireEvent("enter",[this.element,a])}else this.overed=null}},drag:function(a){this.parent(a);this.droppables.length&&this.checkDroppables()},stop:function(a){this.checkDroppables();this.fireEvent("drop",[this.element,this.overed]);
this.overed=null;return this.parent(a)}});Element.implement({makeDraggable:function(a){return new Drag.Move(this,a)}});Hash.Cookie=new Class({Extends:Cookie,options:{autoSave:true},initialize:function(a,b){this.parent(a,b);this.load()},save:function(){var a=JSON.encode(this.hash);if(!a||a.length>4096)return false;a=="{}"?this.dispose():this.write(a);return true},load:function(){this.hash=new Hash(JSON.decode(this.read(),true));return this}});
Hash.Cookie.implement(function(){var a={};Hash.each(Hash.prototype,function(b,c){a[c]=function(){var d=b.apply(this.hash,arguments);this.options.autoSave&&this.save();return d}});return a}());
var Color=new Native({initialize:function(a,b){if(arguments.length>=3){b="rgb";a=Array.slice(arguments,0,3)}else if(typeof a=="string")a=a.match(/rgb/)?a.rgbToHex().hexToRgb(true):a.match(/hsb/)?a.hsbToRgb():a.hexToRgb(true);b=b||"rgb";switch(b){case "hsb":var c=a;a=a.hsbToRgb();a.hsb=c;break;case "hex":a=a.hexToRgb(true);break}a.rgb=a.slice(0,3);a.hsb=a.hsb||a.rgbToHsb();a.hex=a.rgbToHex();return $extend(a,this)}});
Color.implement({mix:function(){var a=Array.slice(arguments),b=$type(a.getLast())=="number"?a.pop():50,c=this.slice();a.each(function(d){d=new Color(d);for(var e=0;e<3;e++)c[e]=Math.round(c[e]/100*(100-b)+d[e]/100*b)});return new Color(c,"rgb")},invert:function(){return new Color(this.map(function(a){return 255-a}))},setHue:function(a){return new Color([a,this.hsb[1],this.hsb[2]],"hsb")},setSaturation:function(a){return new Color([this.hsb[0],a,this.hsb[2]],"hsb")},setBrightness:function(a){return new Color([this.hsb[0],
this.hsb[1],a],"hsb")}});function $RGB(a,b,c){return new Color([a,b,c],"rgb")}function $HSB(a,b,c){return new Color([a,b,c],"hsb")}function $HEX(a){return new Color(a,"hex")}
Array.implement({rgbToHsb:function(){var a=this[0],b=this[1],c=this[2],d,e,f=Math.max(a,b,c);d=Math.min(a,b,c);var g=f-d;e=f/255;d=f!=0?g/f:0;if(d==0)a=0;else{var h=(f-a)/g,i=(f-b)/g;c=(f-c)/g;a=a==f?c-i:b==f?2+h-c:4+i-h;a/=6;a<0&&a++}return[Math.round(a*360),Math.round(d*100),Math.round(e*100)]},hsbToRgb:function(){var a=Math.round(this[2]/100*255);if(this[1]==0)return[a,a,a];else{var b=this[0]%360,c=b%60,d=Math.round(this[2]*(100-this[1])/1E4*255),e=Math.round(this[2]*(6E3-this[1]*c)/6E5*255);c=
Math.round(this[2]*(6E3-this[1]*(60-c))/6E5*255);switch(Math.floor(b/60)){case 0:return[a,c,d];case 1:return[e,a,d];case 2:return[d,a,c];case 3:return[d,e,a];case 4:return[c,d,a];case 5:return[a,d,e]}}return false}});String.implement({rgbToHsb:function(){return this.match(/\d{1,3}/g)?hsb.rgbToHsb():null},hsbToRgb:function(){var a=this.match(/\d{1,3}/g);return a?a.hsbToRgb():null}});
var Group=new Class({initialize:function(){this.instances=Array.flatten(arguments);this.events={};this.checker={}},addEvent:function(a,b){this.checker[a]=this.checker[a]||{};this.events[a]=this.events[a]||[];if(this.events[a].contains(b))return false;else this.events[a].push(b);this.instances.each(function(c,d){c.addEvent(a,this.check.bind(this,[a,c,d]))},this);return this},check:function(a,b,c){this.checker[a][c]=true;if(this.instances.every(function(d,e){return this.checker[a][e]||false},this)){this.checker[a]=
{};this.events[a].each(function(d){d.call(this,this.instances,b)},this)}}}),Asset=new Hash({javascript:function(a,b){b=$extend({onload:$empty,document:document,check:$lambda(true)},b);a=new Element("script",{src:a,type:"text/javascript"});var c=b.onload.bind(a),d=b.check,e=b.document;delete b.onload;delete b.check;delete b.document;a.addEvents({load:c,readystatechange:function(){["loaded","complete"].contains(this.readyState)&&c()}}).setProperties(b);if(Browser.Engine.webkit419)var f=function(){if($try(d)){$clear(f);
c()}}.periodical(50);return a.inject(e.head)},css:function(a,b){return(new Element("link",$merge({rel:"stylesheet",media:"screen",type:"text/css",href:a},b))).inject(document.head)},image:function(a,b){b=$merge({onload:$empty,onabort:$empty,onerror:$empty},b);var c=new Image,d=$(c)||new Element("img");["load","abort","error"].each(function(e){var f="on"+e,g=b[f];delete b[f];c[f]=function(){if(c){if(!d.parentNode){d.width=c.width;d.height=c.height}c=c.onload=c.onabort=c.onerror=null;g.delay(1,d,d);
d.fireEvent(e,d,1)}}});c.src=d.src=a;c&&c.complete&&c.onload.delay(1);return d.setProperties(b)},images:function(a,b){b=$merge({onComplete:$empty,onProgress:$empty},b);a.push||(a=[a]);var c=[],d=0;a.each(function(e){var f=new Asset.image(e,{onload:function(){b.onProgress.call(this,d,a.indexOf(e));d++;d==a.length&&b.onComplete()}});c.push(f)});return new Elements(c)}}),Slider=new Class({Implements:[Events,Options],options:{onTick:function(a){if(this.options.snap)a=this.toPosition(this.step);this.knob.setStyle(this.property,
a)},snap:false,offset:0,range:false,wheel:false,steps:100,mode:"horizontal"},initialize:function(a,b,c){this.setOptions(c);this.element=$(a);this.knob=$(b);this.previousChange=this.previousEnd=this.step=-1;this.element.addEvent("mousedown",this.clickedElement.bind(this));this.options.wheel&&this.element.addEvent("mousewheel",this.scrolledElement.bindWithEvent(this));var d;a={};b={x:false,y:false};switch(this.options.mode){case "vertical":this.axis="y";this.property="top";d="offsetHeight";break;case "horizontal":this.axis=
"x";this.property="left";d="offsetWidth"}this.half=this.knob[d]/2;this.full=this.element[d]-this.knob[d]+this.options.offset*2;this.min=$chk(this.options.range[0])?this.options.range[0]:0;this.max=$chk(this.options.range[1])?this.options.range[1]:this.options.steps;this.range=this.max-this.min;this.steps=this.options.steps||this.full;this.stepSize=Math.abs(this.range)/this.steps;this.stepWidth=this.stepSize*this.full/Math.abs(this.range);this.knob.setStyle("position","relative").setStyle(this.property,
-this.options.offset);b[this.axis]=this.property;a[this.axis]=[-this.options.offset,this.full-this.options.offset];this.drag=new Drag(this.knob,{snap:0,limit:a,modifiers:b,onDrag:this.draggedKnob.bind(this),onStart:this.draggedKnob.bind(this),onComplete:function(){this.draggedKnob();this.end()}.bind(this)});if(this.options.snap){this.drag.options.grid=Math.ceil(this.stepWidth);this.drag.options.limit[this.axis][1]=this.full}},set:function(a){if(!(this.range>0^a<this.min))a=this.min;if(!(this.range>
0^a>this.max))a=this.max;this.step=Math.round(a);this.checkStep();this.end();this.fireEvent("tick",this.toPosition(this.step));return this},clickedElement:function(a){var b=this.range<0?-1:1;a=a.page[this.axis]-this.element.getPosition()[this.axis]-this.half;a=a.limit(-this.options.offset,this.full-this.options.offset);this.step=Math.round(this.min+b*this.toStep(a));this.checkStep();this.end();this.fireEvent("tick",a)},scrolledElement:function(a){this.set((this.options.mode=="horizontal"?a.wheel<
0:a.wheel>0)?this.step-this.stepSize:this.step+this.stepSize);a.stop()},draggedKnob:function(){var a=this.range<0?-1:1,b=this.drag.value.now[this.axis];b=b.limit(-this.options.offset,this.full-this.options.offset);this.step=Math.round(this.min+a*this.toStep(b));this.checkStep()},checkStep:function(){if(this.previousChange!=this.step){this.previousChange=this.step;this.fireEvent("change",this.step)}},end:function(){if(this.previousEnd!==this.step){this.previousEnd=this.step;this.fireEvent("complete",
this.step+"")}},toStep:function(a){a=(a+this.options.offset)*this.stepSize/this.full*this.steps;return this.options.steps?Math.round(a-=a%this.stepSize):a},toPosition:function(a){return this.full*Math.abs(this.min-a)/(this.steps*this.stepSize)-this.options.offset}}),Scroller=new Class({Implements:[Events,Options],options:{area:20,velocity:1,onChange:function(a,b){this.element.scrollTo(a,b)}},initialize:function(a,b){this.setOptions(b);this.element=$(a);this.listener=$type(this.element)!="element"?
$(this.element.getDocument().body):this.element;this.timer=null;this.coord=this.getCoords.bind(this)},start:function(){this.listener.addEvent("mousemove",this.coord)},stop:function(){this.listener.removeEvent("mousemove",this.coord);this.timer=$clear(this.timer)},getCoords:function(a){this.page=this.listener.get("tag")=="body"?a.client:a.page;if(!this.timer)this.timer=this.scroll.periodical(50,this)},scroll:function(){var a=this.element.getSize(),b=this.element.getScroll(),c=this.element.getPosition(),
d={x:0,y:0};for(var e in this.page)if(this.page[e]<this.options.area+c[e]&&b[e]!=0)d[e]=(this.page[e]-this.options.area-c[e])*this.options.velocity;else if(this.page[e]+this.options.area>a[e]+c[e]&&a[e]+a[e]!=b[e])d[e]=(this.page[e]-a[e]+this.options.area-c[e])*this.options.velocity;if(d.y||d.x)this.fireEvent("change",[b.x+d.x,b.y+d.y])}});
