;var MooTools={version:'1.12'};function $defined(obj){return(obj!=undefined);};function $type(obj){if(!$defined(obj))return false;if(obj.htmlElement)return'element';var type=typeof obj;if(type=='object'&&obj.nodeName){switch(obj.nodeType){case 1:return'element';case 3:return(/\S/).test(obj.nodeValue)?'textnode':'whitespace';}} if(type=='object'||type=='function'){switch(obj.constructor){case Array:return'array';case RegExp:return'regexp';case Class:return'class';} if(typeof obj.length=='number'){if(obj.item)return'collection';if(obj.callee)return'arguments';}} return type;};function $merge(){var mix={};for(var i=0;i-1:this.indexOf(string)>-1;},escapeRegExp:function(){return this.replace(/([.*+?^${}()|[\]\/\\])/g,'\\$1');}});Array.extend({rgbToHex:function(array){if(this.length<3)return false;if(this.length==4&&this[3]==0&&!array)return'transparent';var hex=[];for(var i=0;i<3;i++){var bit=(this[i]-0).toString(16);hex.push((bit.length==1)?'0'+bit:bit);} return array?hex:'#'+hex.join('');},hexToRgb:function(array){if(this.length!=3)return false;var rgb=[];for(var i=0;i<3;i++){rgb.push(parseInt((this[i].length==1)?this[i]+this[i]:this[i],16));} return array?rgb:'rgb('+rgb.join(',')+')';}});Function.extend({create:function(options){var fn=this;options=$merge({'bind':fn,'event':false,'arguments':null,'delay':false,'periodical':false,'attempt':false},options);if($chk(options.arguments)&&$type(options.arguments)!='array')options.arguments=[options.arguments];return function(event){var args;if(options.event){event=event||window.event;args=[(options.event===true)?event:new options.event(event)];if(options.arguments)args.extend(options.arguments);} else args=options.arguments||arguments;var returns=function(){return fn.apply($pick(options.bind,fn),args);};if(options.delay)return setTimeout(returns,options.delay);if(options.periodical)return setInterval(returns,options.periodical);if(options.attempt)try{return returns();}catch(err){return false;};return returns();};},pass:function(args,bind){return this.create({'arguments':args,'bind':bind});},attempt:function(args,bind){return this.create({'arguments':args,'bind':bind,'attempt':true})();},bind:function(bind,args){return this.create({'bind':bind,'arguments':args});},bindAsEventListener:function(bind,args){return this.create({'bind':bind,'event':true,'arguments':args});},delay:function(delay,bind,args){return this.create({'delay':delay,'bind':bind,'arguments':args})();},periodical:function(interval,bind,args){return this.create({'periodical':interval,'bind':bind,'arguments':args})();}});Number.extend({toInt:function(){return parseInt(this);},toFloat:function(){return parseFloat(this);},limit:function(min,max){return Math.min(max,Math.max(min,this));},round:function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;},times:function(fn){for(var i=0;i';} el=document.createElement(el);} el=$(el);return(!props||!el)?el:el.set(props);}});var Elements=new Class({initialize:function(elements){return(elements)?$extend(elements,this):this;}});Elements.extend=function(props){for(var prop in props){this.prototype[prop]=props[prop];this[prop]=$native.generic(prop);}};function $(el){if(!el)return null;if(el.htmlElement)return Garbage.collect(el);if([window,document].contains(el))return el;var type=$type(el);if(type=='string'){el=document.getElementById(el);type=(el)?'element':false;} if(type!='element')return null;if(el.htmlElement)return Garbage.collect(el);if(['object','embed'].contains(el.tagName.toLowerCase()))return el;$extend(el,Element.prototype);el.htmlElement=function(){};return Garbage.collect(el);};document.getElementsBySelector=document.getElementsByTagName;function $$(){var elements=[];for(var i=0,j=arguments.length;i0&&fKey<13)this.key='f'+fKey;} this.key=this.key||String.fromCharCode(this.code).toLowerCase();}else if(this.type.test(/(click|mouse|menu)/)){this.page={'x':event.pageX||event.clientX+document.documentElement.scrollLeft,'y':event.pageY||event.clientY+document.documentElement.scrollTop};this.client={'x':event.pageX?event.pageX-window.pageXOffset:event.clientX,'y':event.pageY?event.pageY-window.pageYOffset:event.clientY};this.rightClick=(event.which==3)||(event.button==2);switch(this.type){case'mouseover':this.relatedTarget=event.relatedTarget||event.fromElement;break;case'mouseout':this.relatedTarget=event.relatedTarget||event.toElement;} this.fixRelatedTarget();} return this;},stop:function(){return this.stopPropagation().preventDefault();},stopPropagation:function(){if(this.event.stopPropagation)this.event.stopPropagation();else this.event.cancelBubble=true;return this;},preventDefault:function(){if(this.event.preventDefault)this.event.preventDefault();else this.event.returnValue=false;return this;}});Event.fix={relatedTarget:function(){if(this.relatedTarget&&this.relatedTarget.nodeType==3)this.relatedTarget=this.relatedTarget.parentNode;},relatedTargetGecko:function(){try{Event.fix.relatedTarget.call(this);}catch(e){this.relatedTarget=this.target;}}};Event.prototype.fixRelatedTarget=(window.gecko)?Event.fix.relatedTargetGecko:Event.fix.relatedTarget;Event.keys=new Abstract({'enter':13,'up':38,'down':40,'left':37,'right':39,'esc':27,'space':32,'backspace':8,'tab':9,'delete':46});Element.Methods.Events={addEvent:function(type,fn){this.$events=this.$events||{};this.$events[type]=this.$events[type]||{'keys':[],'values':[]};if(this.$events[type].keys.contains(fn))return this;this.$events[type].keys.push(fn);var realType=type;var custom=Element.Events[type];if(custom){if(custom.add)custom.add.call(this,fn);if(custom.map)fn=custom.map;if(custom.type)realType=custom.type;} if(!this.addEventListener)fn=fn.create({'bind':this,'event':true});this.$events[type].values.push(fn);return(Element.NativeEvents.contains(realType))?this.addListener(realType,fn):this;},removeEvent:function(type,fn){if(!this.$events||!this.$events[type])return this;var pos=this.$events[type].keys.indexOf(fn);if(pos==-1)return this;var key=this.$events[type].keys.splice(pos,1)[0];var value=this.$events[type].values.splice(pos,1)[0];var custom=Element.Events[type];if(custom){if(custom.remove)custom.remove.call(this,fn);if(custom.type)type=custom.type;} return(Element.NativeEvents.contains(type))?this.removeListener(type,value):this;},addEvents:function(source){return Element.setMany(this,'addEvent',source);},removeEvents:function(type){if(!this.$events)return this;if(!type){for(var evType in this.$events)this.removeEvents(evType);this.$events=null;}else if(this.$events[type]){this.$events[type].keys.each(function(fn){this.removeEvent(type,fn);},this);this.$events[type]=null;} return this;},fireEvent:function(type,args,delay){if(this.$events&&this.$events[type]){this.$events[type].keys.each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);} return this;},cloneEvents:function(from,type){if(!from.$events)return this;if(!type){for(var evType in from.$events)this.cloneEvents(from,evType);}else if(from.$events[type]){from.$events[type].keys.each(function(fn){this.addEvent(type,fn);},this);} return this;}};window.extend(Element.Methods.Events);document.extend(Element.Methods.Events);Element.extend(Element.Methods.Events);Element.Events=new Abstract({'mouseenter':{type:'mouseover',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseenter',event);}},'mouseleave':{type:'mouseout',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseleave',event);}},'mousewheel':{type:(window.gecko)?'DOMMouseScroll':'mousewheel'}});Element.NativeEvents=['click','dblclick','mouseup','mousedown','mousewheel','DOMMouseScroll','mouseover','mouseout','mousemove','keydown','keypress','keyup','load','unload','beforeunload','resize','move','focus','blur','change','submit','reset','select','error','abort','contextmenu','scroll'];Function.extend({bindWithEvent:function(bind,args){return this.create({'bind':bind,'arguments':args,'event':Event});}});Elements.extend({filterByTag:function(tag){return new Elements(this.filter(function(el){return(Element.getTag(el)==tag);}));},filterByClass:function(className,nocash){var elements=this.filter(function(el){return(el.className&&el.className.contains(className,' '));});return(nocash)?elements:new Elements(elements);},filterById:function(id,nocash){var elements=this.filter(function(el){return(el.id==id);});return(nocash)?elements:new Elements(elements);},filterByAttribute:function(name,operator,value,nocash){var elements=this.filter(function(el){var current=Element.getProperty(el,name);if(!current)return false;if(!operator)return true;switch(operator){case'=':return(current==value);case'*=':return(current.contains(value));case'^=':return(current.substr(0,value.length)==value);case'$=':return(current.substr(current.length-value.length)==value);case'!=':return(current!=value);case'~=':return current.contains(value,' ');} return false;});return(nocash)?elements:new Elements(elements);}});function $E(selector,filter){return($(filter)||document).getElement(selector);};function $ES(selector,filter){return($(filter)||document).getElementsBySelector(selector);};$$.shared={'regexp':/^(\w*|\*)(?:#([\w-]+)|\.([\w-]+))?(?:\[(\w+)(?:([!*^$]?=)["']?([^"'\]]*)["']?)?])?$/,'xpath':{getParam:function(items,context,param,i){var temp=[context.namespaceURI?'xhtml:':'',param[1]];if(param[2])temp.push('[@id="',param[2],'"]');if(param[3])temp.push('[contains(concat(" ", @class, " "), " ',param[3],' ")]');if(param[4]){if(param[5]&¶m[6]){switch(param[5]){case'*=':temp.push('[contains(@',param[4],', "',param[6],'")]');break;case'^=':temp.push('[starts-with(@',param[4],', "',param[6],'")]');break;case'$=':temp.push('[substring(@',param[4],', string-length(@',param[4],') - ',param[6].length,' + 1) = "',param[6],'"]');break;case'=':temp.push('[@',param[4],'="',param[6],'"]');break;case'!=':temp.push('[@',param[4],'!="',param[6],'"]');}}else{temp.push('[@',param[4],']');}} items.push(temp.join(''));return items;},getItems:function(items,context,nocash){var elements=[];var xpath=document.evaluate('.//'+items.join('http://'),context,$$.shared.resolver,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,j=xpath.snapshotLength;i<\/script>');$('ie_ready').onreadystatechange=function(){if(this.readyState=='complete')domReady();};}}else{window.addListener("load",domReady);document.addListener("DOMContentLoaded",domReady);}}};window.onDomReady=function(fn){return this.addEvent('domready',fn);};window.extend({getWidth:function(){if(this.webkit419)return this.innerWidth;if(this.opera)return document.body.clientWidth;return document.documentElement.clientWidth;},getHeight:function(){if(this.webkit419)return this.innerHeight;if(this.opera)return document.body.clientHeight;return document.documentElement.clientHeight;},getScrollWidth:function(){if(this.ie)return Math.max(document.documentElement.offsetWidth,document.documentElement.scrollWidth);if(this.webkit)return document.body.scrollWidth;return document.documentElement.scrollWidth;},getScrollHeight:function(){if(this.ie)return Math.max(document.documentElement.offsetHeight,document.documentElement.scrollHeight);if(this.webkit)return document.body.scrollHeight;return document.documentElement.scrollHeight;},getScrollLeft:function(){return this.pageXOffset||document.documentElement.scrollLeft;},getScrollTop:function(){return this.pageYOffset||document.documentElement.scrollTop;},getSize:function(){return{'size':{'x':this.getWidth(),'y':this.getHeight()},'scrollSize':{'x':this.getScrollWidth(),'y':this.getScrollHeight()},'scroll':{'x':this.getScrollLeft(),'y':this.getScrollTop()}};},getPosition:function(){return{'x':0,'y':0};}});var Fx={};Fx.Base=new Class({options:{onStart:Class.empty,onComplete:Class.empty,onCancel:Class.empty,transition:function(p){return-(Math.cos(Math.PI*p)-1)/2;},duration:500,unit:'px',wait:true,fps:50},initialize:function(options){this.element=this.element||null;this.setOptions(options);if(this.options.initialize)this.options.initialize.call(this);},step:function(){var time=$time();if(time=(7-4*a)/11){value=-Math.pow((11-6*a-11*p)/4,2)+b*b;break;}} return value;},Elastic:function(p,x){return Math.pow(2,10*--p)*Math.cos(20*p*Math.PI*(x[0]||1)/3);}});['Quad','Cubic','Quart','Quint'].each(function(transition,i){Fx.Transitions[transition]=new Fx.Transition(function(p){return Math.pow(p,[i+2]);});Fx.Transitions.compat(transition);});var Drag={};Drag.Base=new Class({options:{handle:false,unit:'px',onStart:Class.empty,onBeforeStart:Class.empty,onComplete:Class.empty,onSnap:Class.empty,onDrag:Class.empty,limit:false,modifiers:{x:'left',y:'top'},grid:false,snap:6},initialize:function(el,options){this.setOptions(options);this.element=$(el);this.handle=$(this.options.handle)||this.element;this.mouse={'now':{},'pos':{}};this.value={'start':{},'now':{}};this.bound={'start':this.start.bindWithEvent(this),'check':this.check.bindWithEvent(this),'drag':this.drag.bindWithEvent(this),'stop':this.stop.bind(this)};this.attach();if(this.options.initialize)this.options.initialize.call(this);},attach:function(){this.handle.addEvent('mousedown',this.bound.start);return this;},detach:function(){this.handle.removeEvent('mousedown',this.bound.start);return this;},start:function(event){this.fireEvent('onBeforeStart',this.element);this.mouse.start=event.page;var limit=this.options.limit;this.limit={'x':[],'y':[]};for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.element.getStyle(this.options.modifiers[z]).toInt();this.mouse.pos[z]=event.page[z]-this.value.now[z];if(limit&&limit[z]){for(var i=0;i<2;i++){if($chk(limit[z][i]))this.limit[z][i]=($type(limit[z][i])=='function')?limit[z][i]():limit[z][i];}}} if($type(this.options.grid)=='number')this.options.grid={'x':this.options.grid,'y':this.options.grid};document.addListener('mousemove',this.bound.check);document.addListener('mouseup',this.bound.stop);this.fireEvent('onStart',this.element);event.stop();},check:function(event){var distance=Math.round(Math.sqrt(Math.pow(event.page.x-this.mouse.start.x,2)+Math.pow(event.page.y-this.mouse.start.y,2)));if(distance>this.options.snap){document.removeListener('mousemove',this.bound.check);document.addListener('mousemove',this.bound.drag);this.drag(event);this.fireEvent('onSnap',this.element);} event.stop();},drag:function(event){this.out=false;this.mouse.now=event.page;for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.mouse.now[z]-this.mouse.pos[z];if(this.limit[z]){if($chk(this.limit[z][1])&&(this.value.now[z]>this.limit[z][1])){this.value.now[z]=this.limit[z][1];this.out=true;}else if($chk(this.limit[z][0])&&(this.value.now[z]el.left&&now.xel.top);},stop:function(){if(this.overed&&!this.out)this.overed.fireEvent('drop',[this.element,this]);else this.element.fireEvent('emptydrop',this);this.parent();return this;}});Element.extend({makeDraggable:function(options){return new Drag.Move(this,options);}});var XHR=new Class({options:{method:'post',async:true,onRequest:Class.empty,onSuccess:Class.empty,onFailure:Class.empty,urlEncoded:true,encoding:'utf-8',autoCancel:false,headers:{}},setTransport:function(){this.transport=(window.XMLHttpRequest)?new XMLHttpRequest():(window.ie?new ActiveXObject('Microsoft.XMLHTTP'):false);return this;},initialize:function(options){this.setTransport().setOptions(options);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers={};if(this.options.urlEncoded&&this.options.method=='post'){var encoding=(this.options.encoding)?'; charset='+this.options.encoding:'';this.setHeader('Content-type','application/x-www-form-urlencoded'+encoding);} if(this.options.initialize)this.options.initialize.call(this);},onStateChange:function(){if(this.transport.readyState!=4||!this.running)return;this.running=false;var status=0;try{status=this.transport.status;}catch(e){};if(this.options.isSuccess.call(this,status))this.onSuccess();else this.onFailure();this.transport.onreadystatechange=Class.empty;},isSuccess:function(status){return((status>=200)&&(status<300));},onSuccess:function(){this.response={'text':this.transport.responseText,'xml':this.transport.responseXML};this.fireEvent('onSuccess',[this.response.text,this.response.xml]);this.callChain();},onFailure:function(){this.fireEvent('onFailure',this.transport);},setHeader:function(name,value){this.headers[name]=value;return this;},send:function(url,data){if(this.options.autoCancel)this.cancel();else if(this.running)return this;this.running=true;if(data&&this.options.method=='get'){url=url+(url.contains('?')?'&':'?')+data;data=null;} this.transport.open(this.options.method.toUpperCase(),url,this.options.async);this.transport.onreadystatechange=this.onStateChange.bind(this);if((this.options.method=='post')&&this.transport.overrideMimeType)this.setHeader('Connection','close');$extend(this.headers,this.options.headers);for(var type in this.headers)try{this.transport.setRequestHeader(type,this.headers[type]);}catch(e){};this.fireEvent('onRequest');this.transport.send($pick(data,null));return this;},cancel:function(){if(!this.running)return this;this.running=false;this.transport.abort();this.transport.onreadystatechange=Class.empty;this.setTransport();this.fireEvent('onCancel');return this;}});XHR.implement(new Chain,new Events,new Options);var Ajax=XHR.extend({options:{data:null,update:null,onComplete:Class.empty,evalScripts:false,evalResponse:false},initialize:function(url,options){this.addEvent('onSuccess',this.onComplete);this.setOptions(options);this.options.data=this.options.data||this.options.postBody;if(!['post','get'].contains(this.options.method)){this._method='_method='+this.options.method;this.options.method='post';} this.parent();this.setHeader('X-Requested-With','XMLHttpRequest');this.setHeader('Accept','text/javascript, text/html, application/xml, text/xml, */*');this.url=url;},onComplete:function(){if(this.options.update)$(this.options.update).empty().setHTML(this.response.text);if(this.options.evalScripts||this.options.evalResponse)this.evalScripts();this.fireEvent('onComplete',[this.response.text,this.response.xml],20);},request:function(data){data=data||this.options.data;switch($type(data)){case'element':data=$(data).toQueryString();break;case'object':data=Object.toQueryString(data);} if(this._method)data=(data)?[this._method,data].join('&'):this._method;return this.send(this.url,data);},evalScripts:function(){var script,scripts;if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader('Content-type')))scripts=this.response.text;else{scripts=[];var regexp=/]*>([\s\S]*?)<\/script>/gi;while((script=regexp.exec(this.response.text)))scripts.push(script[1]);scripts=scripts.join('\n');} if(scripts)(window.execScript)?window.execScript(scripts):window.setTimeout(scripts,0);},getHeader:function(name){try{return this.transport.getResponseHeader(name);}catch(e){};return null;}});Object.toQueryString=function(source){var queryString=[];for(var property in source)queryString.push(encodeURIComponent(property)+'='+encodeURIComponent(source[property]));return queryString.join('&');};Element.extend({send:function(options){return new Ajax(this.getProperty('action'),$merge({data:this.toQueryString()},options,{method:'post'})).request();}});var Cookie=new Abstract({options:{domain:false,path:false,duration:false,secure:false},set:function(key,value,options){options=$merge(this.options,options);value=encodeURIComponent(value);if(options.domain)value+='; domain='+options.domain;if(options.path)value+='; path='+options.path;if(options.duration){var date=new Date();date.setTime(date.getTime()+options.duration*24*60*60*1000);value+='; expires='+date.toGMTString();} if(options.secure)value+='; secure';document.cookie=key+'='+value;return $extend(options,{'key':key,'value':value});},get:function(key){var value=document.cookie.match('(?:^|;)\\s*'+key.escapeRegExp()+'=([^;]*)');return value?decodeURIComponent(value[1]):false;},remove:function(cookie,options){if($type(cookie)=='object')this.set(cookie.key,'',$merge(cookie,{duration:-1}));else this.set(cookie,'',$merge(options,{duration:-1}));}});var Json={toString:function(obj){switch($type(obj)){case'string':return'"'+obj.replace(/(["\\])/g,'\\$1')+'"';case'array':return'['+obj.map(Json.toString).join(',')+']';case'object':var string=[];for(var property in obj)string.push(Json.toString(property)+':'+Json.toString(obj[property]));return'{'+string.join(',')+'}';case'number':if(isFinite(obj))break;case false:return'null';} return String(obj);},evaluate:function(str,secure){return(($type(str)!='string')||(secure&&!str.test(/^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/)))?null:eval('('+str+')');}};Json.Remote=XHR.extend({initialize:function(url,options){this.url=url;this.addEvent('onSuccess',this.onComplete);this.parent(options);this.setHeader('X-Request','JSON');},send:function(obj){return this.parent(this.url,'json='+Json.toString(obj));},onComplete:function(){this.fireEvent('onComplete',[Json.evaluate(this.response.text,this.options.secure)]);}});var Asset=new Abstract({javascript:function(source,properties){properties=$merge({'onload':Class.empty},properties);var script=new Element('script',{'src':source}).addEvents({'load':properties.onload,'readystatechange':function(){if(this.readyState=='complete')this.fireEvent('load');}});delete properties.onload;return script.setProperties(properties).inject(document.head);},css:function(source,properties){return new Element('link',$merge({'rel':'stylesheet','media':'screen','type':'text/css','href':source},properties)).inject(document.head);},image:function(source,properties){properties=$merge({'onload':Class.empty,'onabort':Class.empty,'onerror':Class.empty},properties);var image=new Image();image.src=source;var element=new Element('img',{'src':source});['load','abort','error'].each(function(type){var event=properties['on'+type];delete properties['on'+type];element.addEvent(type,function(){this.removeEvent(type,arguments.callee);event.call(this);});});if(image.width&&image.height)element.fireEvent('load',element,1);return element.setProperties(properties);},images:function(sources,options){options=$merge({onComplete:Class.empty,onProgress:Class.empty},options);if(!sources.push)sources=[sources];var images=[];var counter=0;sources.each(function(source){var img=new Asset.image(source,{'onload':function(){options.onProgress.call(this,counter);counter++;if(counter==sources.length)options.onComplete();}});images.push(img);});return new Elements(images);}});var Hash=new Class({length:0,initialize:function(object){this.obj=object||{};this.setLength();},get:function(key){return(this.hasKey(key))?this.obj[key]:null;},hasKey:function(key){return(key in this.obj);},set:function(key,value){if(!this.hasKey(key))this.length++;this.obj[key]=value;return this;},setLength:function(){this.length=0;for(var p in this.obj)this.length++;return this;},remove:function(key){if(this.hasKey(key)){delete this.obj[key];this.length--;} return this;},each:function(fn,bind){$each(this.obj,fn,bind);},extend:function(obj){$extend(this.obj,obj);return this.setLength();},merge:function(){this.obj=$merge.apply(null,[this.obj].extend(arguments));return this.setLength();},empty:function(){this.obj={};this.length=0;return this;},keys:function(){var keys=[];for(var property in this.obj)keys.push(property);return keys;},values:function(){var values=[];for(var property in this.obj)values.push(this.obj[property]);return values;}});function $H(obj){return new Hash(obj);};Hash.Cookie=Hash.extend({initialize:function(name,options){this.name=name;this.options=$extend({'autoSave':true},options||{});this.load();},save:function(){if(this.length==0){Cookie.remove(this.name,this.options);return true;} var str=Json.toString(this.obj);if(str.length>4096)return false;Cookie.set(this.name,str,this.options);return true;},load:function(){this.obj=Json.evaluate(Cookie.get(this.name),true)||{};this.setLength();}});Hash.Cookie.Methods={};['extend','set','merge','empty','remove'].each(function(method){Hash.Cookie.Methods[method]=function(){Hash.prototype[method].apply(this,arguments);if(this.options.autoSave)this.save();return this;};});Hash.Cookie.implement(Hash.Cookie.Methods);var Color=new Class({initialize:function(color,type){type=type||(color.push?'rgb':'hex');var rgb,hsb;switch(type){case'rgb':rgb=color;hsb=rgb.rgbToHsb();break;case'hsb':rgb=color.hsbToRgb();hsb=color;break;default:rgb=color.hexToRgb(true);hsb=rgb.rgbToHsb();} rgb.hsb=hsb;rgb.hex=rgb.rgbToHex();return $extend(rgb,Color.prototype);},mix:function(){var colors=$A(arguments);var alpha=($type(colors[colors.length-1])=='number')?colors.pop():50;var rgb=this.copy();colors.each(function(color){color=new Color(color);for(var i=0;i<3;i++)rgb[i]=Math.round((rgb[i]/100*(100-alpha))+(color[i]/100*alpha));});return new Color(rgb,'rgb');},invert:function(){return new Color(this.map(function(value){return 255-value;}));},setHue:function(value){return new Color([value,this.hsb[1],this.hsb[2]],'hsb');},setSaturation:function(percent){return new Color([this.hsb[0],percent,this.hsb[2]],'hsb');},setBrightness:function(percent){return new Color([this.hsb[0],this.hsb[1],percent],'hsb');}});function $RGB(r,g,b){return new Color([r,g,b],'rgb');};function $HSB(h,s,b){return new Color([h,s,b],'hsb');};Array.extend({rgbToHsb:function(){var red=this[0],green=this[1],blue=this[2];var hue,saturation,brightness;var max=Math.max(red,green,blue),min=Math.min(red,green,blue);var delta=max-min;brightness=max/255;saturation=(max!=0)?delta/max:0;if(saturation==0){hue=0;}else{var rr=(max-red)/delta;var gr=(max-green)/delta;var br=(max-blue)/delta;if(red==max)hue=br-gr;else if(green==max)hue=2+rr-br;else hue=4+gr-rr;hue/=6;if(hue<0)hue++;} return[Math.round(hue*360),Math.round(saturation*100),Math.round(brightness*100)];},hsbToRgb:function(){var br=Math.round(this[2]/100*255);if(this[1]==0){return[br,br,br];}else{var hue=this[0]%360;var f=hue%60;var p=Math.round((this[2]*(100-this[1]))/10000*255);var q=Math.round((this[2]*(6000-this[1]*f))/600000*255);var t=Math.round((this[2]*(6000-this[1]*(60-f)))/600000*255);switch(Math.floor(hue/60)){case 0:return[br,t,p];case 1:return[q,br,p];case 2:return[p,br,t];case 3:return[p,q,br];case 4:return[t,p,br];case 5:return[br,p,q];}} return false;}});var Scroller=new Class({options:{area:20,velocity:1,onChange:function(x,y){this.element.scrollTo(x,y);}},initialize:function(element,options){this.setOptions(options);this.element=$(element);this.mousemover=([window,document].contains(element))?$(document.body):this.element;},start:function(){this.coord=this.getCoords.bindWithEvent(this);this.mousemover.addListener('mousemove',this.coord);},stop:function(){this.mousemover.removeListener('mousemove',this.coord);this.timer=$clear(this.timer);},getCoords:function(event){this.page=(this.element==window)?event.client:event.page;if(!this.timer)this.timer=this.scroll.periodical(50,this);},scroll:function(){var el=this.element.getSize();var pos=this.element.getPosition();var change={'x':0,'y':0};for(var z in this.page){if(this.page[z]<(this.options.area+pos[z])&&el.scroll[z]!=0) change[z]=(this.page[z]-this.options.area-pos[z])*this.options.velocity;else if(this.page[z]+this.options.area>(el.size[z]+pos[z])&&el.scroll[z]+el.size[z]!=el.scrollSize[z]) change[z]=(this.page[z]-el.size[z]+this.options.area-pos[z])*this.options.velocity;} if(change.y||change.x)this.fireEvent('onChange',[el.scroll.x+change.x,el.scroll.y+change.y]);}});Scroller.implement(new Events,new Options);var Slider=new Class({options:{onChange:Class.empty,onComplete:Class.empty,onTick:function(pos){this.knob.setStyle(this.p,pos);},mode:'horizontal',steps:100,offset:0},initialize:function(el,knob,options){this.element=$(el);this.knob=$(knob);this.setOptions(options);this.previousChange=-1;this.previousEnd=-1;this.step=-1;this.element.addEvent('mousedown',this.clickedElement.bindWithEvent(this));var mod,offset;switch(this.options.mode){case'horizontal':this.z='x';this.p='left';mod={'x':'left','y':false};offset='offsetWidth';break;case'vertical':this.z='y';this.p='top';mod={'x':false,'y':'top'};offset='offsetHeight';} this.max=this.element[offset]-this.knob[offset]+(this.options.offset*2);this.half=this.knob[offset]/2;this.getPos=this.element['get'+this.p.capitalize()].bind(this.element);this.knob.setStyle('position','relative').setStyle(this.p,-this.options.offset);var lim={};lim[this.z]=[-this.options.offset,this.max-this.options.offset];this.drag=new Drag.Base(this.knob,{limit:lim,modifiers:mod,snap:0,onStart:function(){this.draggedKnob();}.bind(this),onDrag:function(){this.draggedKnob();}.bind(this),onComplete:function(){this.draggedKnob();this.end();}.bind(this)});if(this.options.initialize)this.options.initialize.call(this);},set:function(step){this.step=step.limit(0,this.options.steps);this.checkStep();this.end();this.fireEvent('onTick',this.toPosition(this.step));return this;},clickedElement:function(event){var position=event.page[this.z]-this.getPos()-this.half;position=position.limit(-this.options.offset,this.max-this.options.offset);this.step=this.toStep(position);this.checkStep();this.end();this.fireEvent('onTick',position);},draggedKnob:function(){this.step=this.toStep(this.drag.value.now[this.z]);this.checkStep();},checkStep:function(){if(this.previousChange!=this.step){this.previousChange=this.step;this.fireEvent('onChange',this.step);}},end:function(){if(this.previousEnd!==this.step){this.previousEnd=this.step;this.fireEvent('onComplete',this.step+'');}},toStep:function(position){return Math.round((position+this.options.offset)/this.max*this.options.steps);},toPosition:function(step){return this.max*step/this.options.steps;}});Slider.implement(new Events);Slider.implement(new Options);var SmoothScroll=Fx.Scroll.extend({initialize:function(options){this.parent(window,options);this.links=(this.options.links)?$$(this.options.links):$$(document.links);var location=window.location.href.match(/^[^#]*/)[0]+'#';this.links.each(function(link){if(link.href.indexOf(location)!=0)return;var anchor=link.href.substr(location.length);if(anchor&&$(anchor))this.useLink(link,anchor);},this);if(!window.webkit419)this.addEvent('onComplete',function(){window.location.hash=this.anchor;});},useLink:function(link,anchor){link.addEvent('click',function(event){this.anchor=anchor;this.toElement(anchor);event.stop();}.bindWithEvent(this));}});var Sortables=new Class({options:{handles:false,onStart:Class.empty,onComplete:Class.empty,ghost:true,snap:3,onDragStart:function(element,ghost){ghost.setStyle('opacity',0.7);element.setStyle('opacity',0.7);},onDragComplete:function(element,ghost){element.setStyle('opacity',1);ghost.remove();this.trash.remove();}},initialize:function(list,options){this.setOptions(options);this.list=$(list);this.elements=this.list.getChildren();this.handles=(this.options.handles)?$$(this.options.handles):this.elements;this.bound={'start':[],'moveGhost':this.moveGhost.bindWithEvent(this)};for(var i=0,l=this.handles.length;i0);var prev=this.active.getPrevious();var next=this.active.getNext();if(prev&&up&&nownext.getCoordinates().top)this.active.injectAfter(next);this.previous=now;},serialize:function(converter){return this.list.getChildren().map(converter||function(el){return this.elements.indexOf(el);},this);},end:function(){this.previous=null;document.removeListener('mousemove',this.bound.move);document.removeListener('mouseup',this.bound.end);if(this.options.ghost){document.removeListener('mousemove',this.bound.moveGhost);this.fireEvent('onDragComplete',[this.active,this.ghost]);} this.fireEvent('onComplete',this.active);}});Sortables.implement(new Events,new Options);var Tips=new Class({options:{onShow:function(tip){tip.setStyle('visibility','visible');},onHide:function(tip){tip.setStyle('visibility','hidden');},maxTitleChars:30,showDelay:100,hideDelay:100,className:'tool',offsets:{'x':16,'y':16},fixed:false},initialize:function(elements,options){this.setOptions(options);this.toolTip=new Element('div',{'class':this.options.className+'-tip','styles':{'position':'absolute','top':'0','left':'0','visibility':'hidden'}}).inject(document.body);this.wrapper=new Element('div').inject(this.toolTip);$$(elements).each(this.build,this);if(this.options.initialize)this.options.initialize.call(this);},build:function(el){el.$tmp.myTitle=(el.href&&el.getTag()=='a')?el.href.replace('http://',''):(el.rel||false);if(el.title){var dual=el.title.split('::');if(dual.length>1){el.$tmp.myTitle=dual[0].trim();el.$tmp.myText=dual[1].trim();}else{el.$tmp.myText=el.title;} el.removeAttribute('title');}else{el.$tmp.myText=false;} if(el.$tmp.myTitle&&el.$tmp.myTitle.length>this.options.maxTitleChars)el.$tmp.myTitle=el.$tmp.myTitle.substr(0,this.options.maxTitleChars-1)+"…";el.addEvent('mouseenter',function(event){this.start(el);if(!this.options.fixed)this.locate(event);else this.position(el);}.bind(this));if(!this.options.fixed)el.addEvent('mousemove',this.locate.bindWithEvent(this));var end=this.end.bind(this);el.addEvent('mouseleave',end);el.addEvent('trash',end);},start:function(el){this.wrapper.empty();if(el.$tmp.myTitle){this.title=new Element('span').inject(new Element('div',{'class':this.options.className+'-title'}).inject(this.wrapper)).setHTML(el.$tmp.myTitle);} if(el.$tmp.myText){this.text=new Element('span').inject(new Element('div',{'class':this.options.className+'-text'}).inject(this.wrapper)).setHTML(el.$tmp.myText);} $clear(this.timer);this.timer=this.show.delay(this.options.showDelay,this);},end:function(event){$clear(this.timer);this.timer=this.hide.delay(this.options.hideDelay,this);},position:function(element){var pos=element.getPosition();this.toolTip.setStyles({'left':pos.x+this.options.offsets.x,'top':pos.y+this.options.offsets.y});},locate:function(event){var win={'x':window.getWidth(),'y':window.getHeight()};var scroll={'x':window.getScrollLeft(),'y':window.getScrollTop()};var tip={'x':this.toolTip.offsetWidth,'y':this.toolTip.offsetHeight};var prop={'x':'left','y':'top'};for(var z in prop){var pos=event.page[z]+this.options.offsets[z];if((pos+tip[z]-scroll[z])>win[z])pos=event.page[z]-this.options.offsets[z]-tip[z];this.toolTip.setStyle(prop[z],pos);};},show:function(){if(this.options.timeout)this.timer=this.hide.delay(this.options.timeout,this);this.fireEvent('onShow',[this.toolTip]);},hide:function(){this.fireEvent('onHide',[this.toolTip]);}});Tips.implement(new Events,new Options);var Group=new Class({initialize:function(){this.instances=$A(arguments);this.events={};this.checker={};},addEvent:function(type,fn){this.checker[type]=this.checker[type]||{};this.events[type]=this.events[type]||[];if(this.events[type].contains(fn))return false;else this.events[type].push(fn);this.instances.each(function(instance,i){instance.addEvent(type,this.check.bind(this,[type,instance,i]));},this);return this;},check:function(type,instance,i){this.checker[type][i]=true;var every=this.instances.every(function(current,j){return this.checker[type][j]||false;},this);if(!every)return;this.checker[type]={};this.events[type].each(function(event){event.call(this,this.instances,instance);},this);}});var Accordion=Fx.Elements.extend({options:{onActive:Class.empty,onBackground:Class.empty,display:0,show:false,height:true,width:false,opacity:true,fixedHeight:false,fixedWidth:false,wait:false,alwaysHide:false},initialize:function(){var options,togglers,elements,container;$each(arguments,function(argument,i){switch($type(argument)){case'object':options=argument;break;case'element':container=$(argument);break;default:var temp=$$(argument);if(!togglers)togglers=temp;else elements=temp;}});this.togglers=togglers||[];this.elements=elements||[];this.container=$(container);this.setOptions(options);this.previous=-1;if(this.options.alwaysHide)this.options.wait=true;if($chk(this.options.show)){this.options.display=false;this.previous=this.options.show;} if(this.options.start){this.options.display=false;this.options.show=false;} this.effects={};if(this.options.opacity)this.effects.opacity='fullOpacity';if(this.options.width)this.effects.width=this.options.fixedWidth?'fullWidth':'offsetWidth';if(this.options.height)this.effects.height=this.options.fixedHeight?'fullHeight':'scrollHeight';for(var i=0,l=this.togglers.length;i0));this.fireEvent(hide?'onBackground':'onActive',[this.togglers[i],el]);for(var fx in this.effects)obj[i][fx]=hide?0:el[this.effects[fx]];},this);return this.start(obj);},showThisHideOpen:function(index){return this.display(index);}});Fx.Accordion=Accordion;;var JCaption=new Class({initialize:function(selector) {this.selector=selector;var images=$$(selector);images.each(function(image){this.createCaption(image);},this);},createCaption:function(element) {var caption=document.createTextNode(element.title);var container=document.createElement("div");var text=document.createElement("p");var width=element.getAttribute("width");var align=element.getAttribute("align");if(!width){width=element.width;} if(!align) align=element.getStyle("float");if(!align) align=element.style.styleFloat;if(align==""){align="none";} text.appendChild(caption);text.className=this.selector.replace('.','_');element.parentNode.insertBefore(container,element);container.appendChild(element);if(element.title!=""){container.appendChild(text);} container.className=this.selector.replace('.','_');container.className=container.className+" "+align;container.setAttribute("style","float:"+align);container.style.width=width+"px";}});document.caption=null;window.addEvent('load',function(){var caption=new JCaption('img.caption') document.caption=caption});;var JVMenu=new Class({options:{menuType:'css',fxDuration:350,fxTransition:Fx.Transitions.linear,fxMode:'',fxShowDelay:250,fxHideDelay:250,clickToOpen:true,marginLeft:20},initialize:function(selectors,options){this.setOptions(options);var selectors=$$(selectors);if(!selectors.length)return;selectors.each(function(selector){this.setup(selector);}.bind(this));},setup:function(selector){var that=this;var fxDefault={};var fxTimer=null;var mnTimer=null;switch(that.options.fxMode){case'none':that.options.fxDuration=0;break;case'width':fxDefault={'width':0};break;case'height':fxDefault={'height':0};break;case'opacity':fxDefault={'opacity':0};break;case'widthopacity':fxDefault={'width':0,'opacity':0};break;case'heightopacity':fxDefault={'height':0,'opacity':0};break;case'widthheightopacity':fxDefault={'width':0,'height':0,'opacity':0};break;} switch(that.options.menuType){case'css':return;case'fade':var liParentTags=selector.getElements('li.parent');liParentTags.each(function(liParentTag){var ulTag=liParentTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liParentTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liParentTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} var elCoord=that.quickCoord(fx.element);if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} fx.element.setStyle('overflow','hidden');this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liParentTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});var liTags=selector.getElements('li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'fadedown':var liTags=selector.getChildren('li');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxDown={'height':0,'opacity':0};var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDown);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=fx.element.getCoordinates();if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDown);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li.parent');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} var elCoord=fx.element.getCoordinates();if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} fx.element.setStyle('overflow','hidden');this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'dropline':var liTags=selector.getChildren('li');var liTagActive=null;liTags.each(function(liTag){if(liTag.hasClass('active')){liTagActive=liTag;} var ulTag=liTag.getElement('ul');if(ulTag){liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();liTagActive.removeClass('active');liTag.addClass('active');});liTag.addEvent('mouseleave',function(){if(liTagActive&&liTagActive==liTag){return;} liTag.removeClass('active');liTagActive.addClass('active');});} else{liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){liTagActive.removeClass('active');liTag.addClass('active');});liTag.addEvent('mouseleave',function(){liTag.removeClass('active');liTagActive.addClass('active');});}});liTags=selector.getElements('li li.parent');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'dropdown':var liTags=selector.getChildren('li');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){liTag.addClass('dparent');var dd=new Element('div',{'class':'dd'}).adopt(ulTag).injectInside(liTag);dd.getFirst().setStyles({'position':'static','top':'auto','left':'auto'});var fxProperties=dd.getStyles('width','height','opacity');var ddfx=new Fx.Styles(dd,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onStart:function(elm){elm.setStyle('overflow','hidden');},onComplete:function(elm){elm.setStyle('overflow','visible');if(elm.getStyle('height')=='0px'){elm.getParent().removeClass('hover');}}}).set({'height':0});dd.setStyle('overflow','hidden');var ulfx=new Fx.Styles(dd.getFirst(),{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false}).set({'margin-top':-fxProperties.height.toInt()});liTag.isShow=false;liTag.mnTimer=null;liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();if(liTag.isShow)return;$clear(liTag.mnTimer);liTag.mnTimer=setTimeout(function(){this.getParent().addClass('hover');ddfx.stop().start(fxProperties);ulfx.set({'opacity':0,'margin-top':-fxProperties.height.toInt()});ulfx.stop().start({'opacity':1,'margin-top':0});liTag.isShow=true;}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){$clear(liTag.mnTimer);liTag.mnTimer=setTimeout(function(){ulfx.stop().start({'opacity':0,'margin-top':-fxProperties.height.toInt()});ddfx.stop().start({'height':0});liTag.isShow=false;}.bind(this),that.options.fxHideDelay);});}});var liTagSubs=selector.getElements('li li.parent');liTagSubs.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.fxTimer=null;liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();$clear(liTag.fxTimer);liTag.fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){$clear(liTag.fxTimer);liTag.fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;}},quickCoord:function(elem){var old={};var open={'overflow':'hidden','position':'absolute','visibility':'hidden','display':'block','width':'','height':''};for(var name in open){old[name]=elem.style[name];elem.style[name]=open[name];} var result=elem.getCoordinates();for(name in open){elem.style[name]=old[name];} return result;}});JVMenu.implement(new Options);JVMenu.implement(new Chain);var JVVMenu=new Class({options:{menuType:'css',fxDuration:350,fxTransition:Fx.Transitions.linear,fxMode:'',fxShowDelay:250,fxHideDelay:250,clickToOpen:true,marginLeft:20},initialize:function(selectors,options){this.setOptions(options);var selectors=$$(selectors);if(!selectors.length)return;selectors.each(function(selector){this.setup(selector);}.bind(this));},setup:function(selector){var that=this;var fxTimer=null;var fxDefault={};switch(that.options.fxMode){case'none':that.options.fxDuration=0;break;case'width':fxDefault={'width':0};break;case'height':fxDefault={'height':0};break;case'opacity':fxDefault={'opacity':0};break;case'widthopacity':fxDefault={'width':0,'opacity':0};break;case'heightopacity':fxDefault={'height':0,'opacity':0};break;case'widthheightopacity':fxDefault={'width':0,'height':0,'opacity':0};break;} switch(that.options.menuType){case'css':return;case'fade':var liParentTags=selector.getElements('li.parent');liParentTags.each(function(liParentTag){var ulTag=liParentTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false}).set(fxDefault);fx.element.setStyle('overflow','hidden');liParentTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.left+fxProperties.width.toInt()>window.getWidth()){fx.element.setStyle('marginLeft',-fxProperties.width.toInt()+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liParentTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});var liTags=selector.getElements('li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'faderight':var liTags=selector.getChildren('li');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxRight={'width':0,'opacity':0};var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false}).set(fxRight);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.left+fxProperties.width.toInt()>window.getWidth()){fx.element.setStyle('marginLeft',-fxProperties.width.toInt()+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxRight).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li.parent');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('width')=='0px'){elm.setStyle('marginLeft','');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.left+fxProperties.width.toInt()>window.getWidth()){fx.element.setStyle('marginLeft',-fxProperties.width.toInt()+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;}},quickCoord:function(elem){var old={};var open={'overflow':'hidden','position':'absolute','visibility':'hidden','display':'block','width':'','height':''};for(var name in open){old[name]=elem.style[name];elem.style[name]=open[name];} var result=elem.getCoordinates();for(name in open){elem.style[name]=old[name];} return result;}});JVVMenu.implement(new Options);JVVMenu.implement(new Chain);var JVAMenu=new Class({options:{fxDuration:350,fxTransition:Fx.Transitions.linear,fxMode:'accordion',togglers:'li.parent',elements:'ul',alwaysHide:false,clickToOpen:true},initialize:function(selectors,options){this.setOptions(options);var selectors=$$(selectors);if(!selectors.length)return;selectors.each(function(selector){this.setup(selector);}.bind(this));},setup:function(selector){var that=this;switch(that.options.fxMode){case'slide':selector.getElements(that.options.togglers).each(function(toggler,index){var ulTag=toggler.getElement(that.options.elements);var fx=new Fx.Slide(ulTag,{transition:that.options.fxTransition,duration:that.options.fxDuration});if(!toggler.hasClass('active')){fx.hide();} toggler.addEvent(that.options.clickToOpen?'click':'mouseenter',function(){fx.toggle().chain(function(){this.open?toggler.addClass('active'):toggler.removeClass('active');});});});break;case'accordion':default:var showIndex=0;selector.getElements(that.options.togglers).each(function(toggler,index){if(toggler.hasClass('active')){showIndex=index;}});$extend(this.options,{show:showIndex,onActive:function(t,e){t.addClass('active');},onBackground:function(t,e){t.removeClass('active');}});new Fx.Accordion(selector.getElements(that.options.togglers),selector.getElements(that.options.elements),that.options);}}});JVAMenu.implement(new Options);;var JVMenu=new Class({options:{menuType:'css',fxDuration:350,fxTransition:Fx.Transitions.linear,fxMode:'',fxShowDelay:250,fxHideDelay:250,clickToOpen:true,marginLeft:20},initialize:function(selectors,options){this.setOptions(options);var selectors=$$(selectors);if(!selectors.length)return;selectors.each(function(selector){this.setup(selector);}.bind(this));},setup:function(selector){var that=this;var fxDefault={};var fxTimer=null;var mnTimer=null;switch(that.options.fxMode){case'none':that.options.fxDuration=0;break;case'width':fxDefault={'width':0};break;case'height':fxDefault={'height':0};break;case'opacity':fxDefault={'opacity':0};break;case'widthopacity':fxDefault={'width':0,'opacity':0};break;case'heightopacity':fxDefault={'height':0,'opacity':0};break;case'widthheightopacity':fxDefault={'width':0,'height':0,'opacity':0};break;} switch(that.options.menuType){case'css':return;case'fade':var liParentTags=selector.getElements('li.parent');liParentTags.each(function(liParentTag){var ulTag=liParentTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liParentTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liParentTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} var elCoord=that.quickCoord(fx.element);if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} fx.element.setStyle('overflow','hidden');this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liParentTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});var liTags=selector.getElements('li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'fadedown':var liTags=selector.getChildren('li');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxDown={'height':0,'opacity':0};var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDown);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=fx.element.getCoordinates();if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDown);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li.parent');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} var elCoord=fx.element.getCoordinates();if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} fx.element.setStyle('overflow','hidden');this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'dropline':var liTags=selector.getChildren('li');var liTagActive=null;liTags.each(function(liTag){if(liTag.hasClass('active')){liTagActive=liTag;} var ulTag=liTag.getElement('ul');if(ulTag){liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();liTagActive.removeClass('active');liTag.addClass('active');});liTag.addEvent('mouseleave',function(){if(liTagActive&&liTagActive==liTag){return;} liTag.removeClass('active');liTagActive.addClass('active');});} else{liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){liTagActive.removeClass('active');liTag.addClass('active');});liTag.addEvent('mouseleave',function(){liTag.removeClass('active');liTagActive.addClass('active');});}});liTags=selector.getElements('li li.parent');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'dropdown':var liTags=selector.getChildren('li');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){liTag.addClass('dparent');var dd=new Element('div',{'class':'dd'}).adopt(ulTag).injectInside(liTag);dd.getFirst().setStyles({'position':'static','top':'auto','left':'auto'});var fxProperties=dd.getStyles('width','height','opacity');var ddfx=new Fx.Styles(dd,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onStart:function(elm){elm.setStyle('overflow','hidden');},onComplete:function(elm){elm.setStyle('overflow','visible');if(elm.getStyle('height')=='0px'){elm.getParent().removeClass('hover');}}}).set({'height':0});dd.setStyle('overflow','hidden');var ulfx=new Fx.Styles(dd.getFirst(),{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false}).set({'margin-top':-fxProperties.height.toInt()});liTag.isShow=false;liTag.mnTimer=null;liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();if(liTag.isShow)return;$clear(liTag.mnTimer);liTag.mnTimer=setTimeout(function(){this.getParent().addClass('hover');ddfx.stop().start(fxProperties);ulfx.set({'opacity':0,'margin-top':-fxProperties.height.toInt()});ulfx.stop().start({'opacity':1,'margin-top':0});liTag.isShow=true;}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){$clear(liTag.mnTimer);liTag.mnTimer=setTimeout(function(){ulfx.stop().start({'opacity':0,'margin-top':-fxProperties.height.toInt()});ddfx.stop().start({'height':0});liTag.isShow=false;}.bind(this),that.options.fxHideDelay);});}});var liTagSubs=selector.getElements('li li.parent');liTagSubs.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('height')=='0px'||elm.getStyle('width')=='0px'||elm.getStyle('opacity')=='0'){liTag.removeClass('hover');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.fxTimer=null;liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();$clear(liTag.fxTimer);liTag.fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.right+that.options.marginLeft>window.getWidth()){fx.element.setStyle('marginLeft',-elCoord.width+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){$clear(liTag.fxTimer);liTag.fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault);}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;}},quickCoord:function(elem){var old={};var open={'overflow':'hidden','position':'absolute','visibility':'hidden','display':'block','width':'','height':''};for(var name in open){old[name]=elem.style[name];elem.style[name]=open[name];} var result=elem.getCoordinates();for(name in open){elem.style[name]=old[name];} return result;}});JVMenu.implement(new Options);JVMenu.implement(new Chain);var JVVMenu=new Class({options:{menuType:'css',fxDuration:350,fxTransition:Fx.Transitions.linear,fxMode:'',fxShowDelay:250,fxHideDelay:250,clickToOpen:true,marginLeft:20},initialize:function(selectors,options){this.setOptions(options);var selectors=$$(selectors);if(!selectors.length)return;selectors.each(function(selector){this.setup(selector);}.bind(this));},setup:function(selector){var that=this;var fxTimer=null;var fxDefault={};switch(that.options.fxMode){case'none':that.options.fxDuration=0;break;case'width':fxDefault={'width':0};break;case'height':fxDefault={'height':0};break;case'opacity':fxDefault={'opacity':0};break;case'widthopacity':fxDefault={'width':0,'opacity':0};break;case'heightopacity':fxDefault={'height':0,'opacity':0};break;case'widthheightopacity':fxDefault={'width':0,'height':0,'opacity':0};break;} switch(that.options.menuType){case'css':return;case'fade':var liParentTags=selector.getElements('li.parent');liParentTags.each(function(liParentTag){var ulTag=liParentTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false}).set(fxDefault);fx.element.setStyle('overflow','hidden');liParentTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.left+fxProperties.width.toInt()>window.getWidth()){fx.element.setStyle('marginLeft',-fxProperties.width.toInt()+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liParentTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});var liTags=selector.getElements('li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;case'faderight':var liTags=selector.getChildren('li');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxRight={'width':0,'opacity':0};var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false}).set(fxRight);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.left+fxProperties.width.toInt()>window.getWidth()){fx.element.setStyle('marginLeft',-fxProperties.width.toInt()+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxRight).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li.parent');liTags.each(function(liTag){var ulTag=liTag.getElement('ul');if(ulTag){var fxProperties=ulTag.getStyles('width','height','opacity');var fx=new Fx.Styles(ulTag,{duration:that.options.fxDuration,transition:that.options.fxTransition,wait:false,onComplete:function(elm){if(elm.getStyle('width')=='0px'){elm.setStyle('marginLeft','');}}}).set(fxDefault);fx.element.setStyle('overflow','hidden');liTag.getFirst().addEvent(that.options.clickToOpen?'click':'mouseenter',function(e){if(that.options.clickToOpen)new Event(e).stop();fxTimer=setTimeout(function(){if(this.getParent().getParent().getStyle('overflow')=='hidden'){this.getParent().getParent().setStyle('overflow','visible');} fx.element.setStyle('overflow','hidden');var elCoord=that.quickCoord(fx.element);if(elCoord.left+fxProperties.width.toInt()>window.getWidth()){fx.element.setStyle('marginLeft',-fxProperties.width.toInt()+that.options.marginLeft);} this.getParent().addClass('hover');fx.stop().start(fxProperties);}.bind(this),that.options.fxShowDelay);});liTag.addEvent('mouseleave',function(){fxTimer=setTimeout(function(){fx.element.setStyle('overflow','hidden');fx.stop().start(fxDefault).chain(function(){this.removeClass('hover');}.bind(this));}.bind(this),that.options.fxHideDelay);});}});liTags=selector.getElements('li li');var liChildTags=liTags.filter(function(item){return!item.hasClass('parent');});liChildTags.each(function(liChildTag){liChildTag.addEvents({'mouseenter':function(){this.addClass('hover');},'mouseleave':function(){this.removeClass('hover');}});});break;}},quickCoord:function(elem){var old={};var open={'overflow':'hidden','position':'absolute','visibility':'hidden','display':'block','width':'','height':''};for(var name in open){old[name]=elem.style[name];elem.style[name]=open[name];} var result=elem.getCoordinates();for(name in open){elem.style[name]=old[name];} return result;}});JVVMenu.implement(new Options);JVVMenu.implement(new Chain);var JVAMenu=new Class({options:{fxDuration:350,fxTransition:Fx.Transitions.linear,fxMode:'accordion',togglers:'li.parent',elements:'ul',alwaysHide:false,clickToOpen:true},initialize:function(selectors,options){this.setOptions(options);var selectors=$$(selectors);if(!selectors.length)return;selectors.each(function(selector){this.setup(selector);}.bind(this));},setup:function(selector){var that=this;switch(that.options.fxMode){case'slide':selector.getElements(that.options.togglers).each(function(toggler,index){var ulTag=toggler.getElement(that.options.elements);var fx=new Fx.Slide(ulTag,{transition:that.options.fxTransition,duration:that.options.fxDuration});if(!toggler.hasClass('active')){fx.hide();} toggler.addEvent(that.options.clickToOpen?'click':'mouseenter',function(){fx.toggle().chain(function(){this.open?toggler.addClass('active'):toggler.removeClass('active');});});});break;case'accordion':default:var showIndex=0;selector.getElements(that.options.togglers).each(function(toggler,index){if(toggler.hasClass('active')){showIndex=index;}});$extend(this.options,{show:showIndex,onActive:function(t,e){t.addClass('active');},onBackground:function(t,e){t.removeClass('active');}});new Fx.Accordion(selector.getElements(that.options.togglers),selector.getElements(that.options.elements),that.options);}}});JVAMenu.implement(new Options);;var JVEqualHeight=function(selectors){var maxHeight=0;$$(selectors).each(function(selector){maxHeight=Math.max(maxHeight,selector.getCoordinates().height);});$$(selectors).each(function(selector){selector.setStyle(window.ie6?'height':'min-height',maxHeight);});};var JVEffects=new Class({Implements:[Options],options:{fxDuration:350,fxTransition:Fx.Transitions.linear,wait:false},initialize:function(selectors,fxPropertiesFrom,fxPropertiesTo,options){this.setOptions(options);$$(selectors).each(function(selector,index){var selectorFx=new Fx.Styles(selector,this.options);selector.addEvents({'mouseenter':function(){selectorFx.stop().start(fxPropertiesFrom);},'mouseleave':function(){selectorFx.stop().start(fxPropertiesTo);}});});}});window.addEvent('domready',function(){var selectors=$$('.e-height');if(selectors){selectors.each(function(el){if(el){var childs=el.getElements(".jv-module");if(childs){var maxHeight=0;childs.each(function(child){maxHeight=Math.max(maxHeight,child.getCoordinates().height);});childs.each(function(child){child.setStyle(window.ie6?'height':'min-height',maxHeight);});}}});}});;var JVLazyLoad=new Class({options:{replacer:'templates/jv-framework/themes/default/images/trans.gif',selectors:'img',duration:750},initialize:function(options){this.setOptions(options);this.selectors=$$(this.options.selectors);if(!this.selectors.length){this.selectors=$$(this.options.selectors);} this.selectors.each(function(selector){selector.osrc=selector.src;selector.src=this.options.replacer;}.bind(this));window.addEvent('scroll',this.initLoad.bind(this));this.initLoad();},initLoad:function(){var that=this;this.selectors.each(function(selector){if(selector.getCoordinates().top0?that.options.display-1:that.len-1);clearInterval(that.autoTimer);if(!that.paused&&that.options.autoPlay==1)that.initAutoPlay();break;case'right':that.load(e.shift?that.len-1:that.options.display0?this.options.display-1:this.len-1);},next:function(){this.load(this.options.display\n\t

Nunc tempus lorem libero 1<\/h3>\n

non auctor quam. Quisque congue imperdiet augue nec tempor. Nullam vel metus quam, vel ullamcorper mauris. <\/p>\n

Proin dictum, sapien sed cursus interdum, odio lacus sollicitudin quam, ac interdum sem urna consequat metus.<\/p>\n<\/div>","link":"http:\/\/webtop.vn\/"},{"name":"http:\/\/demo.joomlavi.com\/jv-melody\/modules\/mod_jvslideshow\/assets\/data\/2.jpg","title":"2.jpg","description":"

\n\t

Nunc tempus lorem libero 2<\/h3>\n

non auctor quam. Quisque congue imperdiet augue nec tempor. Nullam vel metus quam, vel ullamcorper mauris. <\/p>\n

Proin dictum, sapien sed cursus interdum, odio lacus sollicitudin quam, ac interdum sem urna consequat metus.<\/p>\n<\/div>","link":"http:\/\/www.joomlavi.com\/"},{"name":"http:\/\/demo.joomlavi.com\/jv-melody\/modules\/mod_jvslideshow\/assets\/data\/3.jpg","title":"3.jpg","description":"

\n\t

Nunc tempus lorem libero 3<\/h3>\n

non auctor quam. Quisque congue imperdiet augue nec tempor. Nullam vel metus quam, vel ullamcorper mauris. <\/p>\n

Proin dictum, sapien sed cursus interdum, odio lacus sollicitudin quam, ac interdum sem urna consequat metus.<\/p>\n<\/div>","link":"http:\/\/joomla.org\/"}],{captions:1,autoHideCaptions:0,arrows:0,autoHideArrows:1,controls:1,autoHideControls:0,keyboard:1,autoPlay:0,width:0,height:300,captionsOpacity:0.7,display:0,delay:5000,duration:1500,boxCols:8,boxRows:4,slices:20,transition:Fx.Transitions.Sine.easeInOut,forceEffect:0,fx:'fade',linkTarget:'_blank'});});window.addEvent('domready',function(){$$('span.color-list').each(function(el){el.addEvent('click',function(){$$('span.color-list').removeClass('active');this.addClass('active');});});});