
Number.implement({inRange:function(from,to){return(this>=from&&this<=to);},between:function(from,to){return(this>from&&this<to);}});Array.implement({containsRange:function(from,to,step){return[].range(from,to,step).some(function(item){return this.indexOf(item)!=-1;},this);},range:function(from,to,step){this.empty();step=step||1;for(;from<=to;from+=step)
this.push(from);return this;}});window.addEvent('domready',function(){Editor.loader=new ContentLoader();new Editor.Auth({link:BASE_URL+'auth/login'});});