MooTools.More={version:"1.2.5.1",build:"254884f2b83651bf95260eed5c6cceb838e22d8e"};(function(){var a={language:"en-US",languages:{"en-US":{}},cascades:["en-US"]};var b;MooTools.lang=new Events();$extend(MooTools.lang,{setLanguage:function(c){if(!a.languages[c]){return this;}a.language=c;this.load();this.fireEvent("langChange",c);return this;},load:function(){var c=this.cascade(this.getCurrentLanguage());b={};$each(c,function(e,d){b[d]=this.lambda(e);},this);},getCurrentLanguage:function(){return a.language;},addLanguage:function(c){a.languages[c]=a.languages[c]||{};return this;},cascade:function(e){var c=(a.languages[e]||{}).cascades||[];c.combine(a.cascades);c.erase(e).push(e);var d=c.map(function(f){return a.languages[f];},this);return $merge.apply(this,d);},lambda:function(c){(c||{}).get=function(d,e){return $lambda(c[d]).apply(this,$splat(e));};return c;},get:function(d,e,c){if(b&&b[d]){return(e?b[d].get(e,c):b[d]);}},set:function(d,e,c){this.addLanguage(d);langData=a.languages[d];if(!langData[e]){langData[e]={};}$extend(langData[e],c);if(d==this.getCurrentLanguage()){this.load();this.fireEvent("langChange",d);}return this;},list:function(){return Hash.getKeys(a.languages);}});})();(function(){var a=this.Date;if(!a.now){a.now=$time;}a.Methods={ms:"Milliseconds",year:"FullYear",min:"Minutes",mo:"Month",sec:"Seconds",hr:"Hours"};["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds","Time","TimezoneOffset","Week","Timezone","GMTOffset","DayOfYear","LastMonth","LastDayOfMonth","UTCDate","UTCDay","UTCFullYear","AMPM","Ordinal","UTCHours","UTCMilliseconds","UTCMinutes","UTCMonth","UTCSeconds","UTCMilliseconds"].each(function(p){a.Methods[p.toLowerCase()]=p;});var i=function(q,p){return new Array(p-String(q).length+1).join("0")+q;};a.implement({set:function(r,q){switch($type(r)){case"object":for(var t in r){this.set(t,r[t]);}break;case"string":r=r.toLowerCase();var s=a.Methods;if(s[r]){this["set"+s[r]](q);}}return this;},get:function(p){p=p.toLowerCase();var q=a.Methods;if(q[p]){return this["get"+q[p]]();}return null;},clone:function(){return new a(this.get("time"));},increment:function(p,q){p=p||"day";q=$pick(q,1);switch(p){case"year":return this.increment("month",q*12);case"month":var r=this.get("date");this.set("date",1).set("mo",this.get("mo")+q);return this.set("date",r.min(this.get("lastdayofmonth")));case"week":return this.increment("day",q*7);case"day":return this.set("date",this.get("date")+q);}if(!a.units[p]){throw new Error(p+" is not a supported interval");}return this.set("time",this.get("time")+q*a.units[p]());},decrement:function(q,p){return this.increment(q,-1*$pick(p,1));},isLeapYear:function(){return a.isLeapYear(this.get("year"));},clearTime:function(){return this.set({hr:0,min:0,sec:0,ms:0});},diff:function(p,q){if($type(p)=="string"){p=a.parse(p);}return((p-this)/a.units[q||"day"](3,3)).round();},getLastDayOfMonth:function(){return a.daysInMonth(this.get("mo"),this.get("year"));},getDayOfYear:function(){return(a.UTC(this.get("year"),this.get("mo"),this.get("date")+1)-a.UTC(this.get("year"),0,1))/a.units.day();},getWeek:function(){return(this.get("dayofyear")/7).ceil();},getOrdinal:function(p){return a.getMsg("ordinal",p||this.get("date"));},getTimezone:function(){return this.toString().replace(/^.*? ([A-Z]{3}).[0-9]{4}.*$/,"$1").replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/,"$1$2$3");},getGMTOffset:function(){var p=this.get("timezoneOffset");return((p>0)?"-":"+")+i((p.abs()/60).floor(),2)+i(p%60,2);},setAMPM:function(q){q=q.toUpperCase();var p=this.get("hr");if(p>11&&q=="AM"){return this.decrement("hour",12);}else{if(p<12&&q=="PM"){return this.increment("hour",12);}}return this;},getAMPM:function(){return(this.get("hr")<12)?"AM":"PM";},parse:function(p){this.set("time",a.parse(p));return this;},isValid:function(p){return !isNaN((p||this).valueOf());},format:function(q){if(!this.isValid()){return"invalid date";}q=q||"%x %X";q=n[q.toLowerCase()]||q;var p=this;return q.replace(/%([a-z%])/gi,function(s,r){switch(r){case"a":return a.getMsg("days")[p.get("day")].substr(0,3);case"A":return a.getMsg("days")[p.get("day")];case"b":return a.getMsg("months")[p.get("month")].substr(0,3);case"B":return a.getMsg("months")[p.get("month")];case"c":return p.toString();case"d":return i(p.get("date"),2);case"D":return p.get("date");case"e":return p.get("date");case"H":return i(p.get("hr"),2);case"I":return((p.get("hr")%12)||12);case"j":return i(p.get("dayofyear"),3);case"m":return i((p.get("mo")+1),2);case"M":return i(p.get("min"),2);case"o":return p.get("ordinal");case"p":return a.getMsg(p.get("ampm"));case"s":return Math.round(p/1000);case"S":return i(p.get("seconds"),2);case"U":return i(p.get("week"),2);case"w":return p.get("day");case"x":return p.format(a.getMsg("shortDate"));case"X":return p.format(a.getMsg("shortTime"));case"y":return p.get("year").toString().substr(2);case"Y":return p.get("year");case"T":return p.get("GMTOffset");case"Z":return p.get("Timezone");case"z":return i(p.get("ms"),3);}return r;});},toISOString:function(){return this.format("iso8601");}});a.alias("toISOString","toJSON");a.alias("diff","compare");a.alias("format","strftime");var n={db:"%Y-%m-%d %H:%M:%S",compact:"%Y%m%dT%H%M%S",iso8601:"%Y-%m-%dT%H:%M:%S%T",rfc822:"%a, %d %b %Y %H:%M:%S %Z","short":"%d %b %H:%M","long":"%B %d, %Y %H:%M"};var c=[];var o=a.parse;var f=function(t,s,q){var r=-1;var u=a.getMsg(t+"s");switch($type(s)){case"object":r=u[s.get(t)];break;case"number":r=u[s];if(!r){throw new Error("Invalid "+t+" index: "+s);}break;case"string":var p=u.filter(function(v){return this.test(v);},new RegExp("^"+s,"i"));if(!p.length){throw new Error("Invalid "+t+" string");}if(p.length>1){throw new Error("Ambiguous "+t);}r=p[0];}return(q)?u.indexOf(r):r;};a.extend({getMsg:function(p,q){return MooTools.lang.get("Date",p,q);},units:{ms:$lambda(1),second:$lambda(1000),minute:$lambda(60000),hour:$lambda(3600000),day:$lambda(86400000),week:$lambda(608400000),month:function(r,p){var q=new a;return a.daysInMonth($pick(r,q.get("mo")),$pick(p,q.get("year")))*86400000;},year:function(p){p=p||new a().get("year");return a.isLeapYear(p)?31622400000:31536000000;}},daysInMonth:function(p,q){return[31,a.isLeapYear(q)?29:28,31,30,31,30,31,31,30,31,30,31][p];},isLeapYear:function(p){return((p%4===0)&&(p%100!==0))||(p%400===0);},parse:function(q){var p=$type(q);if(p=="number"){return new a(q);}if(p!="string"){return q;}q=q.clean();if(!q.length){return null;}var r;c.some(function(s){var t=s.re.exec(q);return(t)?(r=s.handler(t)):false;});return r||new a(o(q));},parseDay:function(q,p){return f("day",q,p);},parseMonth:function(p,q){return f("month",p,q);},parseUTC:function(p){var r=new a(p);var q=a.UTC(r.get("year"),r.get("mo"),r.get("date"),r.get("hr"),r.get("min"),r.get("sec"),r.get("ms"));return new a(q);},orderIndex:function(p){return a.getMsg("dateOrder").indexOf(p)+1;},defineFormat:function(q,p){n[q]=p;},defineFormats:function(q){for(var p in q){a.defineFormat(p,q[p]);}},parsePatterns:c,defineParser:function(p){c.push((p.re&&p.handler)?p:m(p));},defineParsers:function(){Array.flatten(arguments).each(a.defineParser);},define2DigitYearStart:function(p){e=p%100;b=p-e;}});var b=1900;var e=70;var d=function(p){return new RegExp("(?:"+a.getMsg(p).map(function(q){return q.substr(0,3);}).join("|")+")[a-z]*");};var g=function(p){switch(p){case"x":return((a.orderIndex("month")==1)?"%m[-./]%d":"%d[-./]%m")+"([-./]%y)?";case"X":return"%H([.:]%M)?([.:]%S([.:]%s)?)? ?%p? ?%T?";}return null;};var l={d:/[0-2]?[0-9]|3[01]/,H:/[01]?[0-9]|2[0-3]/,I:/0?[1-9]|1[0-2]/,M:/[0-5]?\d/,s:/\d+/,o:/[a-z]*/,p:/[ap]\.?m\.?/,y:/\d{2}|\d{4}/,Y:/\d{4}/,T:/Z|[+-]\d{2}(?::?\d{2})?/};l.m=l.I;l.S=l.M;var j;var h=function(p){j=p;l.a=l.A=d("days");l.b=l.B=d("months");c.each(function(q,r){if(q.format){c[r]=m(q.format);}});};var m=function(p){if(!j){return{format:p};}var r=[];var q=(p.source||p).replace(/%([a-z])/gi,function(t,s){return g(s)||t;}).replace(/\((?!\?)/g,"(?:").replace(/ (?!\?|\*)/g,",? ").replace(/%([a-z%])/gi,function(s,t){var u=l[t];if(!u){return t;}r.push(t);return"("+u.source+")";}).replace(/\[a-z\]/gi,"[a-z\\u00c0-\\uffff]");return{format:p,re:new RegExp("^"+q+"$","i"),handler:function(s){s=s.slice(1).associate(r);var v=new a().clearTime(),t=s.y||s.Y;if(t!=null){k.call(v,"y",t);}if("d" in s){k.call(v,"d",1);}if("m" in s||"b" in s||"B" in s){k.call(v,"m",1);}for(var u in s){k.call(v,u,s[u]);}return v;}};};var k=function(r,p){if(!p){return this;}switch(r){case"a":case"A":return this.set("day",a.parseDay(p,true));case"b":case"B":return this.set("mo",a.parseMonth(p,true));case"d":return this.set("date",p);case"H":case"I":return this.set("hr",p);case"m":return this.set("mo",p-1);case"M":return this.set("min",p);case"p":return this.set("ampm",p.replace(/\./g,""));case"S":return this.set("sec",p);case"s":return this.set("ms",("0."+p)*1000);case"w":return this.set("day",p);case"Y":return this.set("year",p);case"y":p=+p;if(p<100){p+=b+(p<e?100:0);}return this.set("year",p);case"T":if(p=="Z"){p="+00";}var q=p.match(/([+-])(\d{2}):?(\d{2})?/);q=(q[1]+"1")*(q[2]*60+(+q[3]||0))+this.getTimezoneOffset();return this.set("time",this-q*60000);}return this;};a.defineParsers("%Y([-./]%m([-./]%d((T| )%X)?)?)?","%Y%m%d(T%H(%M%S?)?)?","%x( %X)?","%d%o( %b( %Y)?)?( %X)?","%b( %d%o)?( %Y)?( %X)?","%Y %b( %d%o( %X)?)?","%o %b %d %X %T %Y");MooTools.lang.addEvent("langChange",function(p){if(MooTools.lang.get("Date")){h(p);}}).fireEvent("langChange",MooTools.lang.getCurrentLanguage());})();Fx.Slide=new Class({Extends:Fx,options:{mode:"vertical",wrapper:false,hideOverflow:true,resetHeight:false},initialize:function(b,c){this.addEvent("complete",function(){this.open=(this.wrapper["offset"+this.layout.capitalize()]!=0);if(this.open&&this.options.resetHeight){this.wrapper.setStyle("height","");}if(this.open&&Browser.Engine.webkit419){this.element.dispose().inject(this.wrapper);}},true);this.element=this.subject=document.id(b);this.parent(c);var a=this.element.retrieve("wrapper");var d=this.element.getStyles("margin","position","overflow");if(this.options.hideOverflow){d=$extend(d,{overflow:"hidden"});}if(this.options.wrapper){a=document.id(this.options.wrapper).setStyles(d);}this.wrapper=a||new Element("div",{styles:d}).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(c,a,b){return[0,1].map(function(d){return Fx.compute(c[d],a[d],b);});},start:function(f,g){if(!this.check(f,g)){return this;}this[g||this.options.mode]();var e=this.element.getStyle(this.margin).toInt();var d=this.wrapper.getStyle(this.layout).toInt();var a=[[e,d],[0,this.offset]];var b=[[e,d],[-this.offset,0]];var c;switch(f){case"in":c=a;break;case"out":c=b;break;case"toggle":c=(d==0)?a:b;}return this.parent(c[0],c[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");if(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(e,c){e=e||"toggle";var a=this.get("slide"),b;switch(e){case"hide":a.hide(c);break;case"show":a.show(c);break;case"toggle":var d=this.retrieve("slide:flag",a.open);a[d?"slideOut":"slideIn"](c);this.store("slide:flag",!d);b=true;break;default:a.start(e,c);}if(!b){this.eliminate("slide:flag");}return this;}});var Drag=new Class({Implements:[Events,Options],options:{snap:6,unit:"px",grid:false,style:true,limit:false,handle:false,invert:false,preventDefault:false,stopPropagation:false,modifiers:{x:"left",y:"top"}},initialize:function(){var a=Array.link(arguments,{options:Object.type,element:$defined});this.element=document.id(a.element);this.document=this.element.getDocument();this.setOptions(a.options||{});var b=$type(this.options.handle);this.handles=((b=="array"||b=="collection")?$$(this.options.handle):document.id(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(f){if(f.rightClick){return;}if(this.options.preventDefault){f.preventDefault();}if(this.options.stopPropagation){f.stopPropagation();}this.mouse.start=f.page;this.fireEvent("beforeStart",this.element);var g=this.options.limit;this.limit={x:[],y:[]};var a=this.element.getStyles("left","right","top","bottom");this._invert={x:this.options.modifiers.x=="left"&&a.left=="auto"&&!isNaN(a.right.toInt())&&(this.options.modifiers.x="right"),y:this.options.modifiers.y=="top"&&a.top=="auto"&&!isNaN(a.bottom.toInt())&&(this.options.modifiers.y="bottom")};var c,d;for(c in this.options.modifiers){if(!this.options.modifiers[c]){continue;}var e=this.element.getStyle(this.options.modifiers[c]);if(e&&!e.match(/px$/)){if(!d){d=this.element.getCoordinates(this.element.getOffsetParent());}e=d[this.options.modifiers[c]];}if(this.options.style){this.value.now[c]=(e||0).toInt();}else{this.value.now[c]=this.element[this.options.modifiers[c]];}if(this.options.invert){this.value.now[c]*=-1;}if(this._invert[c]){this.value.now[c]*=-1;}this.mouse.pos[c]=f.page[c]-this.value.now[c];if(g&&g[c]){for(var b=2;b--;b){if($chk(g[c][b])){this.limit[c][b]=$lambda(g[c][b])();}}}}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(b){if(this.options.preventDefault){b.preventDefault();}var a=Math.round(Math.sqrt(Math.pow(b.page.x-this.mouse.start.x,2)+Math.pow(b.page.y-this.mouse.start.y,2)));if(a>this.options.snap){this.cancel();this.document.addEvents({mousemove:this.bound.drag,mouseup:this.bound.stop});this.fireEvent("start",[this.element,b]).fireEvent("snap",this.element);}},drag:function(a){if(this.options.preventDefault){a.preventDefault();}this.mouse.now=a.page;for(var b in this.options.modifiers){if(!this.options.modifiers[b]){continue;}this.value.now[b]=this.mouse.now[b]-this.mouse.pos[b];if(this.options.invert){this.value.now[b]*=-1;}if(this._invert[b]){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.limit[b][0]||0))%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,a]);},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);if(a){this.fireEvent("complete",[this.element,a]);}}});Element.implement({makeResizable:function(a){var b=new Drag(this,$merge({modifiers:{x:"width",y:"height"}},a));this.store("resizer",b);return b.addEvent("drag",function(){this.fireEvent("resize",b);}.bind(this));}});(function(){var a=function(c,b){return(c)?($type(c)=="function"?c(b):b.get(c)):"";};this.Tips=new Class({Implements:[Events,Options],options:{onShow:function(){this.tip.setStyle("display","block");},onHide:function(){this.tip.setStyle("display","none");},title:"title",text:function(b){return b.get("rel")||b.get("href");},showDelay:100,hideDelay:100,className:"tip-wrap",offset:{x:16,y:16},windowPadding:{x:0,y:0},fixed:false},initialize:function(){var b=Array.link(arguments,{options:Object.type,elements:$defined});this.setOptions(b.options);if(b.elements){this.attach(b.elements);}this.container=new Element("div",{"class":"tip"});},toElement:function(){if(this.tip){return this.tip;}return this.tip=new Element("div",{"class":this.options.className,styles:{position:"absolute",top:0,left:0}}).adopt(new Element("div",{"class":"tip-top"}),this.container,new Element("div",{"class":"tip-bottom"}));},attach:function(b){$$(b).each(function(e){var f=a(this.options.title,e),c=a(this.options.text,e);e.erase("title").store("tip:native",f).retrieve("tip:title",f);e.retrieve("tip:text",c);this.fireEvent("attach",[e]);var d=["enter","leave"];if(!this.options.fixed){d.push("move");}d.each(function(h){var g=e.retrieve("tip:"+h);if(!g){g=this["element"+h.capitalize()].bindWithEvent(this,e);}e.store("tip:"+h,g).addEvent("mouse"+h,g);},this);},this);return this;},detach:function(b){$$(b).each(function(c){["enter","leave","move"].each(function(e){c.removeEvent("mouse"+e,c.retrieve("tip:"+e)).eliminate("tip:"+e);});this.fireEvent("detach",[c]);if(this.options.title=="title"){var d=c.retrieve("tip:native");if(d){c.set("title",d);}}},this);return this;},elementEnter:function(c,b){this.container.empty();["title","text"].each(function(e){var d=b.retrieve("tip:"+e);if(d){this.fill(new Element("div",{"class":"tip-"+e}).inject(this.container),d);}},this);$clear(this.timer);this.timer=(function(){this.show(b);this.position((this.options.fixed)?{page:b.getPosition()}:c);}).delay(this.options.showDelay,this);},elementLeave:function(c,b){$clear(this.timer);this.timer=this.hide.delay(this.options.hideDelay,this,b);this.fireForParent(c,b);},fireForParent:function(c,b){b=b.getParent();if(!b||b==document.body){return;}if(b.retrieve("tip:enter")){b.fireEvent("mouseenter",c);}else{this.fireForParent(c,b);}},elementMove:function(c,b){this.position(c);},position:function(f){if(!this.tip){document.id(this);}var b=window.getSize(),d=window.getScroll(),e={x:this.tip.offsetWidth,y:this.tip.offsetHeight},g={x:"left",y:"top"},h={};for(var c in g){h[g[c]]=f.page[c]+this.options.offset[c];if((h[g[c]]+e[c]-d[c])>b[c]-this.options.windowPadding[c]){h[g[c]]=f.page[c]-this.options.offset[c]-e[c];}}this.tip.setStyles(h);},fill:function(b,c){if(typeof c=="string"){b.set("html",c);}else{b.adopt(c);}},show:function(b){if(!this.tip){document.id(this);}if(!this.tip.getParent()){this.tip.inject(document.body);}this.fireEvent("show",[this.tip,b]);},hide:function(b){if(!this.tip){document.id(this);}this.fireEvent("hide",[this.tip,b]);}});})();MooTools.lang.set("en-US","Date",{months:["January","February","March","April","May","June","July","August","September","October","November","December"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dateOrder:["month","date","year"],shortDate:"%m/%d/%Y",shortTime:"%I:%M%p",AM:"AM",PM:"PM",ordinal:function(a){return(a>3&&a<21)?"th":["th","st","nd","rd","th"][Math.min(a%10,4)];},lessThanMinuteAgo:"less than a minute ago",minuteAgo:"about a minute ago",minutesAgo:"{delta} minutes ago",hourAgo:"about an hour ago",hoursAgo:"about {delta} hours ago",dayAgo:"1 day ago",daysAgo:"{delta} days ago",weekAgo:"1 week ago",weeksAgo:"{delta} weeks ago",monthAgo:"1 month ago",monthsAgo:"{delta} months ago",yearAgo:"1 year ago",yearsAgo:"{delta} years ago",lessThanMinuteUntil:"less than a minute from now",minuteUntil:"about a minute from now",minutesUntil:"{delta} minutes from now",hourUntil:"about an hour from now",hoursUntil:"about {delta} hours from now",dayUntil:"1 day from now",daysUntil:"{delta} days from now",weekUntil:"1 week from now",weeksUntil:"{delta} weeks from now",monthUntil:"1 month from now",monthsUntil:"{delta} months from now",yearUntil:"1 year from now",yearsUntil:"{delta} years from now"});MooTools.lang.set("en-GB","Date",{dateOrder:["date","month","year"],shortDate:"%d/%m/%Y",shortTime:"%H:%M"}).set("cascade",["en-US"]);
