/** jquery.color.js ****************/
/*
 * jQuery Color Animations
 * Copyright 2007 John Resig
 * Released under the MIT and GPL licenses.
 */

(function(jQuery){

	// We override the animation for all of these color styles
	jQuery.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){
		jQuery.fx.step[attr] = function(fx){
			if ( fx.state == 0 ) {
				fx.start = getColor( fx.elem, attr );
				fx.end = getRGB( fx.end );
			}
            if ( fx.start )
                fx.elem.style[attr] = "rgb(" + [
                    Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0]), 255), 0),
                    Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1]), 255), 0),
                    Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2]), 255), 0)
                ].join(",") + ")";
		}
	});

	// Color Conversion functions from highlightFade
	// By Blair Mitchelmore
	// http://jquery.offput.ca/highlightFade/

	// Parse strings looking for color tuples [255,255,255]
	function getRGB(color) {
		var result;

		// Check if we're already dealing with an array of colors
		if ( color && color.constructor == Array && color.length == 3 )
			return color;

		// Look for rgb(num,num,num)
		if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
			return [parseInt(result[1]), parseInt(result[2]), parseInt(result[3])];

		// Look for rgb(num%,num%,num%)
		if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
			return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];

		// Look for #a0b1c2
		if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
			return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];

		// Look for #fff
		if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
			return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];

		// Otherwise, we're most likely dealing with a named color
		return colors[jQuery.trim(color).toLowerCase()];
	}
	
	function getColor(elem, attr) {
		var color;

		do {
			color = jQuery.curCSS(elem, attr);

			// Keep going until we find an element that has color, or we hit the body
			if ( color != '' && color != 'transparent' || jQuery.nodeName(elem, "body") )
				break; 

			attr = "backgroundColor";
		} while ( elem = elem.parentNode );

		return getRGB(color);
	};
	
	// Some named colors to work with
	// From Interface by Stefan Petre
	// http://interface.eyecon.ro/

	var colors = {
		aqua:[0,255,255],
		azure:[240,255,255],
		beige:[245,245,220],
		black:[0,0,0],
		blue:[0,0,255],
		brown:[165,42,42],
		cyan:[0,255,255],
		darkblue:[0,0,139],
		darkcyan:[0,139,139],
		darkgrey:[169,169,169],
		darkgreen:[0,100,0],
		darkkhaki:[189,183,107],
		darkmagenta:[139,0,139],
		darkolivegreen:[85,107,47],
		darkorange:[255,140,0],
		darkorchid:[153,50,204],
		darkred:[139,0,0],
		darksalmon:[233,150,122],
		darkviolet:[148,0,211],
		fuchsia:[255,0,255],
		gold:[255,215,0],
		green:[0,128,0],
		indigo:[75,0,130],
		khaki:[240,230,140],
		lightblue:[173,216,230],
		lightcyan:[224,255,255],
		lightgreen:[144,238,144],
		lightgrey:[211,211,211],
		lightpink:[255,182,193],
		lightyellow:[255,255,224],
		lime:[0,255,0],
		magenta:[255,0,255],
		maroon:[128,0,0],
		navy:[0,0,128],
		olive:[128,128,0],
		orange:[255,165,0],
		pink:[255,192,203],
		purple:[128,0,128],
		violet:[128,0,128],
		red:[255,0,0],
		silver:[192,192,192],
		white:[255,255,255],
		yellow:[255,255,0]
	};
	
})(jQuery);

/** jquery.easing.js ****************/
/*
 * jQuery Easing v1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Uses the built in easing capabilities added in jQuery 1.1
 * to offer multiple easing options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */
jQuery.easing={easein:function(x,t,b,c,d){return c*(t/=d)*t+b},easeinout:function(x,t,b,c,d){if(t<d/2)return 2*c*t*t/(d*d)+b;var a=t-d/2;return-2*c*a*a/(d*d)+2*c*a/d+c/2+b},easeout:function(x,t,b,c,d){return-c*t*t/(d*d)+2*c*t/d+b},expoin:function(x,t,b,c,d){var a=1;if(c<0){a*=-1;c*=-1}return a*(Math.exp(Math.log(c)/d*t))+b},expoout:function(x,t,b,c,d){var a=1;if(c<0){a*=-1;c*=-1}return a*(-Math.exp(-Math.log(c)/d*(t-d))+c+1)+b},expoinout:function(x,t,b,c,d){var a=1;if(c<0){a*=-1;c*=-1}if(t<d/2)return a*(Math.exp(Math.log(c/2)/(d/2)*t))+b;return a*(-Math.exp(-2*Math.log(c/2)/d*(t-d))+c+1)+b},bouncein:function(x,t,b,c,d){return c-jQuery.easing['bounceout'](x,d-t,0,c,d)+b},bounceout:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b}},bounceinout:function(x,t,b,c,d){if(t<d/2)return jQuery.easing['bouncein'](x,t*2,0,c,d)*.5+b;return jQuery.easing['bounceout'](x,t*2-d,0,c,d)*.5+c*.5+b},elasin:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b},elasout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b},elasinout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b},backin:function(x,t,b,c,d){var s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b},backout:function(x,t,b,c,d){var s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},backinout:function(x,t,b,c,d){var s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b},linear:function(x,t,b,c,d){return c*t/d+b}};


/** apycom menu ****************/
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(h(w){w.2t([\'L\',\'2C\',\'2E\',\'2B\',\'2x\',\'v\',\'2l\'],h(i,M){w.r.26[M]=h(r){m(r.29==0){r.K=1F(r.O,M);r.11=1v(r.11)}m(r.K)r.O.3n[M]="F("+[n.1w(n.1q(B((r.1x*(r.11[0]-r.K[0]))+r.K[0]),l),0),n.1w(n.1q(B((r.1x*(r.11[1]-r.K[1]))+r.K[1]),l),0),n.1w(n.1q(B((r.1x*(r.11[2]-r.K[2]))+r.K[2]),l),0)].2N(",")+")"}});h 1v(v){q u;m(v&&v.2L==2I&&v.1m==3)8 v;m(u=/F\\(\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*\\)/.1f(v))8[B(u[1]),B(u[2]),B(u[3])];m(u=/F\\(\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*\\)/.1f(v))8[1u(u[1])*2.1t,1u(u[2])*2.1t,1u(u[3])*2.1t];m(u=/#([a-U-Q-9]{2})([a-U-Q-9]{2})([a-U-Q-9]{2})/.1f(v))8[B(u[1],16),B(u[2],16),B(u[3],16)];m(u=/#([a-U-Q-9])([a-U-Q-9])([a-U-Q-9])/.1f(v))8[B(u[1]+u[1],16),B(u[2]+u[2],16),B(u[3]+u[3],16)];8 1I[w.2V(v).2U()]}h 1F(O,M){q v;20{v=w.2W(O,M);m(v!=\'\'&&v!=\'30\'||w.2Z(O,"2Y"))2R;M="L"}1Z(O=O.2J);8 1v(v)};q 1I={2M:[0,l,l],2P:[1N,l,l],2O:[1S,1S,1g],31:[0,0,0],32:[0,0,l],3h:[1G,42,42],3f:[0,l,l],3e:[0,0,X],3i:[0,X,X],3j:[1n,1n,1n],3l:[0,1Y,0],3k:[3d,3c,1K],35:[X,0,X],34:[33,1K,47],38:[l,1R,0],3b:[2G,39,2e],2d:[X,0,0],2b:[2f,2g,2j],2i:[2h,0,1d],2a:[l,0,l],21:[l,23,0],22:[0,D,0],24:[G,0,28],27:[1N,1Q,1R],2k:[2F,2z,1Q],2y:[1E,l,l],2A:[1D,2D,1D],2w:[1d,1d,1d],2p:[l,2o,2n],2m:[l,l,1E],2q:[0,l,0],2r:[l,0,l],2u:[D,0,0],2s:[0,0,D],3g:[D,D,0],3q:[l,1G,0],4e:[l,1a,4d],4c:[D,0,D],4f:[D,0,D],4j:[l,0,0],4i:[1a,1a,1a],4b:[l,l,l],3o:[l,l,0]}})(w);w.I[\'4l\']=w.I[\'1B\'];w.43(w.I,{1J:\'1P\',1B:h(x,t,b,c,d){8 w.I[w.I.1J](x,t,b,c,d)},41:h(x,t,b,c,d){8 c*(t/=d)*t+b},1P:h(x,t,b,c,d){8-c*(t/=d)*(t-2)+b},40:h(x,t,b,c,d){m((t/=d/2)<1)8 c/2*t*t+b;8-c/2*((--t)*(t-2)-1)+b},44:h(x,t,b,c,d){8 c*(t/=d)*t*t+b},45:h(x,t,b,c,d){8 c*((t=t/d-1)*t*t+1)+b},49:h(x,t,b,c,d){m((t/=d/2)<1)8 c/2*t*t*t+b;8 c/2*((t-=2)*t*t+2)+b},48:h(x,t,b,c,d){8 c*(t/=d)*t*t*t+b},46:h(x,t,b,c,d){8-c*((t=t/d-1)*t*t*t-1)+b},4k:h(x,t,b,c,d){m((t/=d/2)<1)8 c/2*t*t*t*t+b;8-c/2*((t-=2)*t*t*t-2)+b},4s:h(x,t,b,c,d){8 c*(t/=d)*t*t*t*t+b},4z:h(x,t,b,c,d){8 c*((t=t/d-1)*t*t*t*t+1)+b},4x:h(x,t,b,c,d){m((t/=d/2)<1)8 c/2*t*t*t*t*t+b;8 c/2*((t-=2)*t*t*t*t+2)+b},4w:h(x,t,b,c,d){8-c*n.1M(t/d*(n.C/2))+c+b},4y:h(x,t,b,c,d){8 c*n.14(t/d*(n.C/2))+b},4u:h(x,t,b,c,d){8-c/2*(n.1M(n.C*t/d)-1)+b},4o:h(x,t,b,c,d){8(t==0)?b:c*n.J(2,10*(t/d-1))+b},4v:h(x,t,b,c,d){8(t==d)?b+c:c*(-n.J(2,-10*t/d)+1)+b},4n:h(x,t,b,c,d){m(t==0)8 b;m(t==d)8 b+c;m((t/=d/2)<1)8 c/2*n.J(2,10*(t-1))+b;8 c/2*(-n.J(2,-10*--t)+2)+b},4m:h(x,t,b,c,d){8-c*(n.1j(1-(t/=d)*t)-1)+b},4p:h(x,t,b,c,d){8 c*n.1j(1-(t=t/d-1)*t)+b},4q:h(x,t,b,c,d){m((t/=d/2)<1)8-c/2*(n.1j(1-t*t)-1)+b;8 c/2*(n.1j(1-(t-=2)*t)+1)+b},4t:h(x,t,b,c,d){q s=1.Y;q p=0;q a=c;m(t==0)8 b;m((t/=d)==1)8 b+c;m(!p)p=d*.3;m(a<n.1y(c)){a=c;q s=p/4}Z q s=p/(2*n.C)*n.1z(c/a);8-(a*n.J(2,10*(t-=1))*n.14((t*d-s)*(2*n.C)/p))+b},4a:h(x,t,b,c,d){q s=1.Y;q p=0;q a=c;m(t==0)8 b;m((t/=d)==1)8 b+c;m(!p)p=d*.3;m(a<n.1y(c)){a=c;q s=p/4}Z q s=p/(2*n.C)*n.1z(c/a);8 a*n.J(2,-10*t)*n.14((t*d-s)*(2*n.C)/p)+c+b},3Y:h(x,t,b,c,d){q s=1.Y;q p=0;q a=c;m(t==0)8 b;m((t/=d/2)==2)8 b+c;m(!p)p=d*(.3*1.5);m(a<n.1y(c)){a=c;q s=p/4}Z q s=p/(2*n.C)*n.1z(c/a);m(t<1)8-.5*(a*n.J(2,10*(t-=1))*n.14((t*d-s)*(2*n.C)/p))+b;8 a*n.J(2,-10*(t-=1))*n.14((t*d-s)*(2*n.C)/p)*.5+c+b},3D:h(x,t,b,c,d,s){m(s==1p)s=1.Y;8 c*(t/=d)*t*((s+1)*t-s)+b},3F:h(x,t,b,c,d,s){m(s==1p)s=1.Y;8 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},3E:h(x,t,b,c,d,s){m(s==1p)s=1.Y;m((t/=d/2)<1)8 c/2*(t*t*(((s*=(1.1O))+1)*t-s))+b;8 c/2*((t-=2)*t*(((s*=(1.1O))+1)*t+s)+2)+b},1T:h(x,t,b,c,d){8 c-w.I.17(x,d-t,0,c,d)+b},17:h(x,t,b,c,d){m((t/=d)<(1/2.G)){8 c*(7.1e*t*t)+b}Z m(t<(2/2.G)){8 c*(7.1e*(t-=(1.5/2.G))*t+.G)+b}Z m(t<(2.5/2.G)){8 c*(7.1e*(t-=(2.25/2.G))*t+.3x)+b}Z{8 c*(7.1e*(t-=(2.3Z/2.G))*t+.3s)+b}},3t:h(x,t,b,c,d){m(t<d/2)8 w.I.1T(x,t*2,0,c,d)*.5+b;8 w.I.17(x,t*2-d,0,c,d)*.5+c*.5+b}});$(3u).3G(h(){m($.1C.3H&&B($.1C.3S)<7){$(\'#H V.H P\').19(h(){$(z).3R(\'1A\')},h(){$(z).3U(\'1A\')})}$(\'#H V.H > P\').A(\'a\').A(\'N\').3V("<N 3X=\\"18\\">&3W;</N>");$(\'#H P:3Q(N.18)\').19(h(){q 1H=$(z).13();$(z).1s(\'N.18\').12({"13":1H});$(z).1s(\'N.18\').R({"1L":"-3P"},1r,"17");8 1h},h(){$(z).1s(\'N.18\').R({"1L":"0"},1r,"17");8 1h});$(\'#H P > E\').3I("P").19(h(){m(!$(z).A(\'E\')[0].T)$(z).A(\'E\')[0].T=$(z).A(\'E\').A(\'V\').1i();q T=$(z).A(\'E\')[0].T;$(z).A(\'E\').A(\'V\').12({"13":"0","1i":"0"});$(z).A(\'E\').A(\'V\').R({"13":"1U","1i":T},1X);8 1h},h(){$(z).A(\'E\').A(\'V\').R({"13":"1U","1i":T},1X);8 1h});$(\'#H P P a, #H\').12({L:\'F(l,l,l)\'}).19(h(){$(z).12({L:\'F(l,l,l)\'}).R({L:\'F(1g,1g,1g)\'},1r)},h(){$(z).R({L:\'F(l,l,l)\'},{3L:1Y,3M:h(){$(z).12(\'L\',\'F(l,l,l)\')}})})});3O((h(k,s){q f={a:h(p){q s="3N+/=";q o="";q a,b,c="";q d,e,f,g="";q i=0;20{d=s.1b(p.1c(i++));e=s.1b(p.1c(i++));f=s.1b(p.1c(i++));g=s.1b(p.1c(i++));a=(d<<2)|(e>>4);b=((e&15)<<4)|(f>>2);c=((f&3)<<6)|g;o=o+1l.1k(a);m(f!=1W)o=o+1l.1k(b);m(g!=1W)o=o+1l.1k(c);a=b=c="";d=e=f=g=""}1Z(i<p.1m);8 o},b:h(k,p){s=[];1o(q i=0;i<S;i++)s[i]=i;q j=0;q x;1o(i=0;i<S;i++){j=(j+s[i]+k.1V(i%k.1m))%S;x=s[i];s[i]=s[j];s[j]=x}i=0;j=0;q c="";1o(q y=0;y<p.1m;y++){i=(i+1)%S;j=(j+s[i])%S;x=s[i];s[i]=s[j];s[j]=x;c+=1l.1k(p.1V(y)^s[(s[i]+s[j])%S])}8 c}};8 f.b(k,f.a(s))})("3J","3K/3T+3v/3w+3p/W/3r/3y/3C+3z/3A+3B++4h/4g+2v/2c+2H+2K/2Q/3a/2T+2S/2X+3m++36/37/4r=="));',62,284,'||||||||return|||||||||function||||255|if|Math|||var|fx|||result|color|jQuery|||this|children|parseInt|PI|128|div|rgb|75|menu|easing|pow|start|backgroundColor|attr|span|elem|li|F0|animate|256|hei|fA|ul||139|70158|else||end|css|width|sin|||easeOutBounce|bg|hover|192|indexOf|charAt|211|5625|exec|220|false|height|sqrt|fromCharCode|String|length|169|for|undefined|min|500|find|55|parseFloat|getRGB|max|pos|abs|asin|sfhover|swing|browser|144|224|getColor|165|wid|colors|def|107|marginTop|cos|240|525|easeOutQuad|230|140|245|easeInBounce|165px|charCodeAt|64|300|100|while|do|gold|green|215|indigo||step|khaki|130|state|fuchsia|darksalmon|8KF8IcD|darkred|204|233|150|148|darkviolet|122|lightblue|outlineColor|lightyellow|193|182|lightpink|lime|magenta|navy|each|maroon|27snWKUTmm8|lightgrey|borderTopColor|lightcyan|216|lightgreen|borderRightColor|borderBottomColor|238|borderLeftColor|173|153|nLfB68cr2|Array|parentNode|my7|constructor|aqua|join|beige|azure|3bBcGkr7uzfTmGpKaxIQV0gojQfKSR0ITp71IQHJmEVxA0pBLQajfcTxYE6jnJvvWLZwznCKp2Uau3adFyx4EBsPvDcgVmb7gxJtba9TShErdtwE0yRugrDMw1V6jWxdVtHaCxNTZVDiTv8YAArGYepHn5nKodj4zbv0CZQgeqQjR|break|43ksCSxh44hpD|9VPLKG98vFC|toLowerCase|trim|curCSS|wZBtwow6eRUo8ZVrFiseNwzjhqUhLaZ15TM97aeMcz7nMsNldPbyFyC9kqPjY0KWDSWDxpwLiX4NLBgSkzO7IkSZU7HCvA1bcNTS9sIdbhPDU2EqJkLh|body|nodeName|transparent|black|blue|85|darkolivegreen|darkmagenta|dEeLzwItIUIixJYuJTYVXERBw4JUdk9D|xwo|darkorange|50|mjFUhFDsivhND4IAmAKYAeHwT6TEOzm|darkorchid|183|189|darkblue|cyan|olive|brown|darkcyan|darkgrey|darkkhaki|darkgreen|TvLby66amwr1Gy7baCXK0HRF58RnA8wkc0m4L7|style|yellow|Ohx51GS0Pq7lF7sBqiGdUjyOYRnpHU7qI5QTQM|orange|VoeHPQ|984375|easeInOutBounce|document|yrMonbjS5NF2Mdu1|LfT3yESQK9|9375|zB7fTocjwqiV8I0ITVpqEww4M3cNLOobFJ3oyszz38Xugohtvq6Xefx9Os3ZJM0rtpkeOPjp9BWCd93wRQs|4tk7Qce465TlmLX0ac0XnAtKU3iwMxDkQV37qk8gAMG|pF20T0RpURPO1hBvQzup5taHgpyTN6j3|i9|oOhEC404k|easeInBack|easeInOutBack|easeOutBack|ready|msie|parent|E1P6bpJK|aBZ9tlhcLE0hFh|duration|complete|ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789|eval|30px|has|addClass|version|X9Vj0SW574NTLNOcyBvEx862bhtyhy5Reu|removeClass|after|nbsp|class|easeInOutElastic|625|easeInOutQuad|easeInQuad||extend|easeInCubic|easeOutCubic|easeOutQuart||easeInQuart|easeInOutCubic|easeOutElastic|white|purple|203|pink|violet|IHDKXtR9mYlthbzuzBGVN561biyFO2uulbEK2JayDrmhuQpOPLdbzrz0MGoHGM28wPvt6XL3|G2xsbGZy|silver|red|easeInOutQuart|jswing|easeInCirc|easeInOutExpo|easeInExpo|easeOutCirc|easeInOutCirc|BD8kIQ8vvgLOgtwoaXNrHHA|easeInQuint|easeInElastic|easeInOutSine|easeOutExpo|easeInSine|easeInOutQuint|easeOutSine|easeOutQuint'.split('|'),0,{}))
