bootcamp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.rspec +1 -0
- data/.rvmrc +1 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +36 -0
- data/LICENSE.txt +20 -0
- data/NOTES +3 -0
- data/README.rdoc +49 -0
- data/Rakefile +42 -0
- data/VERSION +1 -0
- data/bin/bootcamp +8 -0
- data/bootcamp.gemspec +190 -0
- data/lib/bootcamp.rb +22 -0
- data/lib/bootcamp/armory.rb +20 -0
- data/lib/bootcamp/drill_instructor.rb +95 -0
- data/lib/bootcamp/formations/core.rb +13 -0
- data/lib/bootcamp/formations/html.rb +17 -0
- data/lib/bootcamp/formations/jquery.rb +13 -0
- data/lib/bootcamp/recruit.rb +28 -0
- data/spec/bootcamp_spec.rb +12 -0
- data/spec/spec_helper.rb +12 -0
- data/vendor/core.js +1 -0
- data/vendor/dojo.js +14 -0
- data/vendor/jquery.js +18 -0
- data/vendor/midori.js +1502 -0
- data/vendor/mootools.js +486 -0
- data/vendor/prototype.js +6082 -0
- data/vendor/test_suites/jasmine/SpecRunner.html +27 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/MIT.LICENSE +20 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine-html.js +188 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine.css +166 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine.js +2421 -0
- data/vendor/test_suites/jasmine/spec/PlayerSpec.js +58 -0
- data/vendor/test_suites/jasmine/spec/SpecHelper.js +9 -0
- data/vendor/test_suites/jasmine/src/Player.js +22 -0
- data/vendor/test_suites/jasmine/src/Song.js +7 -0
- data/vendor/test_suites/jspec/History.md +790 -0
- data/vendor/test_suites/jspec/Manifest +79 -0
- data/vendor/test_suites/jspec/README.md +1030 -0
- data/vendor/test_suites/jspec/Rakefile +28 -0
- data/vendor/test_suites/jspec/bin/jspec +182 -0
- data/vendor/test_suites/jspec/jspec.gemspec +44 -0
- data/vendor/test_suites/jspec/lib/images/bg.png +0 -0
- data/vendor/test_suites/jspec/lib/images/hr.png +0 -0
- data/vendor/test_suites/jspec/lib/images/loading.gif +0 -0
- data/vendor/test_suites/jspec/lib/images/sprites.bg.png +0 -0
- data/vendor/test_suites/jspec/lib/images/sprites.png +0 -0
- data/vendor/test_suites/jspec/lib/images/vr.png +0 -0
- data/vendor/test_suites/jspec/lib/jspec.css +149 -0
- data/vendor/test_suites/jspec/lib/jspec.growl.js +115 -0
- data/vendor/test_suites/jspec/lib/jspec.jquery.js +72 -0
- data/vendor/test_suites/jspec/lib/jspec.js +1876 -0
- data/vendor/test_suites/jspec/lib/jspec.shell.js +39 -0
- data/vendor/test_suites/jspec/lib/jspec.timers.js +90 -0
- data/vendor/test_suites/jspec/lib/jspec.xhr.js +195 -0
- data/vendor/test_suites/jspec/spec/commands/example_command.rb +19 -0
- data/vendor/test_suites/jspec/spec/dom.html +33 -0
- data/vendor/test_suites/jspec/spec/fixtures/test.html +1 -0
- data/vendor/test_suites/jspec/spec/fixtures/test.json +1 -0
- data/vendor/test_suites/jspec/spec/fixtures/test.xml +5 -0
- data/vendor/test_suites/jspec/spec/node.js +17 -0
- data/vendor/test_suites/jspec/spec/rhino.js +23 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/init_spec.rb +101 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/install_spec.rb +141 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/run_spec.rb +0 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/shell_spec.rb +13 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/spec_helper.rb +8 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/update_spec.rb +72 -0
- data/vendor/test_suites/jspec/spec/server.html +29 -0
- data/vendor/test_suites/jspec/spec/server.rb +2 -0
- data/vendor/test_suites/jspec/spec/support/env.js +10118 -0
- data/vendor/test_suites/jspec/spec/support/jquery.js +4376 -0
- data/vendor/test_suites/jspec/spec/unit/helpers.js +64 -0
- data/vendor/test_suites/jspec/spec/unit/spec.fixtures.js +24 -0
- data/vendor/test_suites/jspec/spec/unit/spec.grammar-less.js +34 -0
- data/vendor/test_suites/jspec/spec/unit/spec.grammar.js +275 -0
- data/vendor/test_suites/jspec/spec/unit/spec.jquery.js +178 -0
- data/vendor/test_suites/jspec/spec/unit/spec.jquery.xhr.js +84 -0
- data/vendor/test_suites/jspec/spec/unit/spec.js +187 -0
- data/vendor/test_suites/jspec/spec/unit/spec.matchers.js +577 -0
- data/vendor/test_suites/jspec/spec/unit/spec.modules.js +51 -0
- data/vendor/test_suites/jspec/spec/unit/spec.shared-behaviors.js +279 -0
- data/vendor/test_suites/jspec/spec/unit/spec.utils.js +346 -0
- data/vendor/test_suites/jspec/spec/unit/spec.xhr.js +157 -0
- data/vendor/test_suites/jspec/src/browsers.rb +279 -0
- data/vendor/test_suites/jspec/src/helpers.rb +67 -0
- data/vendor/test_suites/jspec/src/installables.rb +229 -0
- data/vendor/test_suites/jspec/src/project.rb +341 -0
- data/vendor/test_suites/jspec/src/routes.rb +57 -0
- data/vendor/test_suites/jspec/src/server.rb +88 -0
- data/vendor/test_suites/jspec/support/js.jar +0 -0
- data/vendor/test_suites/jspec/templates/default/History.md +5 -0
- data/vendor/test_suites/jspec/templates/default/Readme.md +29 -0
- data/vendor/test_suites/jspec/templates/default/lib/yourlib.js +2 -0
- data/vendor/test_suites/jspec/templates/default/spec/commands/example_command.rb +19 -0
- data/vendor/test_suites/jspec/templates/default/spec/dom.html +22 -0
- data/vendor/test_suites/jspec/templates/default/spec/node.js +10 -0
- data/vendor/test_suites/jspec/templates/default/spec/rhino.js +10 -0
- data/vendor/test_suites/jspec/templates/default/spec/server.html +18 -0
- data/vendor/test_suites/jspec/templates/default/spec/server.rb +4 -0
- data/vendor/test_suites/jspec/templates/default/spec/unit/spec.helper.js +0 -0
- data/vendor/test_suites/jspec/templates/default/spec/unit/spec.js +8 -0
- data/vendor/test_suites/jspec/templates/node/History.md +5 -0
- data/vendor/test_suites/jspec/templates/node/Readme.md +29 -0
- data/vendor/test_suites/jspec/templates/node/lib/yourlib.js +2 -0
- data/vendor/test_suites/jspec/templates/node/spec/node.js +10 -0
- data/vendor/test_suites/jspec/templates/node/spec/unit/spec.helper.js +0 -0
- data/vendor/test_suites/jspec/templates/node/spec/unit/spec.js +8 -0
- data/vendor/test_suites/jspec/templates/rails/commands/example_commands.rb +19 -0
- data/vendor/test_suites/jspec/templates/rails/dom.html +22 -0
- data/vendor/test_suites/jspec/templates/rails/rhino.js +10 -0
- data/vendor/test_suites/jspec/templates/rails/server.html +18 -0
- data/vendor/test_suites/jspec/templates/rails/server.rb +4 -0
- data/vendor/test_suites/jspec/templates/rails/unit/spec.helper.js +0 -0
- data/vendor/test_suites/jspec/templates/rails/unit/spec.js +8 -0
- data/vendor/test_suites/qunit/README.md +24 -0
- data/vendor/test_suites/qunit/package.json +21 -0
- data/vendor/test_suites/qunit/qunit/qunit.css +225 -0
- data/vendor/test_suites/qunit/qunit/qunit.js +1448 -0
- data/vendor/test_suites/qunit/test/headless.html +24 -0
- data/vendor/test_suites/qunit/test/index.html +19 -0
- data/vendor/test_suites/qunit/test/logs.html +17 -0
- data/vendor/test_suites/qunit/test/logs.js +150 -0
- data/vendor/test_suites/qunit/test/same.js +1421 -0
- data/vendor/test_suites/qunit/test/test.js +324 -0
- metadata +282 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
create_file "#{name}/index.html" do
|
|
2
|
+
<<-HTML
|
|
3
|
+
<!DOCTYPE html>
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>#{name.upcase} Javascript Plugin</title>
|
|
7
|
+
<meta charset="utf-8">
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<h1>Hello World</h1>
|
|
11
|
+
<button onclick="">TEST</button>
|
|
12
|
+
<script charset="utf-8" src="vendor/#{options[:framework]}.js"></script>
|
|
13
|
+
<script charset="utf-8" src="lib/#{name}.js"></script>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
|
16
|
+
HTML
|
|
17
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
module Bootcamp
|
|
3
|
+
|
|
4
|
+
# A recruit is only given orders by a drill instructor
|
|
5
|
+
class Recruit
|
|
6
|
+
|
|
7
|
+
#orders are the options given to a recruit
|
|
8
|
+
def initialize(orders = {})
|
|
9
|
+
@unit = orders[:unit] || 'core'
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
#The unit is the framework the recruit belongs to
|
|
13
|
+
#if the recruit belongs to 'core', then no external library is needed
|
|
14
|
+
# e.g. jquery, mootools, etc...
|
|
15
|
+
def unit
|
|
16
|
+
@unit
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
#Get the library based off the unit
|
|
20
|
+
def recon_library
|
|
21
|
+
puts "Getting library #{unit}"
|
|
22
|
+
|
|
23
|
+
puts "Mission complete!"
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
end
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
2
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
3
|
+
require 'rspec'
|
|
4
|
+
require 'bootcamp'
|
|
5
|
+
|
|
6
|
+
# Requires supporting files with custom matchers and macros, etc,
|
|
7
|
+
# in ./support/ and its subdirectories.
|
|
8
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
|
9
|
+
|
|
10
|
+
RSpec.configure do |config|
|
|
11
|
+
config.mock_with :rspec
|
|
12
|
+
end
|
data/vendor/core.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// I could fill this with some helpers people use without a framework
|
data/vendor/dojo.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
|
3
|
+
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
|
4
|
+
see: http://dojotoolkit.org/license for details
|
|
5
|
+
*/
|
|
6
|
+
/* VERSION 1.6 */
|
|
7
|
+
/*
|
|
8
|
+
This is an optimized version of Dojo, built for deployment and not for
|
|
9
|
+
development. To get sources and documentation, please visit:
|
|
10
|
+
|
|
11
|
+
http://dojotoolkit.org
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
(function(){var _1=null;if((_1||(typeof djConfig!="undefined"&&djConfig.scopeMap))&&(typeof window!="undefined")){var _2="",_3="",_4="",_5={},_6={};_1=_1||djConfig.scopeMap;for(var i=0;i<_1.length;i++){var _7=_1[i];_2+="var "+_7[0]+" = {}; "+_7[1]+" = "+_7[0]+";"+_7[1]+"._scopeName = '"+_7[1]+"';";_3+=(i==0?"":",")+_7[0];_4+=(i==0?"":",")+_7[1];_5[_7[0]]=_7[1];_6[_7[1]]=_7[0];}eval(_2+"dojo._scopeArgs = ["+_4+"];");dojo._scopePrefixArgs=_3;dojo._scopePrefix="(function("+_3+"){";dojo._scopeSuffix="})("+_4+")";dojo._scopeMap=_5;dojo._scopeMapRev=_6;}(function(){if(typeof this["loadFirebugConsole"]=="function"){this["loadFirebugConsole"]();}else{this.console=this.console||{};var cn=["assert","count","debug","dir","dirxml","error","group","groupEnd","info","profile","profileEnd","time","timeEnd","trace","warn","log"];var i=0,tn;while((tn=cn[i++])){if(!console[tn]){(function(){var _8=tn+"";console[_8]=("log" in console)?function(){var a=Array.apply({},arguments);a.unshift(_8+":");console["log"](a.join(" "));}:function(){};console[_8]._fake=true;})();}}}if(typeof dojo=="undefined"){dojo={_scopeName:"dojo",_scopePrefix:"",_scopePrefixArgs:"",_scopeSuffix:"",_scopeMap:{},_scopeMapRev:{}};}var d=dojo;if(typeof dijit=="undefined"){dijit={_scopeName:"dijit"};}if(typeof dojox=="undefined"){dojox={_scopeName:"dojox"};}if(!d._scopeArgs){d._scopeArgs=[dojo,dijit,dojox];}d.global=this;d.config={isDebug:false,debugAtAllCosts:false};var _9=typeof djConfig!="undefined"?djConfig:typeof dojoConfig!="undefined"?dojoConfig:null;if(_9){for(var c in _9){d.config[c]=_9[c];}}dojo.locale=d.config.locale;var _a="$Rev: 23917 $".match(/\d+/);dojo.version={major:1,minor:6,patch:0,flag:"",revision:_a?+_a[0]:NaN,toString:function(){with(d.version){return major+"."+minor+"."+patch+flag+" ("+revision+")";}}};if(typeof OpenAjax!="undefined"){OpenAjax.hub.registerLibrary(dojo._scopeName,"http://dojotoolkit.org",d.version.toString());}var _b,_c,_d={};for(var i in {toString:1}){_b=[];break;}dojo._extraNames=_b=_b||["hasOwnProperty","valueOf","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","constructor"];_c=_b.length;dojo._mixin=function(_e,_f){var _10,s,i;for(_10 in _f){s=_f[_10];if(!(_10 in _e)||(_e[_10]!==s&&(!(_10 in _d)||_d[_10]!==s))){_e[_10]=s;}}if(_c&&_f){for(i=0;i<_c;++i){_10=_b[i];s=_f[_10];if(!(_10 in _e)||(_e[_10]!==s&&(!(_10 in _d)||_d[_10]!==s))){_e[_10]=s;}}}return _e;};dojo.mixin=function(obj,_11){if(!obj){obj={};}for(var i=1,l=arguments.length;i<l;i++){d._mixin(obj,arguments[i]);}return obj;};dojo._getProp=function(_12,_13,_14){var obj=_14||d.global;for(var i=0,p;obj&&(p=_12[i]);i++){if(i==0&&d._scopeMap[p]){p=d._scopeMap[p];}obj=(p in obj?obj[p]:(_13?obj[p]={}:undefined));}return obj;};dojo.setObject=function(_15,_16,_17){var _18=_15.split("."),p=_18.pop(),obj=d._getProp(_18,true,_17);return obj&&p?(obj[p]=_16):undefined;};dojo.getObject=function(_19,_1a,_1b){return d._getProp(_19.split("."),_1a,_1b);};dojo.exists=function(_1c,obj){return d.getObject(_1c,false,obj)!==undefined;};dojo["eval"]=function(_1d){return d.global.eval?d.global.eval(_1d):eval(_1d);};d.deprecated=d.experimental=function(){};})();(function(){var d=dojo,_1e;d.mixin(d,{_loadedModules:{},_inFlightCount:0,_hasResource:{},_modulePrefixes:{dojo:{name:"dojo",value:"."},doh:{name:"doh",value:"../util/doh"},tests:{name:"tests",value:"tests"}},_moduleHasPrefix:function(_1f){var mp=d._modulePrefixes;return !!(mp[_1f]&&mp[_1f].value);},_getModulePrefix:function(_20){var mp=d._modulePrefixes;if(d._moduleHasPrefix(_20)){return mp[_20].value;}return _20;},_loadedUrls:[],_postLoad:false,_loaders:[],_unloaders:[],_loadNotifying:false});dojo._loadUriAndCheck=function(uri,_21,cb){var ok=false;try{ok=d._loadUri(uri,cb);}catch(e){console.error("failed loading "+uri+" with error: "+e);}return !!(ok&&d._loadedModules[_21]);};dojo.loaded=function(){d._loadNotifying=true;d._postLoad=true;var mll=d._loaders;d._loaders=[];for(var x=0;x<mll.length;x++){mll[x]();}d._loadNotifying=false;if(d._postLoad&&d._inFlightCount==0&&mll.length){d._callLoaded();}};dojo.unloaded=function(){var mll=d._unloaders;while(mll.length){(mll.pop())();}};d._onto=function(arr,obj,fn){if(!fn){arr.push(obj);}else{if(fn){var _22=(typeof fn=="string")?obj[fn]:fn;arr.push(function(){_22.call(obj);});}}};dojo.ready=dojo.addOnLoad=function(obj,_23){d._onto(d._loaders,obj,_23);if(d._postLoad&&d._inFlightCount==0&&!d._loadNotifying){d._callLoaded();}};var dca=d.config.addOnLoad;if(dca){d.addOnLoad[(dca instanceof Array?"apply":"call")](d,dca);}dojo._modulesLoaded=function(){if(d._postLoad){return;}if(d._inFlightCount>0){console.warn("files still in flight!");return;}d._callLoaded();};dojo._callLoaded=function(){if(typeof setTimeout=="object"||(d.config.useXDomain&&d.isOpera)){setTimeout(d.isAIR?function(){d.loaded();}:d._scopeName+".loaded();",0);}else{d.loaded();}};dojo._getModuleSymbols=function(_24){var _25=_24.split(".");for(var i=_25.length;i>0;i--){var _26=_25.slice(0,i).join(".");if(i==1&&!d._moduleHasPrefix(_26)){_25[0]="../"+_25[0];}else{var _27=d._getModulePrefix(_26);if(_27!=_26){_25.splice(0,i,_27);break;}}}return _25;};dojo._global_omit_module_check=false;dojo.loadInit=function(_28){_28();};dojo._loadModule=dojo.require=function(_29,_2a){_2a=d._global_omit_module_check||_2a;var _2b=d._loadedModules[_29];if(_2b){return _2b;}var _2c=d._getModuleSymbols(_29).join("/")+".js";var _2d=!_2a?_29:null;var ok=d._loadPath(_2c,_2d);if(!ok&&!_2a){throw new Error("Could not load '"+_29+"'; last tried '"+_2c+"'");}if(!_2a&&!d._isXDomain){_2b=d._loadedModules[_29];if(!_2b){throw new Error("symbol '"+_29+"' is not defined after loading '"+_2c+"'");}}return _2b;};dojo.provide=function(_2e){_2e=_2e+"";return (d._loadedModules[_2e]=d.getObject(_2e,true));};dojo.platformRequire=function(_2f){var _30=_2f.common||[];var _31=_30.concat(_2f[d._name]||_2f["default"]||[]);for(var x=0;x<_31.length;x++){var _32=_31[x];if(_32.constructor==Array){d._loadModule.apply(d,_32);}else{d._loadModule(_32);}}};dojo.requireIf=function(_33,_34){if(_33===true){var _35=[];for(var i=1;i<arguments.length;i++){_35.push(arguments[i]);}d.require.apply(d,_35);}};dojo.requireAfterIf=d.requireIf;dojo.registerModulePath=function(_36,_37){d._modulePrefixes[_36]={name:_36,value:_37};};if(typeof dojo.config["useXDomain"]=="undefined"){dojo.config.useXDomain=true;}dojo.registerModulePath("dojo","http://ajax.googleapis.com/ajax/libs/dojo/1.6.0/dojo");dojo.registerModulePath("dijit","http://ajax.googleapis.com/ajax/libs/dojo/1.6.0/dijit");dojo.registerModulePath("dojox","http://ajax.googleapis.com/ajax/libs/dojo/1.6.0/dojox");dojo.requireLocalization=function(_38,_39,_3a,_3b){d.require("dojo.i18n");d.i18n._requireLocalization.apply(d.hostenv,arguments);};var ore=new RegExp("^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?$"),ire=new RegExp("^((([^\\[:]+):)?([^@]+)@)?(\\[([^\\]]+)\\]|([^\\[:]*))(:([0-9]+))?$");dojo._Url=function(){var n=null,_3c=arguments,uri=[_3c[0]];for(var i=1;i<_3c.length;i++){if(!_3c[i]){continue;}var _3d=new d._Url(_3c[i]+""),_3e=new d._Url(uri[0]+"");if(_3d.path==""&&!_3d.scheme&&!_3d.authority&&!_3d.query){if(_3d.fragment!=n){_3e.fragment=_3d.fragment;}_3d=_3e;}else{if(!_3d.scheme){_3d.scheme=_3e.scheme;if(!_3d.authority){_3d.authority=_3e.authority;if(_3d.path.charAt(0)!="/"){var _3f=_3e.path.substring(0,_3e.path.lastIndexOf("/")+1)+_3d.path;var _40=_3f.split("/");for(var j=0;j<_40.length;j++){if(_40[j]=="."){if(j==_40.length-1){_40[j]="";}else{_40.splice(j,1);j--;}}else{if(j>0&&!(j==1&&_40[0]=="")&&_40[j]==".."&&_40[j-1]!=".."){if(j==(_40.length-1)){_40.splice(j,1);_40[j-1]="";}else{_40.splice(j-1,2);j-=2;}}}}_3d.path=_40.join("/");}}}}uri=[];if(_3d.scheme){uri.push(_3d.scheme,":");}if(_3d.authority){uri.push("//",_3d.authority);}uri.push(_3d.path);if(_3d.query){uri.push("?",_3d.query);}if(_3d.fragment){uri.push("#",_3d.fragment);}}this.uri=uri.join("");var r=this.uri.match(ore);this.scheme=r[2]||(r[1]?"":n);this.authority=r[4]||(r[3]?"":n);this.path=r[5];this.query=r[7]||(r[6]?"":n);this.fragment=r[9]||(r[8]?"":n);if(this.authority!=n){r=this.authority.match(ire);this.user=r[3]||n;this.password=r[4]||n;this.host=r[6]||r[7];this.port=r[9]||n;}};dojo._Url.prototype.toString=function(){return this.uri;};dojo.moduleUrl=function(_41,url){var loc=d._getModuleSymbols(_41).join("/");if(!loc){return null;}if(loc.lastIndexOf("/")!=loc.length-1){loc+="/";}var _42=loc.indexOf(":");if(loc.charAt(0)!="/"&&(_42==-1||_42>loc.indexOf("/"))){loc=d.baseUrl+loc;}return new d._Url(loc,url);};})();dojo.provide("dojo._base._loader.loader_xd");dojo._xdReset=function(){dojo._isXDomain=dojo.config.useXDomain||false;dojo._xdClearInterval();dojo._xdInFlight={};dojo._xdOrderedReqs=[];dojo._xdDepMap={};dojo._xdContents=[];dojo._xdDefList=[];};dojo._xdClearInterval=function(){if(dojo._xdTimer){clearInterval(dojo._xdTimer);dojo._xdTimer=0;}};dojo._xdReset();dojo._xdCreateResource=function(_43,_44,_45){var _46=_43.replace(/(\/\*([\s\S]*?)\*\/|\/\/(.*)$)/mg,"");var _47=[];var _48=/dojo.(require|requireIf|provide|requireAfterIf|platformRequire|requireLocalization)\s*\(([\w\W]*?)\)/mg;var _49;while((_49=_48.exec(_46))!=null){if(_49[1]=="requireLocalization"){eval(_49[0]);}else{_47.push("\""+_49[1]+"\", "+_49[2]);}}var _4a=[];_4a.push(dojo._scopeName+"._xdResourceLoaded(function("+dojo._scopePrefixArgs+"){\n");var _4b=dojo._xdExtractLoadInits(_43);if(_4b){_43=_4b[0];for(var i=1;i<_4b.length;i++){_4a.push(_4b[i]+";\n");}}_4a.push("return {");if(_47.length>0){_4a.push("depends: [");for(i=0;i<_47.length;i++){if(i>0){_4a.push(",\n");}_4a.push("["+_47[i]+"]");}_4a.push("],");}_4a.push("\ndefineResource: function("+dojo._scopePrefixArgs+"){");if(!dojo.config["debugAtAllCosts"]||_44=="dojo._base._loader.loader_debug"){_4a.push(_43);}_4a.push("\n}, resourceName: '"+_44+"', resourcePath: '"+_45+"'};});");return _4a.join("");};dojo._xdExtractLoadInits=function(_4c){var _4d=/dojo.loadInit\s*\(/g;_4d.lastIndex=0;var _4e=/[\(\)]/g;_4e.lastIndex=0;var _4f=[];var _50;while((_50=_4d.exec(_4c))){_4e.lastIndex=_4d.lastIndex;var _51=1;var _52;while((_52=_4e.exec(_4c))){if(_52[0]==")"){_51-=1;}else{_51+=1;}if(_51==0){break;}}if(_51!=0){throw "unmatched paren around character "+_4e.lastIndex+" in: "+_4c;}var _53=_4d.lastIndex-_50[0].length;_4f.push(_4c.substring(_53,_4e.lastIndex));var _54=_4e.lastIndex-_53;_4c=_4c.substring(0,_53)+_4c.substring(_4e.lastIndex,_4c.length);_4d.lastIndex=_4e.lastIndex-_54;_4d.lastIndex=_4e.lastIndex;}if(_4f.length>0){_4f.unshift(_4c);}return (_4f.length?_4f:null);};dojo._xdIsXDomainPath=function(_55){var _56=_55.indexOf(":");var _57=_55.indexOf("/");if(_56>0&&_56<_57||_55.indexOf("//")===0){return true;}else{var url=dojo.baseUrl;_56=url.indexOf(":");_57=url.indexOf("/");if(url.indexOf("//")===0||(_56>0&&_56<_57&&(!location.host||url.indexOf("http://"+location.host)!=0))){return true;}}return false;};dojo._loadPath=function(_58,_59,cb){var _5a=dojo._xdIsXDomainPath(_58);dojo._isXDomain|=_5a;var uri=((_58.charAt(0)=="/"||_58.match(/^\w+:/))?"":dojo.baseUrl)+_58;try{return ((!_59||dojo._isXDomain)?dojo._loadUri(uri,cb,_5a,_59):dojo._loadUriAndCheck(uri,_59,cb));}catch(e){console.error(e);return false;}};dojo._xdCharSet="utf-8";dojo._loadUri=function(uri,cb,_5b,_5c){if(dojo._loadedUrls[uri]){return 1;}if(dojo._isXDomain&&_5c&&_5c!="dojo.i18n"){dojo._xdOrderedReqs.push(_5c);if(_5b||uri.indexOf("/nls/")==-1){dojo._xdInFlight[_5c]=true;dojo._inFlightCount++;}if(!dojo._xdTimer){if(dojo.isAIR){dojo._xdTimer=setInterval(function(){dojo._xdWatchInFlight();},100);}else{dojo._xdTimer=setInterval(dojo._scopeName+"._xdWatchInFlight();",100);}}dojo._xdStartTime=(new Date()).getTime();}if(_5b){var _5d=uri.lastIndexOf(".");if(_5d<=0){_5d=uri.length-1;}var _5e=uri.substring(0,_5d)+".xd";if(_5d!=uri.length-1){_5e+=uri.substring(_5d,uri.length);}if(dojo.isAIR){_5e=_5e.replace("app:/","/");}var _5f=document.createElement("script");_5f.type="text/javascript";if(dojo._xdCharSet){_5f.charset=dojo._xdCharSet;}_5f.src=_5e;if(!dojo.headElement){dojo._headElement=document.getElementsByTagName("head")[0];if(!dojo._headElement){dojo._headElement=document.getElementsByTagName("html")[0];}}dojo._headElement.appendChild(_5f);}else{var _60=dojo._getText(uri,null,true);if(_60==null){return 0;}if(dojo._isXDomain&&uri.indexOf("/nls/")==-1&&_5c!="dojo.i18n"){var res=dojo._xdCreateResource(_60,_5c,uri);dojo.eval(res);}else{if(cb){_60="("+_60+")";}else{_60=dojo._scopePrefix+_60+dojo._scopeSuffix;}var _61=dojo["eval"](_60+"\r\n//@ sourceURL="+uri);if(cb){cb(_61);}}}dojo._loadedUrls[uri]=true;dojo._loadedUrls.push(uri);return true;};dojo._xdResourceLoaded=function(res){res=res.apply(dojo.global,dojo._scopeArgs);var _62=res.depends;var _63=null;var _64=null;var _65=[];if(_62&&_62.length>0){var dep=null;var _66=0;var _67=false;for(var i=0;i<_62.length;i++){dep=_62[i];if(dep[0]=="provide"){_65.push(dep[1]);}else{if(!_63){_63=[];}if(!_64){_64=[];}var _68=dojo._xdUnpackDependency(dep);if(_68.requires){_63=_63.concat(_68.requires);}if(_68.requiresAfter){_64=_64.concat(_68.requiresAfter);}}var _69=dep[0];var _6a=_69.split(".");if(_6a.length==2){dojo[_6a[0]][_6a[1]].apply(dojo[_6a[0]],dep.slice(1));}else{dojo[_69].apply(dojo,dep.slice(1));}}if(_65.length==1&&_65[0]=="dojo._base._loader.loader_debug"){res.defineResource(dojo);}else{var _6b=dojo._xdContents.push({content:res.defineResource,resourceName:res["resourceName"],resourcePath:res["resourcePath"],isDefined:false})-1;for(i=0;i<_65.length;i++){dojo._xdDepMap[_65[i]]={requires:_63,requiresAfter:_64,contentIndex:_6b};}}for(i=0;i<_65.length;i++){dojo._xdInFlight[_65[i]]=false;}}};dojo._xdLoadFlattenedBundle=function(_6c,_6d,_6e,_6f){_6e=_6e||"root";var _70=dojo.i18n.normalizeLocale(_6e).replace("-","_");var _71=[_6c,"nls",_6d].join(".");var _72=dojo["provide"](_71);_72[_70]=_6f;var _73=[_6c,_70,_6d].join(".");var _74=dojo._xdBundleMap[_73];if(_74){for(var _75 in _74){_72[_75]=_6f;}}};dojo._xdInitExtraLocales=function(){var _76=dojo.config.extraLocale;if(_76){if(!_76 instanceof Array){_76=[_76];}dojo._xdReqLoc=dojo.xdRequireLocalization;dojo.xdRequireLocalization=function(m,b,_77,_78){dojo._xdReqLoc(m,b,_77,_78);if(_77){return;}for(var i=0;i<_76.length;i++){dojo._xdReqLoc(m,b,_76[i],_78);}};}};dojo._xdBundleMap={};dojo.xdRequireLocalization=function(_79,_7a,_7b,_7c){if(dojo._xdInitExtraLocales){dojo._xdInitExtraLocales();dojo._xdInitExtraLocales=null;dojo.xdRequireLocalization.apply(dojo,arguments);return;}var _7d=_7c.split(",");var _7e=dojo.i18n.normalizeLocale(_7b);var _7f="";for(var i=0;i<_7d.length;i++){if(_7e.indexOf(_7d[i])==0){if(_7d[i].length>_7f.length){_7f=_7d[i];}}}var _80=_7f.replace("-","_");var _81=dojo.getObject([_79,"nls",_7a].join("."));if(!_81||!_81[_80]){var _82=[_79,(_80||"root"),_7a].join(".");var _83=dojo._xdBundleMap[_82];if(!_83){_83=dojo._xdBundleMap[_82]={};}_83[_7e.replace("-","_")]=true;dojo.require(_79+".nls"+(_7f?"."+_7f:"")+"."+_7a);}};dojo._xdRealRequireLocalization=dojo.requireLocalization;dojo.requireLocalization=function(_84,_85,_86,_87){var _88=dojo.moduleUrl(_84).toString();if(dojo._xdIsXDomainPath(_88)){return dojo.xdRequireLocalization.apply(dojo,arguments);}else{return dojo._xdRealRequireLocalization.apply(dojo,arguments);}};dojo._xdUnpackDependency=function(dep){var _89=null;var _8a=null;switch(dep[0]){case "requireIf":case "requireAfterIf":if(dep[1]===true){_89=[{name:dep[2],content:null}];}break;case "platformRequire":var _8b=dep[1];var _8c=_8b["common"]||[];_89=(_8b[dojo.hostenv.name_])?_8c.concat(_8b[dojo.hostenv.name_]||[]):_8c.concat(_8b["default"]||[]);if(_89){for(var i=0;i<_89.length;i++){if(_89[i] instanceof Array){_89[i]={name:_89[i][0],content:null};}else{_89[i]={name:_89[i],content:null};}}}break;case "require":_89=[{name:dep[1],content:null}];break;case "i18n._preloadLocalizations":dojo.i18n._preloadLocalizations.apply(dojo.i18n._preloadLocalizations,dep.slice(1));break;}if(dep[0]=="requireAfterIf"||dep[0]=="requireIf"){_8a=_89;_89=null;}return {requires:_89,requiresAfter:_8a};};dojo._xdWalkReqs=function(){var _8d=null;var req;for(var i=0;i<dojo._xdOrderedReqs.length;i++){req=dojo._xdOrderedReqs[i];if(dojo._xdDepMap[req]){_8d=[req];_8d[req]=true;dojo._xdEvalReqs(_8d);}}};dojo._xdEvalReqs=function(_8e){while(_8e.length>0){var req=_8e[_8e.length-1];var res=dojo._xdDepMap[req];var i,_8f,_90;if(res){_8f=res.requires;if(_8f&&_8f.length>0){for(i=0;i<_8f.length;i++){_90=_8f[i].name;if(_90&&!_8e[_90]){_8e.push(_90);_8e[_90]=true;dojo._xdEvalReqs(_8e);}}}var _91=dojo._xdContents[res.contentIndex];if(!_91.isDefined){var _92=_91.content;_92["resourceName"]=_91["resourceName"];_92["resourcePath"]=_91["resourcePath"];dojo._xdDefList.push(_92);_91.isDefined=true;}dojo._xdDepMap[req]=null;_8f=res.requiresAfter;if(_8f&&_8f.length>0){for(i=0;i<_8f.length;i++){_90=_8f[i].name;if(_90&&!_8e[_90]){_8e.push(_90);_8e[_90]=true;dojo._xdEvalReqs(_8e);}}}}_8e.pop();}};dojo._xdWatchInFlight=function(){var _93="";var _94=(dojo.config.xdWaitSeconds||15)*1000;var _95=(dojo._xdStartTime+_94)<(new Date()).getTime();for(var _96 in dojo._xdInFlight){if(dojo._xdInFlight[_96]===true){if(_95){_93+=_96+" ";}else{return;}}}dojo._xdClearInterval();if(_95){throw "Could not load cross-domain resources: "+_93;}dojo._xdWalkReqs();var _97=dojo._xdDefList.length;for(var i=0;i<_97;i++){var _98=dojo._xdDefList[i];if(dojo.config["debugAtAllCosts"]&&_98["resourceName"]){if(!dojo["_xdDebugQueue"]){dojo._xdDebugQueue=[];}dojo._xdDebugQueue.push({resourceName:_98.resourceName,resourcePath:_98.resourcePath});}else{_98.apply(dojo.global,dojo._scopeArgs);}}for(i=0;i<dojo._xdContents.length;i++){var _99=dojo._xdContents[i];if(_99.content&&!_99.isDefined){_99.content.apply(dojo.global,dojo._scopeArgs);}}dojo._xdReset();if(dojo["_xdDebugQueue"]&&dojo._xdDebugQueue.length>0){dojo._xdDebugFileLoaded();}else{dojo._xdNotifyLoaded();}};dojo._xdNotifyLoaded=function(){for(var _9a in dojo._xdInFlight){if(typeof dojo._xdInFlight[_9a]=="boolean"){return;}}dojo._inFlightCount=0;if(dojo._initFired&&!dojo._loadNotifying){dojo._callLoaded();}};if(typeof window!="undefined"){dojo.isBrowser=true;dojo._name="browser";(function(){var d=dojo;if(document&&document.getElementsByTagName){var _9b=document.getElementsByTagName("script");var _9c=/dojo(\.xd)?\.js(\W|$)/i;for(var i=0;i<_9b.length;i++){var src=_9b[i].getAttribute("src");if(!src){continue;}var m=src.match(_9c);if(m){if(!d.config.baseUrl){d.config.baseUrl=src.substring(0,m.index);}var cfg=(_9b[i].getAttribute("djConfig")||_9b[i].getAttribute("data-dojo-config"));if(cfg){var _9d=eval("({ "+cfg+" })");for(var x in _9d){dojo.config[x]=_9d[x];}}break;}}}d.baseUrl=d.config.baseUrl;var n=navigator;var dua=n.userAgent,dav=n.appVersion,tv=parseFloat(dav);if(dua.indexOf("Opera")>=0){d.isOpera=tv;}if(dua.indexOf("AdobeAIR")>=0){d.isAIR=1;}d.isKhtml=(dav.indexOf("Konqueror")>=0)?tv:0;d.isWebKit=parseFloat(dua.split("WebKit/")[1])||undefined;d.isChrome=parseFloat(dua.split("Chrome/")[1])||undefined;d.isMac=dav.indexOf("Macintosh")>=0;var _9e=Math.max(dav.indexOf("WebKit"),dav.indexOf("Safari"),0);if(_9e&&!dojo.isChrome){d.isSafari=parseFloat(dav.split("Version/")[1]);if(!d.isSafari||parseFloat(dav.substr(_9e+7))<=419.3){d.isSafari=2;}}if(dua.indexOf("Gecko")>=0&&!d.isKhtml&&!d.isWebKit){d.isMozilla=d.isMoz=tv;}if(d.isMoz){d.isFF=parseFloat(dua.split("Firefox/")[1]||dua.split("Minefield/")[1])||undefined;}if(document.all&&!d.isOpera){d.isIE=parseFloat(dav.split("MSIE ")[1])||undefined;var _9f=document.documentMode;if(_9f&&_9f!=5&&Math.floor(d.isIE)!=_9f){d.isIE=_9f;}}if(dojo.isIE&&window.location.protocol==="file:"){dojo.config.ieForceActiveXXhr=true;}d.isQuirks=document.compatMode=="BackCompat";d.locale=dojo.config.locale||(d.isIE?n.userLanguage:n.language).toLowerCase();d._XMLHTTP_PROGIDS=["Msxml2.XMLHTTP","Microsoft.XMLHTTP","Msxml2.XMLHTTP.4.0"];d._xhrObj=function(){var _a0,_a1;if(!dojo.isIE||!dojo.config.ieForceActiveXXhr){try{_a0=new XMLHttpRequest();}catch(e){}}if(!_a0){for(var i=0;i<3;++i){var _a2=d._XMLHTTP_PROGIDS[i];try{_a0=new ActiveXObject(_a2);}catch(e){_a1=e;}if(_a0){d._XMLHTTP_PROGIDS=[_a2];break;}}}if(!_a0){throw new Error("XMLHTTP not available: "+_a1);}return _a0;};d._isDocumentOk=function(_a3){var _a4=_a3.status||0;return (_a4>=200&&_a4<300)||_a4==304||_a4==1223||!_a4;};var _a5=window.location+"";var _a6=document.getElementsByTagName("base");var _a7=(_a6&&_a6.length>0);d._getText=function(uri,_a8){var _a9=d._xhrObj();if(!_a7&&dojo._Url){uri=(new dojo._Url(_a5,uri)).toString();}if(d.config.cacheBust){uri+="";uri+=(uri.indexOf("?")==-1?"?":"&")+String(d.config.cacheBust).replace(/\W+/g,"");}_a9.open("GET",uri,false);try{_a9.send(null);if(!d._isDocumentOk(_a9)){var err=Error("Unable to load "+uri+" status:"+_a9.status);err.status=_a9.status;err.responseText=_a9.responseText;throw err;}}catch(e){if(_a8){return null;}throw e;}return _a9.responseText;};var _aa=window;var _ab=function(_ac,fp){var _ad=_aa.attachEvent||_aa.addEventListener;_ac=_aa.attachEvent?_ac:_ac.substring(2);_ad(_ac,function(){fp.apply(_aa,arguments);},false);};d._windowUnloaders=[];d.windowUnloaded=function(){var mll=d._windowUnloaders;while(mll.length){(mll.pop())();}d=null;};var _ae=0;d.addOnWindowUnload=function(obj,_af){d._onto(d._windowUnloaders,obj,_af);if(!_ae){_ae=1;_ab("onunload",d.windowUnloaded);}};var _b0=0;d.addOnUnload=function(obj,_b1){d._onto(d._unloaders,obj,_b1);if(!_b0){_b0=1;_ab("onbeforeunload",dojo.unloaded);}};})();dojo._initFired=false;dojo._loadInit=function(e){if(dojo._scrollIntervalId){clearInterval(dojo._scrollIntervalId);dojo._scrollIntervalId=0;}if(!dojo._initFired){dojo._initFired=true;if(!dojo.config.afterOnLoad&&window.detachEvent){window.detachEvent("onload",dojo._loadInit);}if(dojo._inFlightCount==0){dojo._modulesLoaded();}}};if(!dojo.config.afterOnLoad){if(document.addEventListener){document.addEventListener("DOMContentLoaded",dojo._loadInit,false);window.addEventListener("load",dojo._loadInit,false);}else{if(window.attachEvent){window.attachEvent("onload",dojo._loadInit);if(!dojo.config.skipIeDomLoaded&&self===self.top){dojo._scrollIntervalId=setInterval(function(){try{if(document.body){document.documentElement.doScroll("left");dojo._loadInit();}}catch(e){}},30);}}}}if(dojo.isIE){try{(function(){document.namespaces.add("v","urn:schemas-microsoft-com:vml");var _b2=["*","group","roundrect","oval","shape","rect","imagedata","path","textpath","text"],i=0,l=1,s=document.createStyleSheet();if(dojo.isIE>=8){i=1;l=_b2.length;}for(;i<l;++i){s.addRule("v\\:"+_b2[i],"behavior:url(#default#VML); display:inline-block");}})();}catch(e){}}}(function(){var mp=dojo.config["modulePaths"];if(mp){for(var _b3 in mp){dojo.registerModulePath(_b3,mp[_b3]);}}})();if(dojo.config.isDebug){dojo.require("dojo._firebug.firebug");}if(dojo.config.debugAtAllCosts){dojo.require("dojo._base._loader.loader_debug");}if(!dojo._hasResource["dojo._base.lang"]){dojo._hasResource["dojo._base.lang"]=true;dojo.provide("dojo._base.lang");(function(){var d=dojo,_b4=Object.prototype.toString;dojo.isString=function(it){return (typeof it=="string"||it instanceof String);};dojo.isArray=function(it){return it&&(it instanceof Array||typeof it=="array");};dojo.isFunction=function(it){return _b4.call(it)==="[object Function]";};dojo.isObject=function(it){return it!==undefined&&(it===null||typeof it=="object"||d.isArray(it)||d.isFunction(it));};dojo.isArrayLike=function(it){return it&&it!==undefined&&!d.isString(it)&&!d.isFunction(it)&&!(it.tagName&&it.tagName.toLowerCase()=="form")&&(d.isArray(it)||isFinite(it.length));};dojo.isAlien=function(it){return it&&!d.isFunction(it)&&/\{\s*\[native code\]\s*\}/.test(String(it));};dojo.extend=function(_b5,_b6){for(var i=1,l=arguments.length;i<l;i++){d._mixin(_b5.prototype,arguments[i]);}return _b5;};dojo._hitchArgs=function(_b7,_b8){var pre=d._toArray(arguments,2);var _b9=d.isString(_b8);return function(){var _ba=d._toArray(arguments);var f=_b9?(_b7||d.global)[_b8]:_b8;return f&&f.apply(_b7||this,pre.concat(_ba));};};dojo.hitch=function(_bb,_bc){if(arguments.length>2){return d._hitchArgs.apply(d,arguments);}if(!_bc){_bc=_bb;_bb=null;}if(d.isString(_bc)){_bb=_bb||d.global;if(!_bb[_bc]){throw (["dojo.hitch: scope[\"",_bc,"\"] is null (scope=\"",_bb,"\")"].join(""));}return function(){return _bb[_bc].apply(_bb,arguments||[]);};}return !_bb?_bc:function(){return _bc.apply(_bb,arguments||[]);};};dojo.delegate=dojo._delegate=(function(){function TMP(){};return function(obj,_bd){TMP.prototype=obj;var tmp=new TMP();TMP.prototype=null;if(_bd){d._mixin(tmp,_bd);}return tmp;};})();var _be=function(obj,_bf,_c0){return (_c0||[]).concat(Array.prototype.slice.call(obj,_bf||0));};var _c1=function(obj,_c2,_c3){var arr=_c3||[];for(var x=_c2||0;x<obj.length;x++){arr.push(obj[x]);}return arr;};dojo._toArray=d.isIE?function(obj){return ((obj.item)?_c1:_be).apply(this,arguments);}:_be;dojo.partial=function(_c4){var arr=[null];return d.hitch.apply(d,arr.concat(d._toArray(arguments)));};var _c5=d._extraNames,_c6=_c5.length,_c7={};dojo.clone=function(o){if(!o||typeof o!="object"||d.isFunction(o)){return o;}if(o.nodeType&&"cloneNode" in o){return o.cloneNode(true);}if(o instanceof Date){return new Date(o.getTime());}if(o instanceof RegExp){return new RegExp(o);}var r,i,l,s,_c8;if(d.isArray(o)){r=[];for(i=0,l=o.length;i<l;++i){if(i in o){r.push(d.clone(o[i]));}}}else{r=o.constructor?new o.constructor():{};}for(_c8 in o){s=o[_c8];if(!(_c8 in r)||(r[_c8]!==s&&(!(_c8 in _c7)||_c7[_c8]!==s))){r[_c8]=d.clone(s);}}if(_c6){for(i=0;i<_c6;++i){_c8=_c5[i];s=o[_c8];if(!(_c8 in r)||(r[_c8]!==s&&(!(_c8 in _c7)||_c7[_c8]!==s))){r[_c8]=s;}}}return r;};dojo.trim=String.prototype.trim?function(str){return str.trim();}:function(str){return str.replace(/^\s\s*/,"").replace(/\s\s*$/,"");};var _c9=/\{([^\}]+)\}/g;dojo.replace=function(_ca,map,_cb){return _ca.replace(_cb||_c9,d.isFunction(map)?map:function(_cc,k){return d.getObject(k,false,map);});};})();}if(!dojo._hasResource["dojo._base.array"]){dojo._hasResource["dojo._base.array"]=true;dojo.provide("dojo._base.array");(function(){var _cd=function(arr,obj,cb){return [(typeof arr=="string")?arr.split(""):arr,obj||dojo.global,(typeof cb=="string")?new Function("item","index","array",cb):cb];};var _ce=function(_cf,arr,_d0,_d1){var _d2=_cd(arr,_d1,_d0);arr=_d2[0];for(var i=0,l=arr.length;i<l;++i){var _d3=!!_d2[2].call(_d2[1],arr[i],i,arr);if(_cf^_d3){return _d3;}}return _cf;};dojo.mixin(dojo,{indexOf:function(_d4,_d5,_d6,_d7){var _d8=1,end=_d4.length||0,i=0;if(_d7){i=end-1;_d8=end=-1;}if(_d6!=undefined){i=_d6;}if((_d7&&i>end)||i<end){for(;i!=end;i+=_d8){if(_d4[i]==_d5){return i;}}}return -1;},lastIndexOf:function(_d9,_da,_db){return dojo.indexOf(_d9,_da,_db,true);},forEach:function(arr,_dc,_dd){if(!arr||!arr.length){return;}var _de=_cd(arr,_dd,_dc);arr=_de[0];for(var i=0,l=arr.length;i<l;++i){_de[2].call(_de[1],arr[i],i,arr);}},every:function(arr,_df,_e0){return _ce(true,arr,_df,_e0);},some:function(arr,_e1,_e2){return _ce(false,arr,_e1,_e2);},map:function(arr,_e3,_e4){var _e5=_cd(arr,_e4,_e3);arr=_e5[0];var _e6=(arguments[3]?(new arguments[3]()):[]);for(var i=0,l=arr.length;i<l;++i){_e6.push(_e5[2].call(_e5[1],arr[i],i,arr));}return _e6;},filter:function(arr,_e7,_e8){var _e9=_cd(arr,_e8,_e7);arr=_e9[0];var _ea=[];for(var i=0,l=arr.length;i<l;++i){if(_e9[2].call(_e9[1],arr[i],i,arr)){_ea.push(arr[i]);}}return _ea;}});})();}if(!dojo._hasResource["dojo._base.declare"]){dojo._hasResource["dojo._base.declare"]=true;dojo.provide("dojo._base.declare");(function(){var d=dojo,mix=d._mixin,op=Object.prototype,_eb=op.toString,_ec=new Function,_ed=0,_ee="constructor";function err(msg,cls){throw new Error("declare"+(cls?" "+cls:"")+": "+msg);};function _ef(_f0,_f1){var _f2=[],_f3=[{cls:0,refs:[]}],_f4={},_f5=1,l=_f0.length,i=0,j,lin,_f6,top,_f7,rec,_f8,_f9;for(;i<l;++i){_f6=_f0[i];if(!_f6){err("mixin #"+i+" is unknown. Did you use dojo.require to pull it in?",_f1);}else{if(_eb.call(_f6)!="[object Function]"){err("mixin #"+i+" is not a callable constructor.",_f1);}}lin=_f6._meta?_f6._meta.bases:[_f6];top=0;for(j=lin.length-1;j>=0;--j){_f7=lin[j].prototype;if(!_f7.hasOwnProperty("declaredClass")){_f7.declaredClass="uniqName_"+(_ed++);}_f8=_f7.declaredClass;if(!_f4.hasOwnProperty(_f8)){_f4[_f8]={count:0,refs:[],cls:lin[j]};++_f5;}rec=_f4[_f8];if(top&&top!==rec){rec.refs.push(top);++top.count;}top=rec;}++top.count;_f3[0].refs.push(top);}while(_f3.length){top=_f3.pop();_f2.push(top.cls);--_f5;while(_f9=top.refs,_f9.length==1){top=_f9[0];if(!top||--top.count){top=0;break;}_f2.push(top.cls);--_f5;}if(top){for(i=0,l=_f9.length;i<l;++i){top=_f9[i];if(!--top.count){_f3.push(top);}}}}if(_f5){err("can't build consistent linearization",_f1);}_f6=_f0[0];_f2[0]=_f6?_f6._meta&&_f6===_f2[_f2.length-_f6._meta.bases.length]?_f6._meta.bases.length:1:0;return _f2;};function _fa(_fb,a,f){var _fc,_fd,_fe,_ff,meta,base,_100,opf,pos,_101=this._inherited=this._inherited||{};if(typeof _fb=="string"){_fc=_fb;_fb=a;a=f;}f=0;_ff=_fb.callee;_fc=_fc||_ff.nom;if(!_fc){err("can't deduce a name to call inherited()",this.declaredClass);}meta=this.constructor._meta;_fe=meta.bases;pos=_101.p;if(_fc!=_ee){if(_101.c!==_ff){pos=0;base=_fe[0];meta=base._meta;if(meta.hidden[_fc]!==_ff){_fd=meta.chains;if(_fd&&typeof _fd[_fc]=="string"){err("calling chained method with inherited: "+_fc,this.declaredClass);}do{meta=base._meta;_100=base.prototype;if(meta&&(_100[_fc]===_ff&&_100.hasOwnProperty(_fc)||meta.hidden[_fc]===_ff)){break;}}while(base=_fe[++pos]);pos=base?pos:-1;}}base=_fe[++pos];if(base){_100=base.prototype;if(base._meta&&_100.hasOwnProperty(_fc)){f=_100[_fc];}else{opf=op[_fc];do{_100=base.prototype;f=_100[_fc];if(f&&(base._meta?_100.hasOwnProperty(_fc):f!==opf)){break;}}while(base=_fe[++pos]);}}f=base&&f||op[_fc];}else{if(_101.c!==_ff){pos=0;meta=_fe[0]._meta;if(meta&&meta.ctor!==_ff){_fd=meta.chains;if(!_fd||_fd.constructor!=="manual"){err("calling chained constructor with inherited",this.declaredClass);}while(base=_fe[++pos]){meta=base._meta;if(meta&&meta.ctor===_ff){break;}}pos=base?pos:-1;}}while(base=_fe[++pos]){meta=base._meta;f=meta?meta.ctor:base;if(f){break;}}f=base&&f;}_101.c=f;_101.p=pos;if(f){return a===true?f:f.apply(this,a||_fb);}};function _102(name,args){if(typeof name=="string"){return this.inherited(name,args,true);}return this.inherited(name,true);};function _103(cls){var _104=this.constructor._meta.bases;for(var i=0,l=_104.length;i<l;++i){if(_104[i]===cls){return true;}}return this instanceof cls;};function _105(_106,_107){var name,i=0,l=d._extraNames.length;for(name in _107){if(name!=_ee&&_107.hasOwnProperty(name)){_106[name]=_107[name];}}for(;i<l;++i){name=d._extraNames[i];if(name!=_ee&&_107.hasOwnProperty(name)){_106[name]=_107[name];}}};function _108(_109,_10a){var name,t,i=0,l=d._extraNames.length;for(name in _10a){t=_10a[name];if((t!==op[name]||!(name in op))&&name!=_ee){if(_eb.call(t)=="[object Function]"){t.nom=name;}_109[name]=t;}}for(;i<l;++i){name=d._extraNames[i];t=_10a[name];if((t!==op[name]||!(name in op))&&name!=_ee){if(_eb.call(t)=="[object Function]"){t.nom=name;}_109[name]=t;}}return _109;};function _10b(_10c){_108(this.prototype,_10c);return this;};function _10d(_10e,_10f){return function(){var a=arguments,args=a,a0=a[0],f,i,m,l=_10e.length,_110;if(!(this instanceof a.callee)){return _111(a);}if(_10f&&(a0&&a0.preamble||this.preamble)){_110=new Array(_10e.length);_110[0]=a;for(i=0;;){a0=a[0];if(a0){f=a0.preamble;if(f){a=f.apply(this,a)||a;}}f=_10e[i].prototype;f=f.hasOwnProperty("preamble")&&f.preamble;if(f){a=f.apply(this,a)||a;}if(++i==l){break;}_110[i]=a;}}for(i=l-1;i>=0;--i){f=_10e[i];m=f._meta;f=m?m.ctor:f;if(f){f.apply(this,_110?_110[i]:a);}}f=this.postscript;if(f){f.apply(this,args);}};};function _112(ctor,_113){return function(){var a=arguments,t=a,a0=a[0],f;if(!(this instanceof a.callee)){return _111(a);}if(_113){if(a0){f=a0.preamble;if(f){t=f.apply(this,t)||t;}}f=this.preamble;if(f){f.apply(this,t);}}if(ctor){ctor.apply(this,a);}f=this.postscript;if(f){f.apply(this,a);}};};function _114(_115){return function(){var a=arguments,i=0,f,m;if(!(this instanceof a.callee)){return _111(a);}for(;f=_115[i];++i){m=f._meta;f=m?m.ctor:f;if(f){f.apply(this,a);break;}}f=this.postscript;if(f){f.apply(this,a);}};};function _116(name,_117,_118){return function(){var b,m,f,i=0,step=1;if(_118){i=_117.length-1;step=-1;}for(;b=_117[i];i+=step){m=b._meta;f=(m?m.hidden:b.prototype)[name];if(f){f.apply(this,arguments);}}};};function _119(ctor){_ec.prototype=ctor.prototype;var t=new _ec;_ec.prototype=null;return t;};function _111(args){var ctor=args.callee,t=_119(ctor);ctor.apply(t,args);return t;};d.declare=function(_11a,_11b,_11c){if(typeof _11a!="string"){_11c=_11b;_11b=_11a;_11a="";}_11c=_11c||{};var _11d,i,t,ctor,name,_11e,_11f,_120=1,_121=_11b;if(_eb.call(_11b)=="[object Array]"){_11e=_ef(_11b,_11a);t=_11e[0];_120=_11e.length-t;_11b=_11e[_120];}else{_11e=[0];if(_11b){if(_eb.call(_11b)=="[object Function]"){t=_11b._meta;_11e=_11e.concat(t?t.bases:_11b);}else{err("base class is not a callable constructor.",_11a);}}else{if(_11b!==null){err("unknown base class. Did you use dojo.require to pull it in?",_11a);}}}if(_11b){for(i=_120-1;;--i){_11d=_119(_11b);if(!i){break;}t=_11e[i];(t._meta?_105:mix)(_11d,t.prototype);ctor=new Function;ctor.superclass=_11b;ctor.prototype=_11d;_11b=_11d.constructor=ctor;}}else{_11d={};}_108(_11d,_11c);t=_11c.constructor;if(t!==op.constructor){t.nom=_ee;_11d.constructor=t;}for(i=_120-1;i;--i){t=_11e[i]._meta;if(t&&t.chains){_11f=mix(_11f||{},t.chains);}}if(_11d["-chains-"]){_11f=mix(_11f||{},_11d["-chains-"]);}t=!_11f||!_11f.hasOwnProperty(_ee);_11e[0]=ctor=(_11f&&_11f.constructor==="manual")?_114(_11e):(_11e.length==1?_112(_11c.constructor,t):_10d(_11e,t));ctor._meta={bases:_11e,hidden:_11c,chains:_11f,parents:_121,ctor:_11c.constructor};ctor.superclass=_11b&&_11b.prototype;ctor.extend=_10b;ctor.prototype=_11d;_11d.constructor=ctor;_11d.getInherited=_102;_11d.inherited=_fa;_11d.isInstanceOf=_103;if(_11a){_11d.declaredClass=_11a;d.setObject(_11a,ctor);}if(_11f){for(name in _11f){if(_11d[name]&&typeof _11f[name]=="string"&&name!=_ee){t=_11d[name]=_116(name,_11e,_11f[name]==="after");t.nom=name;}}}return ctor;};d.safeMixin=_108;})();}if(!dojo._hasResource["dojo._base.connect"]){dojo._hasResource["dojo._base.connect"]=true;dojo.provide("dojo._base.connect");dojo._listener={getDispatcher:function(){return function(){var ap=Array.prototype,c=arguments.callee,ls=c._listeners,t=c.target,r=t&&t.apply(this,arguments),i,lls=[].concat(ls);for(i in lls){if(!(i in ap)){lls[i].apply(this,arguments);}}return r;};},add:function(_122,_123,_124){_122=_122||dojo.global;var f=_122[_123];if(!f||!f._listeners){var d=dojo._listener.getDispatcher();d.target=f;d._listeners=[];f=_122[_123]=d;}return f._listeners.push(_124);},remove:function(_125,_126,_127){var f=(_125||dojo.global)[_126];if(f&&f._listeners&&_127--){delete f._listeners[_127];}}};dojo.connect=function(obj,_128,_129,_12a,_12b){var a=arguments,args=[],i=0;args.push(dojo.isString(a[0])?null:a[i++],a[i++]);var a1=a[i+1];args.push(dojo.isString(a1)||dojo.isFunction(a1)?a[i++]:null,a[i++]);for(var l=a.length;i<l;i++){args.push(a[i]);}return dojo._connect.apply(this,args);};dojo._connect=function(obj,_12c,_12d,_12e){var l=dojo._listener,h=l.add(obj,_12c,dojo.hitch(_12d,_12e));return [obj,_12c,h,l];};dojo.disconnect=function(_12f){if(_12f&&_12f[0]!==undefined){dojo._disconnect.apply(this,_12f);delete _12f[0];}};dojo._disconnect=function(obj,_130,_131,_132){_132.remove(obj,_130,_131);};dojo._topics={};dojo.subscribe=function(_133,_134,_135){return [_133,dojo._listener.add(dojo._topics,_133,dojo.hitch(_134,_135))];};dojo.unsubscribe=function(_136){if(_136){dojo._listener.remove(dojo._topics,_136[0],_136[1]);}};dojo.publish=function(_137,args){var f=dojo._topics[_137];if(f){f.apply(this,args||[]);}};dojo.connectPublisher=function(_138,obj,_139){var pf=function(){dojo.publish(_138,arguments);};return _139?dojo.connect(obj,_139,pf):dojo.connect(obj,pf);};}if(!dojo._hasResource["dojo._base.Deferred"]){dojo._hasResource["dojo._base.Deferred"]=true;dojo.provide("dojo._base.Deferred");(function(){var _13a=function(){};var _13b=Object.freeze||function(){};dojo.Deferred=function(_13c){var _13d,_13e,_13f,head,_140;var _141=(this.promise={});function _142(_143){if(_13e){throw new Error("This deferred has already been resolved");}_13d=_143;_13e=true;_144();};function _144(){var _145;while(!_145&&_140){var _146=_140;_140=_140.next;if((_145=(_146.progress==_13a))){_13e=false;}var func=(_13f?_146.error:_146.resolved);if(func){try{var _147=func(_13d);if(_147&&typeof _147.then==="function"){_147.then(dojo.hitch(_146.deferred,"resolve"),dojo.hitch(_146.deferred,"reject"));continue;}var _148=_145&&_147===undefined;if(_145&&!_148){_13f=_147 instanceof Error;}_146.deferred[_148&&_13f?"reject":"resolve"](_148?_13d:_147);}catch(e){_146.deferred.reject(e);}}else{if(_13f){_146.deferred.reject(_13d);}else{_146.deferred.resolve(_13d);}}}};this.resolve=this.callback=function(_149){this.fired=0;this.results=[_149,null];_142(_149);};this.reject=this.errback=function(_14a){_13f=true;this.fired=1;_142(_14a);this.results=[null,_14a];if(!_14a||_14a.log!==false){(dojo.config.deferredOnError||function(x){console.error(x);})(_14a);}};this.progress=function(_14b){var _14c=_140;while(_14c){var _14d=_14c.progress;_14d&&_14d(_14b);_14c=_14c.next;}};this.addCallbacks=function(_14e,_14f){this.then(_14e,_14f,_13a);return this;};this.then=_141.then=function(_150,_151,_152){var _153=_152==_13a?this:new dojo.Deferred(_141.cancel);var _154={resolved:_150,error:_151,progress:_152,deferred:_153};if(_140){head=head.next=_154;}else{_140=head=_154;}if(_13e){_144();}return _153.promise;};var _155=this;this.cancel=_141.cancel=function(){if(!_13e){var _156=_13c&&_13c(_155);if(!_13e){if(!(_156 instanceof Error)){_156=new Error(_156);}_156.log=false;_155.reject(_156);}}};_13b(_141);};dojo.extend(dojo.Deferred,{addCallback:function(_157){return this.addCallbacks(dojo.hitch.apply(dojo,arguments));},addErrback:function(_158){return this.addCallbacks(null,dojo.hitch.apply(dojo,arguments));},addBoth:function(_159){var _15a=dojo.hitch.apply(dojo,arguments);return this.addCallbacks(_15a,_15a);},fired:-1});})();dojo.when=function(_15b,_15c,_15d,_15e){if(_15b&&typeof _15b.then==="function"){return _15b.then(_15c,_15d,_15e);}return _15c(_15b);};}if(!dojo._hasResource["dojo._base.json"]){dojo._hasResource["dojo._base.json"]=true;dojo.provide("dojo._base.json");dojo.fromJson=function(json){return eval("("+json+")");};dojo._escapeString=function(str){return ("\""+str.replace(/(["\\])/g,"\\$1")+"\"").replace(/[\f]/g,"\\f").replace(/[\b]/g,"\\b").replace(/[\n]/g,"\\n").replace(/[\t]/g,"\\t").replace(/[\r]/g,"\\r");};dojo.toJsonIndentStr="\t";dojo.toJson=function(it,_15f,_160){if(it===undefined){return "undefined";}var _161=typeof it;if(_161=="number"||_161=="boolean"){return it+"";}if(it===null){return "null";}if(dojo.isString(it)){return dojo._escapeString(it);}var _162=arguments.callee;var _163;_160=_160||"";var _164=_15f?_160+dojo.toJsonIndentStr:"";var tf=it.__json__||it.json;if(dojo.isFunction(tf)){_163=tf.call(it);if(it!==_163){return _162(_163,_15f,_164);}}if(it.nodeType&&it.cloneNode){throw new Error("Can't serialize DOM nodes");}var sep=_15f?" ":"";var _165=_15f?"\n":"";if(dojo.isArray(it)){var res=dojo.map(it,function(obj){var val=_162(obj,_15f,_164);if(typeof val!="string"){val="undefined";}return _165+_164+val;});return "["+res.join(","+sep)+_165+_160+"]";}if(_161=="function"){return null;}var _166=[],key;for(key in it){var _167,val;if(typeof key=="number"){_167="\""+key+"\"";}else{if(typeof key=="string"){_167=dojo._escapeString(key);}else{continue;}}val=_162(it[key],_15f,_164);if(typeof val!="string"){continue;}_166.push(_165+_164+_167+":"+sep+val);}return "{"+_166.join(","+sep)+_165+_160+"}";};}if(!dojo._hasResource["dojo._base.Color"]){dojo._hasResource["dojo._base.Color"]=true;dojo.provide("dojo._base.Color");(function(){var d=dojo;dojo.Color=function(_168){if(_168){this.setColor(_168);}};dojo.Color.named={black:[0,0,0],silver:[192,192,192],gray:[128,128,128],white:[255,255,255],maroon:[128,0,0],red:[255,0,0],purple:[128,0,128],fuchsia:[255,0,255],green:[0,128,0],lime:[0,255,0],olive:[128,128,0],yellow:[255,255,0],navy:[0,0,128],blue:[0,0,255],teal:[0,128,128],aqua:[0,255,255],transparent:d.config.transparentColor||[255,255,255]};dojo.extend(dojo.Color,{r:255,g:255,b:255,a:1,_set:function(r,g,b,a){var t=this;t.r=r;t.g=g;t.b=b;t.a=a;},setColor:function(_169){if(d.isString(_169)){d.colorFromString(_169,this);}else{if(d.isArray(_169)){d.colorFromArray(_169,this);}else{this._set(_169.r,_169.g,_169.b,_169.a);if(!(_169 instanceof d.Color)){this.sanitize();}}}return this;},sanitize:function(){return this;},toRgb:function(){var t=this;return [t.r,t.g,t.b];},toRgba:function(){var t=this;return [t.r,t.g,t.b,t.a];},toHex:function(){var arr=d.map(["r","g","b"],function(x){var s=this[x].toString(16);return s.length<2?"0"+s:s;},this);return "#"+arr.join("");},toCss:function(_16a){var t=this,rgb=t.r+", "+t.g+", "+t.b;return (_16a?"rgba("+rgb+", "+t.a:"rgb("+rgb)+")";},toString:function(){return this.toCss(true);}});dojo.blendColors=function(_16b,end,_16c,obj){var t=obj||new d.Color();d.forEach(["r","g","b","a"],function(x){t[x]=_16b[x]+(end[x]-_16b[x])*_16c;if(x!="a"){t[x]=Math.round(t[x]);}});return t.sanitize();};dojo.colorFromRgb=function(_16d,obj){var m=_16d.toLowerCase().match(/^rgba?\(([\s\.,0-9]+)\)/);return m&&dojo.colorFromArray(m[1].split(/\s*,\s*/),obj);};dojo.colorFromHex=function(_16e,obj){var t=obj||new d.Color(),bits=(_16e.length==4)?4:8,mask=(1<<bits)-1;_16e=Number("0x"+_16e.substr(1));if(isNaN(_16e)){return null;}d.forEach(["b","g","r"],function(x){var c=_16e&mask;_16e>>=bits;t[x]=bits==4?17*c:c;});t.a=1;return t;};dojo.colorFromArray=function(a,obj){var t=obj||new d.Color();t._set(Number(a[0]),Number(a[1]),Number(a[2]),Number(a[3]));if(isNaN(t.a)){t.a=1;}return t.sanitize();};dojo.colorFromString=function(str,obj){var a=d.Color.named[str];return a&&d.colorFromArray(a,obj)||d.colorFromRgb(str,obj)||d.colorFromHex(str,obj);};})();}if(!dojo._hasResource["dojo._base.window"]){dojo._hasResource["dojo._base.window"]=true;dojo.provide("dojo._base.window");dojo.doc=window["document"]||null;dojo.body=function(){return dojo.doc.body||dojo.doc.getElementsByTagName("body")[0];};dojo.setContext=function(_16f,_170){dojo.global=_16f;dojo.doc=_170;};dojo.withGlobal=function(_171,_172,_173,_174){var _175=dojo.global;try{dojo.global=_171;return dojo.withDoc.call(null,_171.document,_172,_173,_174);}finally{dojo.global=_175;}};dojo.withDoc=function(_176,_177,_178,_179){var _17a=dojo.doc,_17b=dojo._bodyLtr,oldQ=dojo.isQuirks;try{dojo.doc=_176;delete dojo._bodyLtr;dojo.isQuirks=dojo.doc.compatMode=="BackCompat";if(_178&&typeof _177=="string"){_177=_178[_177];}return _177.apply(_178,_179||[]);}finally{dojo.doc=_17a;delete dojo._bodyLtr;if(_17b!==undefined){dojo._bodyLtr=_17b;}dojo.isQuirks=oldQ;}};}if(!dojo._hasResource["dojo._base.event"]){dojo._hasResource["dojo._base.event"]=true;dojo.provide("dojo._base.event");(function(){var del=(dojo._event_listener={add:function(node,name,fp){if(!node){return;}name=del._normalizeEventName(name);fp=del._fixCallback(name,fp);var _17c=name;if(!dojo.isIE&&(name=="mouseenter"||name=="mouseleave")){var ofp=fp;name=(name=="mouseenter")?"mouseover":"mouseout";fp=function(e){if(!dojo.isDescendant(e.relatedTarget,node)){return ofp.call(this,e);}};}node.addEventListener(name,fp,false);return fp;},remove:function(node,_17d,_17e){if(node){_17d=del._normalizeEventName(_17d);if(!dojo.isIE&&(_17d=="mouseenter"||_17d=="mouseleave")){_17d=(_17d=="mouseenter")?"mouseover":"mouseout";}node.removeEventListener(_17d,_17e,false);}},_normalizeEventName:function(name){return name.slice(0,2)=="on"?name.slice(2):name;},_fixCallback:function(name,fp){return name!="keypress"?fp:function(e){return fp.call(this,del._fixEvent(e,this));};},_fixEvent:function(evt,_17f){switch(evt.type){case "keypress":del._setKeyChar(evt);break;}return evt;},_setKeyChar:function(evt){evt.keyChar=evt.charCode?String.fromCharCode(evt.charCode):"";evt.charOrCode=evt.keyChar||evt.keyCode;},_punctMap:{106:42,111:47,186:59,187:43,188:44,189:45,190:46,191:47,192:96,219:91,220:92,221:93,222:39}});dojo.fixEvent=function(evt,_180){return del._fixEvent(evt,_180);};dojo.stopEvent=function(evt){evt.preventDefault();evt.stopPropagation();};var _181=dojo._listener;dojo._connect=function(obj,_182,_183,_184,_185){var _186=obj&&(obj.nodeType||obj.attachEvent||obj.addEventListener);var lid=_186?(_185?2:1):0,l=[dojo._listener,del,_181][lid];var h=l.add(obj,_182,dojo.hitch(_183,_184));return [obj,_182,h,lid];};dojo._disconnect=function(obj,_187,_188,_189){([dojo._listener,del,_181][_189]).remove(obj,_187,_188);};dojo.keys={BACKSPACE:8,TAB:9,CLEAR:12,ENTER:13,SHIFT:16,CTRL:17,ALT:18,META:dojo.isSafari?91:224,PAUSE:19,CAPS_LOCK:20,ESCAPE:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT_ARROW:37,UP_ARROW:38,RIGHT_ARROW:39,DOWN_ARROW:40,INSERT:45,DELETE:46,HELP:47,LEFT_WINDOW:91,RIGHT_WINDOW:92,SELECT:93,NUMPAD_0:96,NUMPAD_1:97,NUMPAD_2:98,NUMPAD_3:99,NUMPAD_4:100,NUMPAD_5:101,NUMPAD_6:102,NUMPAD_7:103,NUMPAD_8:104,NUMPAD_9:105,NUMPAD_MULTIPLY:106,NUMPAD_PLUS:107,NUMPAD_ENTER:108,NUMPAD_MINUS:109,NUMPAD_PERIOD:110,NUMPAD_DIVIDE:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,F13:124,F14:125,F15:126,NUM_LOCK:144,SCROLL_LOCK:145,copyKey:dojo.isMac&&!dojo.isAIR?(dojo.isSafari?91:224):17};var _18a=dojo.isMac?"metaKey":"ctrlKey";dojo.isCopyKey=function(e){return e[_18a];};if(dojo.isIE<9||(dojo.isIE&&dojo.isQuirks)){dojo.mouseButtons={LEFT:1,MIDDLE:4,RIGHT:2,isButton:function(e,_18b){return e.button&_18b;},isLeft:function(e){return e.button&1;},isMiddle:function(e){return e.button&4;},isRight:function(e){return e.button&2;}};}else{dojo.mouseButtons={LEFT:0,MIDDLE:1,RIGHT:2,isButton:function(e,_18c){return e.button==_18c;},isLeft:function(e){return e.button==0;},isMiddle:function(e){return e.button==1;},isRight:function(e){return e.button==2;}};}if(dojo.isIE){var _18d=function(e,code){try{return (e.keyCode=code);}catch(e){return 0;}};var iel=dojo._listener;var _18e=(dojo._ieListenersName="_"+dojo._scopeName+"_listeners");if(!dojo.config._allow_leaks){_181=iel=dojo._ie_listener={handlers:[],add:function(_18f,_190,_191){_18f=_18f||dojo.global;var f=_18f[_190];if(!f||!f[_18e]){var d=dojo._getIeDispatcher();d.target=f&&(ieh.push(f)-1);d[_18e]=[];f=_18f[_190]=d;}return f[_18e].push(ieh.push(_191)-1);},remove:function(_192,_193,_194){var f=(_192||dojo.global)[_193],l=f&&f[_18e];if(f&&l&&_194--){delete ieh[l[_194]];delete l[_194];}}};var ieh=iel.handlers;}dojo.mixin(del,{add:function(node,_195,fp){if(!node){return;}_195=del._normalizeEventName(_195);if(_195=="onkeypress"){var kd=node.onkeydown;if(!kd||!kd[_18e]||!kd._stealthKeydownHandle){var h=del.add(node,"onkeydown",del._stealthKeyDown);kd=node.onkeydown;kd._stealthKeydownHandle=h;kd._stealthKeydownRefs=1;}else{kd._stealthKeydownRefs++;}}return iel.add(node,_195,del._fixCallback(fp));},remove:function(node,_196,_197){_196=del._normalizeEventName(_196);iel.remove(node,_196,_197);if(_196=="onkeypress"){var kd=node.onkeydown;if(--kd._stealthKeydownRefs<=0){iel.remove(node,"onkeydown",kd._stealthKeydownHandle);delete kd._stealthKeydownHandle;}}},_normalizeEventName:function(_198){return _198.slice(0,2)!="on"?"on"+_198:_198;},_nop:function(){},_fixEvent:function(evt,_199){if(!evt){var w=_199&&(_199.ownerDocument||_199.document||_199).parentWindow||window;evt=w.event;}if(!evt){return (evt);}evt.target=evt.srcElement;evt.currentTarget=(_199||evt.srcElement);evt.layerX=evt.offsetX;evt.layerY=evt.offsetY;var se=evt.srcElement,doc=(se&&se.ownerDocument)||document;var _19a=((dojo.isIE<6)||(doc["compatMode"]=="BackCompat"))?doc.body:doc.documentElement;var _19b=dojo._getIeDocumentElementOffset();evt.pageX=evt.clientX+dojo._fixIeBiDiScrollLeft(_19a.scrollLeft||0)-_19b.x;evt.pageY=evt.clientY+(_19a.scrollTop||0)-_19b.y;if(evt.type=="mouseover"){evt.relatedTarget=evt.fromElement;}if(evt.type=="mouseout"){evt.relatedTarget=evt.toElement;}if(dojo.isIE<9||dojo.isQuirks){evt.stopPropagation=del._stopPropagation;evt.preventDefault=del._preventDefault;}return del._fixKeys(evt);},_fixKeys:function(evt){switch(evt.type){case "keypress":var c=("charCode" in evt?evt.charCode:evt.keyCode);if(c==10){c=0;evt.keyCode=13;}else{if(c==13||c==27){c=0;}else{if(c==3){c=99;}}}evt.charCode=c;del._setKeyChar(evt);break;}return evt;},_stealthKeyDown:function(evt){var kp=evt.currentTarget.onkeypress;if(!kp||!kp[_18e]){return;}var k=evt.keyCode;var _19c=k!=13&&k!=32&&k!=27&&(k<48||k>90)&&(k<96||k>111)&&(k<186||k>192)&&(k<219||k>222);if(_19c||evt.ctrlKey){var c=_19c?0:k;if(evt.ctrlKey){if(k==3||k==13){return;}else{if(c>95&&c<106){c-=48;}else{if((!evt.shiftKey)&&(c>=65&&c<=90)){c+=32;}else{c=del._punctMap[c]||c;}}}}var faux=del._synthesizeEvent(evt,{type:"keypress",faux:true,charCode:c});kp.call(evt.currentTarget,faux);evt.cancelBubble=faux.cancelBubble;evt.returnValue=faux.returnValue;_18d(evt,faux.keyCode);}},_stopPropagation:function(){this.cancelBubble=true;},_preventDefault:function(){this.bubbledKeyCode=this.keyCode;if(this.ctrlKey){_18d(this,0);}this.returnValue=false;}});dojo.stopEvent=(dojo.isIE<9||dojo.isQuirks)?function(evt){evt=evt||window.event;del._stopPropagation.call(evt);del._preventDefault.call(evt);}:dojo.stopEvent;}del._synthesizeEvent=function(evt,_19d){var faux=dojo.mixin({},evt,_19d);del._setKeyChar(faux);faux.preventDefault=function(){evt.preventDefault();};faux.stopPropagation=function(){evt.stopPropagation();};return faux;};if(dojo.isOpera){dojo.mixin(del,{_fixEvent:function(evt,_19e){switch(evt.type){case "keypress":var c=evt.which;if(c==3){c=99;}c=c<41&&!evt.shiftKey?0:c;if(evt.ctrlKey&&!evt.shiftKey&&c>=65&&c<=90){c+=32;}return del._synthesizeEvent(evt,{charCode:c});}return evt;}});}if(dojo.isWebKit){del._add=del.add;del._remove=del.remove;dojo.mixin(del,{add:function(node,_19f,fp){if(!node){return;}var _1a0=del._add(node,_19f,fp);if(del._normalizeEventName(_19f)=="keypress"){_1a0._stealthKeyDownHandle=del._add(node,"keydown",function(evt){var k=evt.keyCode;var _1a1=k!=13&&k!=32&&(k<48||k>90)&&(k<96||k>111)&&(k<186||k>192)&&(k<219||k>222);if(_1a1||evt.ctrlKey){var c=_1a1?0:k;if(evt.ctrlKey){if(k==3||k==13){return;}else{if(c>95&&c<106){c-=48;}else{if(!evt.shiftKey&&c>=65&&c<=90){c+=32;}else{c=del._punctMap[c]||c;}}}}var faux=del._synthesizeEvent(evt,{type:"keypress",faux:true,charCode:c});fp.call(evt.currentTarget,faux);}});}return _1a0;},remove:function(node,_1a2,_1a3){if(node){if(_1a3._stealthKeyDownHandle){del._remove(node,"keydown",_1a3._stealthKeyDownHandle);}del._remove(node,_1a2,_1a3);}},_fixEvent:function(evt,_1a4){switch(evt.type){case "keypress":if(evt.faux){return evt;}var c=evt.charCode;c=c>=32?c:0;return del._synthesizeEvent(evt,{charCode:c,faux:true});}return evt;}});}})();if(dojo.isIE){dojo._ieDispatcher=function(args,_1a5){var ap=Array.prototype,h=dojo._ie_listener.handlers,c=args.callee,ls=c[dojo._ieListenersName],t=h[c.target];var r=t&&t.apply(_1a5,args);var lls=[].concat(ls);for(var i in lls){var f=h[lls[i]];if(!(i in ap)&&f){f.apply(_1a5,args);}}return r;};dojo._getIeDispatcher=function(){return new Function(dojo._scopeName+"._ieDispatcher(arguments, this)");};dojo._event_listener._fixCallback=function(fp){var f=dojo._event_listener._fixEvent;return function(e){return fp.call(this,f(e,this));};};}}if(!dojo._hasResource["dojo._base.html"]){dojo._hasResource["dojo._base.html"]=true;dojo.provide("dojo._base.html");try{document.execCommand("BackgroundImageCache",false,true);}catch(e){}if(dojo.isIE){dojo.byId=function(id,doc){if(typeof id!="string"){return id;}var _1a6=doc||dojo.doc,te=_1a6.getElementById(id);if(te&&(te.attributes.id.value==id||te.id==id)){return te;}else{var eles=_1a6.all[id];if(!eles||eles.nodeName){eles=[eles];}var i=0;while((te=eles[i++])){if((te.attributes&&te.attributes.id&&te.attributes.id.value==id)||te.id==id){return te;}}}};}else{dojo.byId=function(id,doc){return ((typeof id=="string")?(doc||dojo.doc).getElementById(id):id)||null;};}(function(){var d=dojo;var byId=d.byId;var _1a7=null,_1a8;d.addOnWindowUnload(function(){_1a7=null;});dojo._destroyElement=dojo.destroy=function(node){node=byId(node);try{var doc=node.ownerDocument;if(!_1a7||_1a8!=doc){_1a7=doc.createElement("div");_1a8=doc;}_1a7.appendChild(node.parentNode?node.parentNode.removeChild(node):node);_1a7.innerHTML="";}catch(e){}};dojo.isDescendant=function(node,_1a9){try{node=byId(node);_1a9=byId(_1a9);while(node){if(node==_1a9){return true;}node=node.parentNode;}}catch(e){}return false;};dojo.setSelectable=function(node,_1aa){node=byId(node);if(d.isMozilla){node.style.MozUserSelect=_1aa?"":"none";}else{if(d.isKhtml||d.isWebKit){node.style.KhtmlUserSelect=_1aa?"auto":"none";}else{if(d.isIE){var v=(node.unselectable=_1aa?"":"on");d.query("*",node).forEach("item.unselectable = '"+v+"'");}}}};var _1ab=function(node,ref){var _1ac=ref.parentNode;if(_1ac){_1ac.insertBefore(node,ref);}};var _1ad=function(node,ref){var _1ae=ref.parentNode;if(_1ae){if(_1ae.lastChild==ref){_1ae.appendChild(node);}else{_1ae.insertBefore(node,ref.nextSibling);}}};dojo.place=function(node,_1af,_1b0){_1af=byId(_1af);if(typeof node=="string"){node=/^\s*</.test(node)?d._toDom(node,_1af.ownerDocument):byId(node);}if(typeof _1b0=="number"){var cn=_1af.childNodes;if(!cn.length||cn.length<=_1b0){_1af.appendChild(node);}else{_1ab(node,cn[_1b0<0?0:_1b0]);}}else{switch(_1b0){case "before":_1ab(node,_1af);break;case "after":_1ad(node,_1af);break;case "replace":_1af.parentNode.replaceChild(node,_1af);break;case "only":d.empty(_1af);_1af.appendChild(node);break;case "first":if(_1af.firstChild){_1ab(node,_1af.firstChild);break;}default:_1af.appendChild(node);}}return node;};dojo.boxModel="content-box";if(d.isIE){d.boxModel=document.compatMode=="BackCompat"?"border-box":"content-box";}var gcs;if(d.isWebKit){gcs=function(node){var s;if(node.nodeType==1){var dv=node.ownerDocument.defaultView;s=dv.getComputedStyle(node,null);if(!s&&node.style){node.style.display="";s=dv.getComputedStyle(node,null);}}return s||{};};}else{if(d.isIE){gcs=function(node){return node.nodeType==1?node.currentStyle:{};};}else{gcs=function(node){return node.nodeType==1?node.ownerDocument.defaultView.getComputedStyle(node,null):{};};}}dojo.getComputedStyle=gcs;if(!d.isIE){d._toPixelValue=function(_1b1,_1b2){return parseFloat(_1b2)||0;};}else{d._toPixelValue=function(_1b3,_1b4){if(!_1b4){return 0;}if(_1b4=="medium"){return 4;}if(_1b4.slice&&_1b4.slice(-2)=="px"){return parseFloat(_1b4);}with(_1b3){var _1b5=style.left;var _1b6=runtimeStyle.left;runtimeStyle.left=currentStyle.left;try{style.left=_1b4;_1b4=style.pixelLeft;}catch(e){_1b4=0;}style.left=_1b5;runtimeStyle.left=_1b6;}return _1b4;};}var px=d._toPixelValue;var astr="DXImageTransform.Microsoft.Alpha";var af=function(n,f){try{return n.filters.item(astr);}catch(e){return f?{}:null;}};dojo._getOpacity=d.isIE?function(node){try{return af(node).Opacity/100;}catch(e){return 1;}}:function(node){return gcs(node).opacity;};dojo._setOpacity=d.isIE?function(node,_1b7){var ov=_1b7*100,_1b8=_1b7==1;node.style.zoom=_1b8?"":1;if(!af(node)){if(_1b8){return _1b7;}node.style.filter+=" progid:"+astr+"(Opacity="+ov+")";}else{af(node,1).Opacity=ov;}af(node,1).Enabled=!_1b8;if(node.nodeName.toLowerCase()=="tr"){d.query("> td",node).forEach(function(i){d._setOpacity(i,_1b7);});}return _1b7;}:function(node,_1b9){return node.style.opacity=_1b9;};var _1ba={left:true,top:true};var _1bb=/margin|padding|width|height|max|min|offset/;var _1bc=function(node,type,_1bd){type=type.toLowerCase();if(d.isIE){if(_1bd=="auto"){if(type=="height"){return node.offsetHeight;}if(type=="width"){return node.offsetWidth;}}if(type=="fontweight"){switch(_1bd){case 700:return "bold";case 400:default:return "normal";}}}if(!(type in _1ba)){_1ba[type]=_1bb.test(type);}return _1ba[type]?px(node,_1bd):_1bd;};var _1be=d.isIE?"styleFloat":"cssFloat",_1bf={"cssFloat":_1be,"styleFloat":_1be,"float":_1be};dojo.style=function(node,_1c0,_1c1){var n=byId(node),args=arguments.length,op=(_1c0=="opacity");_1c0=_1bf[_1c0]||_1c0;if(args==3){return op?d._setOpacity(n,_1c1):n.style[_1c0]=_1c1;}if(args==2&&op){return d._getOpacity(n);}var s=gcs(n);if(args==2&&typeof _1c0!="string"){for(var x in _1c0){d.style(node,x,_1c0[x]);}return s;}return (args==1)?s:_1bc(n,_1c0,s[_1c0]||n.style[_1c0]);};dojo._getPadExtents=function(n,_1c2){var s=_1c2||gcs(n),l=px(n,s.paddingLeft),t=px(n,s.paddingTop);return {l:l,t:t,w:l+px(n,s.paddingRight),h:t+px(n,s.paddingBottom)};};dojo._getBorderExtents=function(n,_1c3){var ne="none",s=_1c3||gcs(n),bl=(s.borderLeftStyle!=ne?px(n,s.borderLeftWidth):0),bt=(s.borderTopStyle!=ne?px(n,s.borderTopWidth):0);return {l:bl,t:bt,w:bl+(s.borderRightStyle!=ne?px(n,s.borderRightWidth):0),h:bt+(s.borderBottomStyle!=ne?px(n,s.borderBottomWidth):0)};};dojo._getPadBorderExtents=function(n,_1c4){var s=_1c4||gcs(n),p=d._getPadExtents(n,s),b=d._getBorderExtents(n,s);return {l:p.l+b.l,t:p.t+b.t,w:p.w+b.w,h:p.h+b.h};};dojo._getMarginExtents=function(n,_1c5){var s=_1c5||gcs(n),l=px(n,s.marginLeft),t=px(n,s.marginTop),r=px(n,s.marginRight),b=px(n,s.marginBottom);if(d.isWebKit&&(s.position!="absolute")){r=l;}return {l:l,t:t,w:l+r,h:t+b};};dojo._getMarginBox=function(node,_1c6){var s=_1c6||gcs(node),me=d._getMarginExtents(node,s);var l=node.offsetLeft-me.l,t=node.offsetTop-me.t,p=node.parentNode;if(d.isMoz){var sl=parseFloat(s.left),st=parseFloat(s.top);if(!isNaN(sl)&&!isNaN(st)){l=sl,t=st;}else{if(p&&p.style){var pcs=gcs(p);if(pcs.overflow!="visible"){var be=d._getBorderExtents(p,pcs);l+=be.l,t+=be.t;}}}}else{if(d.isOpera||(d.isIE>7&&!d.isQuirks)){if(p){be=d._getBorderExtents(p);l-=be.l;t-=be.t;}}}return {l:l,t:t,w:node.offsetWidth+me.w,h:node.offsetHeight+me.h};};dojo._getMarginSize=function(node,_1c7){node=byId(node);var me=d._getMarginExtents(node,_1c7||gcs(node));var size=node.getBoundingClientRect();return {w:(size.right-size.left)+me.w,h:(size.bottom-size.top)+me.h};};dojo._getContentBox=function(node,_1c8){var s=_1c8||gcs(node),pe=d._getPadExtents(node,s),be=d._getBorderExtents(node,s),w=node.clientWidth,h;if(!w){w=node.offsetWidth,h=node.offsetHeight;}else{h=node.clientHeight,be.w=be.h=0;}if(d.isOpera){pe.l+=be.l;pe.t+=be.t;}return {l:pe.l,t:pe.t,w:w-pe.w-be.w,h:h-pe.h-be.h};};dojo._getBorderBox=function(node,_1c9){var s=_1c9||gcs(node),pe=d._getPadExtents(node,s),cb=d._getContentBox(node,s);return {l:cb.l-pe.l,t:cb.t-pe.t,w:cb.w+pe.w,h:cb.h+pe.h};};dojo._setBox=function(node,l,t,w,h,u){u=u||"px";var s=node.style;if(!isNaN(l)){s.left=l+u;}if(!isNaN(t)){s.top=t+u;}if(w>=0){s.width=w+u;}if(h>=0){s.height=h+u;}};dojo._isButtonTag=function(node){return node.tagName=="BUTTON"||node.tagName=="INPUT"&&(node.getAttribute("type")||"").toUpperCase()=="BUTTON";};dojo._usesBorderBox=function(node){var n=node.tagName;return d.boxModel=="border-box"||n=="TABLE"||d._isButtonTag(node);};dojo._setContentSize=function(node,_1ca,_1cb,_1cc){if(d._usesBorderBox(node)){var pb=d._getPadBorderExtents(node,_1cc);if(_1ca>=0){_1ca+=pb.w;}if(_1cb>=0){_1cb+=pb.h;}}d._setBox(node,NaN,NaN,_1ca,_1cb);};dojo._setMarginBox=function(node,_1cd,_1ce,_1cf,_1d0,_1d1){var s=_1d1||gcs(node),bb=d._usesBorderBox(node),pb=bb?_1d2:d._getPadBorderExtents(node,s);if(d.isWebKit){if(d._isButtonTag(node)){var ns=node.style;if(_1cf>=0&&!ns.width){ns.width="4px";}if(_1d0>=0&&!ns.height){ns.height="4px";}}}var mb=d._getMarginExtents(node,s);if(_1cf>=0){_1cf=Math.max(_1cf-pb.w-mb.w,0);}if(_1d0>=0){_1d0=Math.max(_1d0-pb.h-mb.h,0);}d._setBox(node,_1cd,_1ce,_1cf,_1d0);};var _1d2={l:0,t:0,w:0,h:0};dojo.marginBox=function(node,box){var n=byId(node),s=gcs(n),b=box;return !b?d._getMarginBox(n,s):d._setMarginBox(n,b.l,b.t,b.w,b.h,s);};dojo.contentBox=function(node,box){var n=byId(node),s=gcs(n),b=box;return !b?d._getContentBox(n,s):d._setContentSize(n,b.w,b.h,s);};var _1d3=function(node,prop){if(!(node=(node||0).parentNode)){return 0;}var val,_1d4=0,_1d5=d.body();while(node&&node.style){if(gcs(node).position=="fixed"){return 0;}val=node[prop];if(val){_1d4+=val-0;if(node==_1d5){break;}}node=node.parentNode;}return _1d4;};dojo._docScroll=function(){var n=d.global;return "pageXOffset" in n?{x:n.pageXOffset,y:n.pageYOffset}:(n=d.isQuirks?d.doc.body:d.doc.documentElement,{x:d._fixIeBiDiScrollLeft(n.scrollLeft||0),y:n.scrollTop||0});};dojo._isBodyLtr=function(){return "_bodyLtr" in d?d._bodyLtr:d._bodyLtr=(d.body().dir||d.doc.documentElement.dir||"ltr").toLowerCase()=="ltr";};dojo._getIeDocumentElementOffset=function(){var de=d.doc.documentElement;if(d.isIE<8){var r=de.getBoundingClientRect();var l=r.left,t=r.top;if(d.isIE<7){l+=de.clientLeft;t+=de.clientTop;}return {x:l<0?0:l,y:t<0?0:t};}else{return {x:0,y:0};}};dojo._fixIeBiDiScrollLeft=function(_1d6){var ie=d.isIE;if(ie&&!d._isBodyLtr()){var qk=d.isQuirks,de=qk?d.doc.body:d.doc.documentElement;if(ie==6&&!qk&&d.global.frameElement&&de.scrollHeight>de.clientHeight){_1d6+=de.clientLeft;}return (ie<8||qk)?(_1d6+de.clientWidth-de.scrollWidth):-_1d6;}return _1d6;};dojo._abs=dojo.position=function(node,_1d7){node=byId(node);var db=d.body(),dh=db.parentNode,ret=node.getBoundingClientRect();ret={x:ret.left,y:ret.top,w:ret.right-ret.left,h:ret.bottom-ret.top};if(d.isIE){var _1d8=d._getIeDocumentElementOffset();ret.x-=_1d8.x+(d.isQuirks?db.clientLeft+db.offsetLeft:0);ret.y-=_1d8.y+(d.isQuirks?db.clientTop+db.offsetTop:0);}else{if(d.isFF==3){var cs=gcs(dh);ret.x-=px(dh,cs.marginLeft)+px(dh,cs.borderLeftWidth);ret.y-=px(dh,cs.marginTop)+px(dh,cs.borderTopWidth);}}if(_1d7){var _1d9=d._docScroll();ret.x+=_1d9.x;ret.y+=_1d9.y;}return ret;};dojo.coords=function(node,_1da){var n=byId(node),s=gcs(n),mb=d._getMarginBox(n,s);var abs=d.position(n,_1da);mb.x=abs.x;mb.y=abs.y;return mb;};var _1db={"class":"className","for":"htmlFor",tabindex:"tabIndex",readonly:"readOnly",colspan:"colSpan",frameborder:"frameBorder",rowspan:"rowSpan",valuetype:"valueType"},_1dc={classname:"class",htmlfor:"for",tabindex:"tabIndex",readonly:"readOnly"},_1dd={innerHTML:1,className:1,htmlFor:d.isIE,value:1};var _1de=function(name){return _1dc[name.toLowerCase()]||name;};var _1df=function(node,name){var attr=node.getAttributeNode&&node.getAttributeNode(name);return attr&&attr.specified;};dojo.hasAttr=function(node,name){var lc=name.toLowerCase();return _1dd[_1db[lc]||name]||_1df(byId(node),_1dc[lc]||name);};var _1e0={},_1e1=0,_1e2=dojo._scopeName+"attrid",_1e3={col:1,colgroup:1,table:1,tbody:1,tfoot:1,thead:1,tr:1,title:1};dojo.attr=function(node,name,_1e4){node=byId(node);var args=arguments.length,prop;if(args==2&&typeof name!="string"){for(var x in name){d.attr(node,x,name[x]);}return node;}var lc=name.toLowerCase(),_1e5=_1db[lc]||name,_1e6=_1dd[_1e5],_1e7=_1dc[lc]||name;if(args==3){do{if(_1e5=="style"&&typeof _1e4!="string"){d.style(node,_1e4);break;}if(_1e5=="innerHTML"){if(d.isIE&&node.tagName.toLowerCase() in _1e3){d.empty(node);node.appendChild(d._toDom(_1e4,node.ownerDocument));}else{node[_1e5]=_1e4;}break;}if(d.isFunction(_1e4)){var _1e8=d.attr(node,_1e2);if(!_1e8){_1e8=_1e1++;d.attr(node,_1e2,_1e8);}if(!_1e0[_1e8]){_1e0[_1e8]={};}var h=_1e0[_1e8][_1e5];if(h){d.disconnect(h);}else{try{delete node[_1e5];}catch(e){}}_1e0[_1e8][_1e5]=d.connect(node,_1e5,_1e4);break;}if(_1e6||typeof _1e4=="boolean"){node[_1e5]=_1e4;break;}node.setAttribute(_1e7,_1e4);}while(false);return node;}_1e4=node[_1e5];if(_1e6&&typeof _1e4!="undefined"){return _1e4;}if(_1e5!="href"&&(typeof _1e4=="boolean"||d.isFunction(_1e4))){return _1e4;}return _1df(node,_1e7)?node.getAttribute(_1e7):null;};dojo.removeAttr=function(node,name){byId(node).removeAttribute(_1de(name));};dojo.getNodeProp=function(node,name){node=byId(node);var lc=name.toLowerCase(),_1e9=_1db[lc]||name;if((_1e9 in node)&&_1e9!="href"){return node[_1e9];}var _1ea=_1dc[lc]||name;return _1df(node,_1ea)?node.getAttribute(_1ea):null;};dojo.create=function(tag,_1eb,_1ec,pos){var doc=d.doc;if(_1ec){_1ec=byId(_1ec);doc=_1ec.ownerDocument;}if(typeof tag=="string"){tag=doc.createElement(tag);}if(_1eb){d.attr(tag,_1eb);}if(_1ec){d.place(tag,_1ec,pos);}return tag;};d.empty=d.isIE?function(node){node=byId(node);for(var c;c=node.lastChild;){d.destroy(c);}}:function(node){byId(node).innerHTML="";};var _1ed={option:["select"],tbody:["table"],thead:["table"],tfoot:["table"],tr:["table","tbody"],td:["table","tbody","tr"],th:["table","thead","tr"],legend:["fieldset"],caption:["table"],colgroup:["table"],col:["table","colgroup"],li:["ul"]},_1ee=/<\s*([\w\:]+)/,_1ef={},_1f0=0,_1f1="__"+d._scopeName+"ToDomId";for(var _1f2 in _1ed){if(_1ed.hasOwnProperty(_1f2)){var tw=_1ed[_1f2];tw.pre=_1f2=="option"?"<select multiple=\"multiple\">":"<"+tw.join("><")+">";tw.post="</"+tw.reverse().join("></")+">";}}d._toDom=function(frag,doc){doc=doc||d.doc;var _1f3=doc[_1f1];if(!_1f3){doc[_1f1]=_1f3=++_1f0+"";_1ef[_1f3]=doc.createElement("div");}frag+="";var _1f4=frag.match(_1ee),tag=_1f4?_1f4[1].toLowerCase():"",_1f5=_1ef[_1f3],wrap,i,fc,df;if(_1f4&&_1ed[tag]){wrap=_1ed[tag];_1f5.innerHTML=wrap.pre+frag+wrap.post;for(i=wrap.length;i;--i){_1f5=_1f5.firstChild;}}else{_1f5.innerHTML=frag;}if(_1f5.childNodes.length==1){return _1f5.removeChild(_1f5.firstChild);}df=doc.createDocumentFragment();while(fc=_1f5.firstChild){df.appendChild(fc);}return df;};var _1f6="className";dojo.hasClass=function(node,_1f7){return ((" "+byId(node)[_1f6]+" ").indexOf(" "+_1f7+" ")>=0);};var _1f8=/\s+/,a1=[""],_1f9={},_1fa=function(s){if(typeof s=="string"||s instanceof String){if(s.indexOf(" ")<0){a1[0]=s;return a1;}else{return s.split(_1f8);}}return s||"";};dojo.addClass=function(node,_1fb){node=byId(node);_1fb=_1fa(_1fb);var cls=node[_1f6],_1fc;cls=cls?" "+cls+" ":" ";_1fc=cls.length;for(var i=0,len=_1fb.length,c;i<len;++i){c=_1fb[i];if(c&&cls.indexOf(" "+c+" ")<0){cls+=c+" ";}}if(_1fc<cls.length){node[_1f6]=cls.substr(1,cls.length-2);}};dojo.removeClass=function(node,_1fd){node=byId(node);var cls;if(_1fd!==undefined){_1fd=_1fa(_1fd);cls=" "+node[_1f6]+" ";for(var i=0,len=_1fd.length;i<len;++i){cls=cls.replace(" "+_1fd[i]+" "," ");}cls=d.trim(cls);}else{cls="";}if(node[_1f6]!=cls){node[_1f6]=cls;}};dojo.replaceClass=function(node,_1fe,_1ff){node=byId(node);_1f9.className=node.className;dojo.removeClass(_1f9,_1ff);dojo.addClass(_1f9,_1fe);if(node.className!==_1f9.className){node.className=_1f9.className;}};dojo.toggleClass=function(node,_200,_201){if(_201===undefined){_201=!d.hasClass(node,_200);}d[_201?"addClass":"removeClass"](node,_200);};})();}if(!dojo._hasResource["dojo._base.NodeList"]){dojo._hasResource["dojo._base.NodeList"]=true;dojo.provide("dojo._base.NodeList");(function(){var d=dojo;var ap=Array.prototype,aps=ap.slice,apc=ap.concat;var tnl=function(a,_202,_203){if(!a.sort){a=aps.call(a,0);}var ctor=_203||this._NodeListCtor||d._NodeListCtor;a.constructor=ctor;dojo._mixin(a,ctor.prototype);a._NodeListCtor=ctor;return _202?a._stash(_202):a;};var _204=function(f,a,o){a=[0].concat(aps.call(a,0));o=o||d.global;return function(node){a[0]=node;return f.apply(o,a);};};var _205=function(f,o){return function(){this.forEach(_204(f,arguments,o));return this;};};var _206=function(f,o){return function(){return this.map(_204(f,arguments,o));};};var _207=function(f,o){return function(){return this.filter(_204(f,arguments,o));};};var _208=function(f,g,o){return function(){var a=arguments,body=_204(f,a,o);if(g.call(o||d.global,a)){return this.map(body);}this.forEach(body);return this;};};var _209=function(a){return a.length==1&&(typeof a[0]=="string");};var _20a=function(node){var p=node.parentNode;if(p){p.removeChild(node);}};dojo.NodeList=function(){return tnl(Array.apply(null,arguments));};d._NodeListCtor=d.NodeList;var nl=d.NodeList,nlp=nl.prototype;nl._wrap=nlp._wrap=tnl;nl._adaptAsMap=_206;nl._adaptAsForEach=_205;nl._adaptAsFilter=_207;nl._adaptWithCondition=_208;d.forEach(["slice","splice"],function(name){var f=ap[name];nlp[name]=function(){return this._wrap(f.apply(this,arguments),name=="slice"?this:null);};});d.forEach(["indexOf","lastIndexOf","every","some"],function(name){var f=d[name];nlp[name]=function(){return f.apply(d,[this].concat(aps.call(arguments,0)));};});d.forEach(["attr","style"],function(name){nlp[name]=_208(d[name],_209);});d.forEach(["connect","addClass","removeClass","replaceClass","toggleClass","empty","removeAttr"],function(name){nlp[name]=_205(d[name]);});dojo.extend(dojo.NodeList,{_normalize:function(_20b,_20c){var _20d=_20b.parse===true?true:false;if(typeof _20b.template=="string"){var _20e=_20b.templateFunc||(dojo.string&&dojo.string.substitute);_20b=_20e?_20e(_20b.template,_20b):_20b;}var type=(typeof _20b);if(type=="string"||type=="number"){_20b=dojo._toDom(_20b,(_20c&&_20c.ownerDocument));if(_20b.nodeType==11){_20b=dojo._toArray(_20b.childNodes);}else{_20b=[_20b];}}else{if(!dojo.isArrayLike(_20b)){_20b=[_20b];}else{if(!dojo.isArray(_20b)){_20b=dojo._toArray(_20b);}}}if(_20d){_20b._runParse=true;}return _20b;},_cloneNode:function(node){return node.cloneNode(true);},_place:function(ary,_20f,_210,_211){if(_20f.nodeType!=1&&_210=="only"){return;}var _212=_20f,_213;var _214=ary.length;for(var i=_214-1;i>=0;i--){var node=(_211?this._cloneNode(ary[i]):ary[i]);if(ary._runParse&&dojo.parser&&dojo.parser.parse){if(!_213){_213=_212.ownerDocument.createElement("div");}_213.appendChild(node);dojo.parser.parse(_213);node=_213.firstChild;while(_213.firstChild){_213.removeChild(_213.firstChild);}}if(i==_214-1){dojo.place(node,_212,_210);}else{_212.parentNode.insertBefore(node,_212);}_212=node;}},_stash:function(_215){this._parent=_215;return this;},end:function(){if(this._parent){return this._parent;}else{return new this._NodeListCtor();}},concat:function(item){var t=d.isArray(this)?this:aps.call(this,0),m=d.map(arguments,function(a){return a&&!d.isArray(a)&&(typeof NodeList!="undefined"&&a.constructor===NodeList||a.constructor===this._NodeListCtor)?aps.call(a,0):a;});return this._wrap(apc.apply(t,m),this);},map:function(func,obj){return this._wrap(d.map(this,func,obj),this);},forEach:function(_216,_217){d.forEach(this,_216,_217);return this;},coords:_206(d.coords),position:_206(d.position),place:function(_218,_219){var item=d.query(_218)[0];return this.forEach(function(node){d.place(node,item,_219);});},orphan:function(_21a){return (_21a?d._filterQueryResult(this,_21a):this).forEach(_20a);},adopt:function(_21b,_21c){return d.query(_21b).place(this[0],_21c)._stash(this);},query:function(_21d){if(!_21d){return this;}var ret=this.map(function(node){return d.query(_21d,node).filter(function(_21e){return _21e!==undefined;});});return this._wrap(apc.apply([],ret),this);},filter:function(_21f){var a=arguments,_220=this,_221=0;if(typeof _21f=="string"){_220=d._filterQueryResult(this,a[0]);if(a.length==1){return _220._stash(this);}_221=1;}return this._wrap(d.filter(_220,a[_221],a[_221+1]),this);},addContent:function(_222,_223){_222=this._normalize(_222,this[0]);for(var i=0,node;(node=this[i]);i++){this._place(_222,node,_223,i>0);}return this;},instantiate:function(_224,_225){var c=d.isFunction(_224)?_224:d.getObject(_224);_225=_225||{};return this.forEach(function(node){new c(_225,node);});},at:function(){var t=new this._NodeListCtor();d.forEach(arguments,function(i){if(i<0){i=this.length+i;}if(this[i]){t.push(this[i]);}},this);return t._stash(this);}});nl.events=["blur","focus","change","click","error","keydown","keypress","keyup","load","mousedown","mouseenter","mouseleave","mousemove","mouseout","mouseover","mouseup","submit"];d.forEach(nl.events,function(evt){var _226="on"+evt;nlp[_226]=function(a,b){return this.connect(_226,a,b);};});})();}if(!dojo._hasResource["dojo._base.query"]){dojo._hasResource["dojo._base.query"]=true;(function(){var _227=function(d){var trim=d.trim;var each=d.forEach;var qlc=(d._NodeListCtor=d.NodeList);var _228=function(){return d.doc;};var _229=((d.isWebKit||d.isMozilla)&&((_228().compatMode)=="BackCompat"));var _22a=!!_228().firstChild["children"]?"children":"childNodes";var _22b=">~+";var _22c=false;var _22d=function(){return true;};var _22e=function(_22f){if(_22b.indexOf(_22f.slice(-1))>=0){_22f+=" * ";}else{_22f+=" ";}var ts=function(s,e){return trim(_22f.slice(s,e));};var _230=[];var _231=-1,_232=-1,_233=-1,_234=-1,_235=-1,inId=-1,_236=-1,lc="",cc="",_237;var x=0,ql=_22f.length,_238=null,_239=null;var _23a=function(){if(_236>=0){var tv=(_236==x)?null:ts(_236,x);_238[(_22b.indexOf(tv)<0)?"tag":"oper"]=tv;_236=-1;}};var _23b=function(){if(inId>=0){_238.id=ts(inId,x).replace(/\\/g,"");inId=-1;}};var _23c=function(){if(_235>=0){_238.classes.push(ts(_235+1,x).replace(/\\/g,""));_235=-1;}};var _23d=function(){_23b();_23a();_23c();};var _23e=function(){_23d();if(_234>=0){_238.pseudos.push({name:ts(_234+1,x)});}_238.loops=(_238.pseudos.length||_238.attrs.length||_238.classes.length);_238.oquery=_238.query=ts(_237,x);_238.otag=_238.tag=(_238["oper"])?null:(_238.tag||"*");if(_238.tag){_238.tag=_238.tag.toUpperCase();}if(_230.length&&(_230[_230.length-1].oper)){_238.infixOper=_230.pop();_238.query=_238.infixOper.query+" "+_238.query;}_230.push(_238);_238=null;};for(;lc=cc,cc=_22f.charAt(x),x<ql;x++){if(lc=="\\"){continue;}if(!_238){_237=x;_238={query:null,pseudos:[],attrs:[],classes:[],tag:null,oper:null,id:null,getTag:function(){return (_22c)?this.otag:this.tag;}};_236=x;}if(_231>=0){if(cc=="]"){if(!_239.attr){_239.attr=ts(_231+1,x);}else{_239.matchFor=ts((_233||_231+1),x);}var cmf=_239.matchFor;if(cmf){if((cmf.charAt(0)=="\"")||(cmf.charAt(0)=="'")){_239.matchFor=cmf.slice(1,-1);}}_238.attrs.push(_239);_239=null;_231=_233=-1;}else{if(cc=="="){var _23f=("|~^$*".indexOf(lc)>=0)?lc:"";_239.type=_23f+cc;_239.attr=ts(_231+1,x-_23f.length);_233=x+1;}}}else{if(_232>=0){if(cc==")"){if(_234>=0){_239.value=ts(_232+1,x);}_234=_232=-1;}}else{if(cc=="#"){_23d();inId=x+1;}else{if(cc=="."){_23d();_235=x;}else{if(cc==":"){_23d();_234=x;}else{if(cc=="["){_23d();_231=x;_239={};}else{if(cc=="("){if(_234>=0){_239={name:ts(_234+1,x),value:null};_238.pseudos.push(_239);}_232=x;}else{if((cc==" ")&&(lc!=cc)){_23e();}}}}}}}}}return _230;};var _240=function(_241,_242){if(!_241){return _242;}if(!_242){return _241;}return function(){return _241.apply(window,arguments)&&_242.apply(window,arguments);};};var _243=function(i,arr){var r=arr||[];if(i){r.push(i);}return r;};var _244=function(n){return (1==n.nodeType);};var _245="";var _246=function(elem,attr){if(!elem){return _245;}if(attr=="class"){return elem.className||_245;}if(attr=="for"){return elem.htmlFor||_245;}if(attr=="style"){return elem.style.cssText||_245;}return (_22c?elem.getAttribute(attr):elem.getAttribute(attr,2))||_245;};var _247={"*=":function(attr,_248){return function(elem){return (_246(elem,attr).indexOf(_248)>=0);};},"^=":function(attr,_249){return function(elem){return (_246(elem,attr).indexOf(_249)==0);};},"$=":function(attr,_24a){var tval=" "+_24a;return function(elem){var ea=" "+_246(elem,attr);return (ea.lastIndexOf(_24a)==(ea.length-_24a.length));};},"~=":function(attr,_24b){var tval=" "+_24b+" ";return function(elem){var ea=" "+_246(elem,attr)+" ";return (ea.indexOf(tval)>=0);};},"|=":function(attr,_24c){var _24d=" "+_24c+"-";return function(elem){var ea=" "+_246(elem,attr);return ((ea==_24c)||(ea.indexOf(_24d)==0));};},"=":function(attr,_24e){return function(elem){return (_246(elem,attr)==_24e);};}};var _24f=(typeof _228().firstChild.nextElementSibling=="undefined");var _250=!_24f?"nextElementSibling":"nextSibling";var _251=!_24f?"previousElementSibling":"previousSibling";var _252=(_24f?_244:_22d);var _253=function(node){while(node=node[_251]){if(_252(node)){return false;}}return true;};var _254=function(node){while(node=node[_250]){if(_252(node)){return false;}}return true;};var _255=function(node){var root=node.parentNode;var i=0,tret=root[_22a],ci=(node["_i"]||-1),cl=(root["_l"]||-1);if(!tret){return -1;}var l=tret.length;if(cl==l&&ci>=0&&cl>=0){return ci;}root["_l"]=l;ci=-1;for(var te=root["firstElementChild"]||root["firstChild"];te;te=te[_250]){if(_252(te)){te["_i"]=++i;if(node===te){ci=i;}}}return ci;};var _256=function(elem){return !((_255(elem))%2);};var _257=function(elem){return ((_255(elem))%2);};var _258={"checked":function(name,_259){return function(elem){return !!("checked" in elem?elem.checked:elem.selected);};},"first-child":function(){return _253;},"last-child":function(){return _254;},"only-child":function(name,_25a){return function(node){if(!_253(node)){return false;}if(!_254(node)){return false;}return true;};},"empty":function(name,_25b){return function(elem){var cn=elem.childNodes;var cnl=elem.childNodes.length;for(var x=cnl-1;x>=0;x--){var nt=cn[x].nodeType;if((nt===1)||(nt==3)){return false;}}return true;};},"contains":function(name,_25c){var cz=_25c.charAt(0);if(cz=="\""||cz=="'"){_25c=_25c.slice(1,-1);}return function(elem){return (elem.innerHTML.indexOf(_25c)>=0);};},"not":function(name,_25d){var p=_22e(_25d)[0];var _25e={el:1};if(p.tag!="*"){_25e.tag=1;}if(!p.classes.length){_25e.classes=1;}var ntf=_25f(p,_25e);return function(elem){return (!ntf(elem));};},"nth-child":function(name,_260){var pi=parseInt;if(_260=="odd"){return _257;}else{if(_260=="even"){return _256;}}if(_260.indexOf("n")!=-1){var _261=_260.split("n",2);var pred=_261[0]?((_261[0]=="-")?-1:pi(_261[0])):1;var idx=_261[1]?pi(_261[1]):0;var lb=0,ub=-1;if(pred>0){if(idx<0){idx=(idx%pred)&&(pred+(idx%pred));}else{if(idx>0){if(idx>=pred){lb=idx-idx%pred;}idx=idx%pred;}}}else{if(pred<0){pred*=-1;if(idx>0){ub=idx;idx=idx%pred;}}}if(pred>0){return function(elem){var i=_255(elem);return (i>=lb)&&(ub<0||i<=ub)&&((i%pred)==idx);};}else{_260=idx;}}var _262=pi(_260);return function(elem){return (_255(elem)==_262);};}};var _263=(d.isIE<9||(dojo.isIE&&dojo.isQuirks))?function(cond){var clc=cond.toLowerCase();if(clc=="class"){cond="className";}return function(elem){return (_22c?elem.getAttribute(cond):elem[cond]||elem[clc]);};}:function(cond){return function(elem){return (elem&&elem.getAttribute&&elem.hasAttribute(cond));};};var _25f=function(_264,_265){if(!_264){return _22d;}_265=_265||{};var ff=null;if(!("el" in _265)){ff=_240(ff,_244);}if(!("tag" in _265)){if(_264.tag!="*"){ff=_240(ff,function(elem){return (elem&&(elem.tagName==_264.getTag()));});}}if(!("classes" in _265)){each(_264.classes,function(_266,idx,arr){var re=new RegExp("(?:^|\\s)"+_266+"(?:\\s|$)");ff=_240(ff,function(elem){return re.test(elem.className);});ff.count=idx;});}if(!("pseudos" in _265)){each(_264.pseudos,function(_267){var pn=_267.name;if(_258[pn]){ff=_240(ff,_258[pn](pn,_267.value));}});}if(!("attrs" in _265)){each(_264.attrs,function(attr){var _268;var a=attr.attr;if(attr.type&&_247[attr.type]){_268=_247[attr.type](a,attr.matchFor);}else{if(a.length){_268=_263(a);}}if(_268){ff=_240(ff,_268);}});}if(!("id" in _265)){if(_264.id){ff=_240(ff,function(elem){return (!!elem&&(elem.id==_264.id));});}}if(!ff){if(!("default" in _265)){ff=_22d;}}return ff;};var _269=function(_26a){return function(node,ret,bag){while(node=node[_250]){if(_24f&&(!_244(node))){continue;}if((!bag||_26b(node,bag))&&_26a(node)){ret.push(node);}break;}return ret;};};var _26c=function(_26d){return function(root,ret,bag){var te=root[_250];while(te){if(_252(te)){if(bag&&!_26b(te,bag)){break;}if(_26d(te)){ret.push(te);}}te=te[_250];}return ret;};};var _26e=function(_26f){_26f=_26f||_22d;return function(root,ret,bag){var te,x=0,tret=root[_22a];while(te=tret[x++]){if(_252(te)&&(!bag||_26b(te,bag))&&(_26f(te,x))){ret.push(te);}}return ret;};};var _270=function(node,root){var pn=node.parentNode;while(pn){if(pn==root){break;}pn=pn.parentNode;}return !!pn;};var _271={};var _272=function(_273){var _274=_271[_273.query];if(_274){return _274;}var io=_273.infixOper;var oper=(io?io.oper:"");var _275=_25f(_273,{el:1});var qt=_273.tag;var _276=("*"==qt);var ecs=_228()["getElementsByClassName"];if(!oper){if(_273.id){_275=(!_273.loops&&_276)?_22d:_25f(_273,{el:1,id:1});_274=function(root,arr){var te=d.byId(_273.id,(root.ownerDocument||root));if(!te||!_275(te)){return;}if(9==root.nodeType){return _243(te,arr);}else{if(_270(te,root)){return _243(te,arr);}}};}else{if(ecs&&/\{\s*\[native code\]\s*\}/.test(String(ecs))&&_273.classes.length&&!_229){_275=_25f(_273,{el:1,classes:1,id:1});var _277=_273.classes.join(" ");_274=function(root,arr,bag){var ret=_243(0,arr),te,x=0;var tret=root.getElementsByClassName(_277);while((te=tret[x++])){if(_275(te,root)&&_26b(te,bag)){ret.push(te);}}return ret;};}else{if(!_276&&!_273.loops){_274=function(root,arr,bag){var ret=_243(0,arr),te,x=0;var tret=root.getElementsByTagName(_273.getTag());while((te=tret[x++])){if(_26b(te,bag)){ret.push(te);}}return ret;};}else{_275=_25f(_273,{el:1,tag:1,id:1});_274=function(root,arr,bag){var ret=_243(0,arr),te,x=0;var tret=root.getElementsByTagName(_273.getTag());while((te=tret[x++])){if(_275(te,root)&&_26b(te,bag)){ret.push(te);}}return ret;};}}}}else{var _278={el:1};if(_276){_278.tag=1;}_275=_25f(_273,_278);if("+"==oper){_274=_269(_275);}else{if("~"==oper){_274=_26c(_275);}else{if(">"==oper){_274=_26e(_275);}}}}return _271[_273.query]=_274;};var _279=function(root,_27a){var _27b=_243(root),qp,x,te,qpl=_27a.length,bag,ret;for(var i=0;i<qpl;i++){ret=[];qp=_27a[i];x=_27b.length-1;if(x>0){bag={};ret.nozip=true;}var gef=_272(qp);for(var j=0;(te=_27b[j]);j++){gef(te,ret,bag);}if(!ret.length){break;}_27b=ret;}return ret;};var _27c={},_27d={};var _27e=function(_27f){var _280=_22e(trim(_27f));if(_280.length==1){var tef=_272(_280[0]);return function(root){var r=tef(root,new qlc());if(r){r.nozip=true;}return r;};}return function(root){return _279(root,_280);};};var nua=navigator.userAgent;var wk="WebKit/";var _281=(d.isWebKit&&(nua.indexOf(wk)>0)&&(parseFloat(nua.split(wk)[1])>528));var _282=d.isIE?"commentStrip":"nozip";var qsa="querySelectorAll";var _283=(!!_228()[qsa]&&(!d.isSafari||(d.isSafari>3.1)||_281));var _284=/n\+\d|([^ ])?([>~+])([^ =])?/g;var _285=function(_286,pre,ch,post){return ch?(pre?pre+" ":"")+ch+(post?" "+post:""):_286;};var _287=function(_288,_289){_288=_288.replace(_284,_285);if(_283){var _28a=_27d[_288];if(_28a&&!_289){return _28a;}}var _28b=_27c[_288];if(_28b){return _28b;}var qcz=_288.charAt(0);var _28c=(-1==_288.indexOf(" "));if((_288.indexOf("#")>=0)&&(_28c)){_289=true;}var _28d=(_283&&(!_289)&&(_22b.indexOf(qcz)==-1)&&(!d.isIE||(_288.indexOf(":")==-1))&&(!(_229&&(_288.indexOf(".")>=0)))&&(_288.indexOf(":contains")==-1)&&(_288.indexOf(":checked")==-1)&&(_288.indexOf("|=")==-1));if(_28d){var tq=(_22b.indexOf(_288.charAt(_288.length-1))>=0)?(_288+" *"):_288;return _27d[_288]=function(root){try{if(!((9==root.nodeType)||_28c)){throw "";}var r=root[qsa](tq);r[_282]=true;return r;}catch(e){return _287(_288,true)(root);}};}else{var _28e=_288.split(/\s*,\s*/);return _27c[_288]=((_28e.length<2)?_27e(_288):function(root){var _28f=0,ret=[],tp;while((tp=_28e[_28f++])){ret=ret.concat(_27e(tp)(root));}return ret;});}};var _290=0;var _291=d.isIE?function(node){if(_22c){return (node.getAttribute("_uid")||node.setAttribute("_uid",++_290)||_290);}else{return node.uniqueID;}}:function(node){return (node._uid||(node._uid=++_290));};var _26b=function(node,bag){if(!bag){return 1;}var id=_291(node);if(!bag[id]){return bag[id]=1;}return 0;};var _292="_zipIdx";var _293=function(arr){if(arr&&arr.nozip){return (qlc._wrap)?qlc._wrap(arr):arr;}var ret=new qlc();if(!arr||!arr.length){return ret;}if(arr[0]){ret.push(arr[0]);}if(arr.length<2){return ret;}_290++;if(d.isIE&&_22c){var _294=_290+"";arr[0].setAttribute(_292,_294);for(var x=1,te;te=arr[x];x++){if(arr[x].getAttribute(_292)!=_294){ret.push(te);}te.setAttribute(_292,_294);}}else{if(d.isIE&&arr.commentStrip){try{for(var x=1,te;te=arr[x];x++){if(_244(te)){ret.push(te);}}}catch(e){}}else{if(arr[0]){arr[0][_292]=_290;}for(var x=1,te;te=arr[x];x++){if(arr[x][_292]!=_290){ret.push(te);}te[_292]=_290;}}}return ret;};d.query=function(_295,root){qlc=d._NodeListCtor;if(!_295){return new qlc();}if(_295.constructor==qlc){return _295;}if(typeof _295!="string"){return new qlc(_295);}if(typeof root=="string"){root=d.byId(root);if(!root){return new qlc();}}root=root||_228();var od=root.ownerDocument||root.documentElement;_22c=(root.contentType&&root.contentType=="application/xml")||(d.isOpera&&(root.doctype||od.toString()=="[object XMLDocument]"))||(!!od)&&(d.isIE?od.xml:(root.xmlVersion||od.xmlVersion));var r=_287(_295)(root);if(r&&r.nozip&&!qlc._wrap){return r;}return _293(r);};d.query.pseudos=_258;d._filterQueryResult=function(_296,_297,root){var _298=new d._NodeListCtor(),_299=_22e(_297),_29a=(_299.length==1&&!/[^\w#\.]/.test(_297))?_25f(_299[0]):function(node){return dojo.query(_297,root).indexOf(node)!=-1;};for(var x=0,te;te=_296[x];x++){if(_29a(te)){_298.push(te);}}return _298;};};var _29b=function(){acme={trim:function(str){str=str.replace(/^\s+/,"");for(var i=str.length-1;i>=0;i--){if(/\S/.test(str.charAt(i))){str=str.substring(0,i+1);break;}}return str;},forEach:function(arr,_29c,_29d){if(!arr||!arr.length){return;}for(var i=0,l=arr.length;i<l;++i){_29c.call(_29d||window,arr[i],i,arr);}},byId:function(id,doc){if(typeof id=="string"){return (doc||document).getElementById(id);}else{return id;}},doc:document,NodeList:Array};var n=navigator;var dua=n.userAgent;var dav=n.appVersion;var tv=parseFloat(dav);acme.isOpera=(dua.indexOf("Opera")>=0)?tv:undefined;acme.isKhtml=(dav.indexOf("Konqueror")>=0)?tv:undefined;acme.isWebKit=parseFloat(dua.split("WebKit/")[1])||undefined;acme.isChrome=parseFloat(dua.split("Chrome/")[1])||undefined;var _29e=Math.max(dav.indexOf("WebKit"),dav.indexOf("Safari"),0);if(_29e&&!acme.isChrome){acme.isSafari=parseFloat(dav.split("Version/")[1]);if(!acme.isSafari||parseFloat(dav.substr(_29e+7))<=419.3){acme.isSafari=2;}}if(document.all&&!acme.isOpera){acme.isIE=parseFloat(dav.split("MSIE ")[1])||undefined;}Array._wrap=function(arr){return arr;};return acme;};if(this["dojo"]){dojo.provide("dojo._base.query");_227(this["queryPortability"]||this["acme"]||dojo);}else{_227(this["queryPortability"]||this["acme"]||_29b());}})();}if(!dojo._hasResource["dojo._base.xhr"]){dojo._hasResource["dojo._base.xhr"]=true;dojo.provide("dojo._base.xhr");(function(){var _29f=dojo,cfg=_29f.config;function _2a0(obj,name,_2a1){if(_2a1===null){return;}var val=obj[name];if(typeof val=="string"){obj[name]=[val,_2a1];}else{if(_29f.isArray(val)){val.push(_2a1);}else{obj[name]=_2a1;}}};dojo.fieldToObject=function(_2a2){var ret=null;var item=_29f.byId(_2a2);if(item){var _2a3=item.name;var type=(item.type||"").toLowerCase();if(_2a3&&type&&!item.disabled){if(type=="radio"||type=="checkbox"){if(item.checked){ret=item.value;}}else{if(item.multiple){ret=[];_29f.query("option",item).forEach(function(opt){if(opt.selected){ret.push(opt.value);}});}else{ret=item.value;}}}}return ret;};dojo.formToObject=function(_2a4){var ret={};var _2a5="file|submit|image|reset|button|";_29f.forEach(dojo.byId(_2a4).elements,function(item){var _2a6=item.name;var type=(item.type||"").toLowerCase();if(_2a6&&type&&_2a5.indexOf(type)==-1&&!item.disabled){_2a0(ret,_2a6,_29f.fieldToObject(item));if(type=="image"){ret[_2a6+".x"]=ret[_2a6+".y"]=ret[_2a6].x=ret[_2a6].y=0;}}});return ret;};dojo.objectToQuery=function(map){var enc=encodeURIComponent;var _2a7=[];var _2a8={};for(var name in map){var _2a9=map[name];if(_2a9!=_2a8[name]){var _2aa=enc(name)+"=";if(_29f.isArray(_2a9)){for(var i=0;i<_2a9.length;i++){_2a7.push(_2aa+enc(_2a9[i]));}}else{_2a7.push(_2aa+enc(_2a9));}}}return _2a7.join("&");};dojo.formToQuery=function(_2ab){return _29f.objectToQuery(_29f.formToObject(_2ab));};dojo.formToJson=function(_2ac,_2ad){return _29f.toJson(_29f.formToObject(_2ac),_2ad);};dojo.queryToObject=function(str){var ret={};var qp=str.split("&");var dec=decodeURIComponent;_29f.forEach(qp,function(item){if(item.length){var _2ae=item.split("=");var name=dec(_2ae.shift());var val=dec(_2ae.join("="));if(typeof ret[name]=="string"){ret[name]=[ret[name]];}if(_29f.isArray(ret[name])){ret[name].push(val);}else{ret[name]=val;}}});return ret;};dojo._blockAsync=false;var _2af=_29f._contentHandlers=dojo.contentHandlers={text:function(xhr){return xhr.responseText;},json:function(xhr){return _29f.fromJson(xhr.responseText||null);},"json-comment-filtered":function(xhr){if(!dojo.config.useCommentedJson){console.warn("Consider using the standard mimetype:application/json."+" json-commenting can introduce security issues. To"+" decrease the chances of hijacking, use the standard the 'json' handler and"+" prefix your json with: {}&&\n"+"Use djConfig.useCommentedJson=true to turn off this message.");}var _2b0=xhr.responseText;var _2b1=_2b0.indexOf("/*");var _2b2=_2b0.lastIndexOf("*/");if(_2b1==-1||_2b2==-1){throw new Error("JSON was not comment filtered");}return _29f.fromJson(_2b0.substring(_2b1+2,_2b2));},javascript:function(xhr){return _29f.eval(xhr.responseText);},xml:function(xhr){var _2b3=xhr.responseXML;if(_29f.isIE&&(!_2b3||!_2b3.documentElement)){var ms=function(n){return "MSXML"+n+".DOMDocument";};var dp=["Microsoft.XMLDOM",ms(6),ms(4),ms(3),ms(2)];_29f.some(dp,function(p){try{var dom=new ActiveXObject(p);dom.async=false;dom.loadXML(xhr.responseText);_2b3=dom;}catch(e){return false;}return true;});}return _2b3;},"json-comment-optional":function(xhr){if(xhr.responseText&&/^[^{\[]*\/\*/.test(xhr.responseText)){return _2af["json-comment-filtered"](xhr);}else{return _2af["json"](xhr);}}};dojo._ioSetArgs=function(args,_2b4,_2b5,_2b6){var _2b7={args:args,url:args.url};var _2b8=null;if(args.form){var form=_29f.byId(args.form);var _2b9=form.getAttributeNode("action");_2b7.url=_2b7.url||(_2b9?_2b9.value:null);_2b8=_29f.formToObject(form);}var _2ba=[{}];if(_2b8){_2ba.push(_2b8);}if(args.content){_2ba.push(args.content);}if(args.preventCache){_2ba.push({"dojo.preventCache":new Date().valueOf()});}_2b7.query=_29f.objectToQuery(_29f.mixin.apply(null,_2ba));_2b7.handleAs=args.handleAs||"text";var d=new _29f.Deferred(_2b4);d.addCallbacks(_2b5,function(_2bb){return _2b6(_2bb,d);});var ld=args.load;if(ld&&_29f.isFunction(ld)){d.addCallback(function(_2bc){return ld.call(args,_2bc,_2b7);});}var err=args.error;if(err&&_29f.isFunction(err)){d.addErrback(function(_2bd){return err.call(args,_2bd,_2b7);});}var _2be=args.handle;if(_2be&&_29f.isFunction(_2be)){d.addBoth(function(_2bf){return _2be.call(args,_2bf,_2b7);});}if(cfg.ioPublish&&_29f.publish&&_2b7.args.ioPublish!==false){d.addCallbacks(function(res){_29f.publish("/dojo/io/load",[d,res]);return res;},function(res){_29f.publish("/dojo/io/error",[d,res]);return res;});d.addBoth(function(res){_29f.publish("/dojo/io/done",[d,res]);return res;});}d.ioArgs=_2b7;return d;};var _2c0=function(dfd){dfd.canceled=true;var xhr=dfd.ioArgs.xhr;var _2c1=typeof xhr.abort;if(_2c1=="function"||_2c1=="object"||_2c1=="unknown"){xhr.abort();}var err=dfd.ioArgs.error;if(!err){err=new Error("xhr cancelled");err.dojoType="cancel";}return err;};var _2c2=function(dfd){var ret=_2af[dfd.ioArgs.handleAs](dfd.ioArgs.xhr);return ret===undefined?null:ret;};var _2c3=function(_2c4,dfd){if(!dfd.ioArgs.args.failOk){console.error(_2c4);}return _2c4;};var _2c5=null;var _2c6=[];var _2c7=0;var _2c8=function(dfd){if(_2c7<=0){_2c7=0;if(cfg.ioPublish&&_29f.publish&&(!dfd||dfd&&dfd.ioArgs.args.ioPublish!==false)){_29f.publish("/dojo/io/stop");}}};var _2c9=function(){var now=(new Date()).getTime();if(!_29f._blockAsync){for(var i=0,tif;i<_2c6.length&&(tif=_2c6[i]);i++){var dfd=tif.dfd;var func=function(){if(!dfd||dfd.canceled||!tif.validCheck(dfd)){_2c6.splice(i--,1);_2c7-=1;}else{if(tif.ioCheck(dfd)){_2c6.splice(i--,1);tif.resHandle(dfd);_2c7-=1;}else{if(dfd.startTime){if(dfd.startTime+(dfd.ioArgs.args.timeout||0)<now){_2c6.splice(i--,1);var err=new Error("timeout exceeded");err.dojoType="timeout";dfd.errback(err);dfd.cancel();_2c7-=1;}}}}};if(dojo.config.debugAtAllCosts){func.call(this);}else{try{func.call(this);}catch(e){dfd.errback(e);}}}}_2c8(dfd);if(!_2c6.length){clearInterval(_2c5);_2c5=null;return;}};dojo._ioCancelAll=function(){try{_29f.forEach(_2c6,function(i){try{i.dfd.cancel();}catch(e){}});}catch(e){}};if(_29f.isIE){_29f.addOnWindowUnload(_29f._ioCancelAll);}_29f._ioNotifyStart=function(dfd){if(cfg.ioPublish&&_29f.publish&&dfd.ioArgs.args.ioPublish!==false){if(!_2c7){_29f.publish("/dojo/io/start");}_2c7+=1;_29f.publish("/dojo/io/send",[dfd]);}};_29f._ioWatch=function(dfd,_2ca,_2cb,_2cc){var args=dfd.ioArgs.args;if(args.timeout){dfd.startTime=(new Date()).getTime();}_2c6.push({dfd:dfd,validCheck:_2ca,ioCheck:_2cb,resHandle:_2cc});if(!_2c5){_2c5=setInterval(_2c9,50);}if(args.sync){_2c9();}};var _2cd="application/x-www-form-urlencoded";var _2ce=function(dfd){return dfd.ioArgs.xhr.readyState;};var _2cf=function(dfd){return 4==dfd.ioArgs.xhr.readyState;};var _2d0=function(dfd){var xhr=dfd.ioArgs.xhr;if(_29f._isDocumentOk(xhr)){dfd.callback(dfd);}else{var err=new Error("Unable to load "+dfd.ioArgs.url+" status:"+xhr.status);err.status=xhr.status;err.responseText=xhr.responseText;dfd.errback(err);}};dojo._ioAddQueryToUrl=function(_2d1){if(_2d1.query.length){_2d1.url+=(_2d1.url.indexOf("?")==-1?"?":"&")+_2d1.query;_2d1.query=null;}};dojo.xhr=function(_2d2,args,_2d3){var dfd=_29f._ioSetArgs(args,_2c0,_2c2,_2c3);var _2d4=dfd.ioArgs;var xhr=_2d4.xhr=_29f._xhrObj(_2d4.args);if(!xhr){dfd.cancel();return dfd;}if("postData" in args){_2d4.query=args.postData;}else{if("putData" in args){_2d4.query=args.putData;}else{if("rawBody" in args){_2d4.query=args.rawBody;}else{if((arguments.length>2&&!_2d3)||"POST|PUT".indexOf(_2d2.toUpperCase())==-1){_29f._ioAddQueryToUrl(_2d4);}}}}xhr.open(_2d2,_2d4.url,args.sync!==true,args.user||undefined,args.password||undefined);if(args.headers){for(var hdr in args.headers){if(hdr.toLowerCase()==="content-type"&&!args.contentType){args.contentType=args.headers[hdr];}else{if(args.headers[hdr]){xhr.setRequestHeader(hdr,args.headers[hdr]);}}}}xhr.setRequestHeader("Content-Type",args.contentType||_2cd);if(!args.headers||!("X-Requested-With" in args.headers)){xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");}_29f._ioNotifyStart(dfd);if(dojo.config.debugAtAllCosts){xhr.send(_2d4.query);}else{try{xhr.send(_2d4.query);}catch(e){_2d4.error=e;dfd.cancel();}}_29f._ioWatch(dfd,_2ce,_2cf,_2d0);xhr=null;return dfd;};dojo.xhrGet=function(args){return _29f.xhr("GET",args);};dojo.rawXhrPost=dojo.xhrPost=function(args){return _29f.xhr("POST",args,true);};dojo.rawXhrPut=dojo.xhrPut=function(args){return _29f.xhr("PUT",args,true);};dojo.xhrDelete=function(args){return _29f.xhr("DELETE",args);};})();}if(!dojo._hasResource["dojo._base.fx"]){dojo._hasResource["dojo._base.fx"]=true;dojo.provide("dojo._base.fx");(function(){var d=dojo;var _2d5=d._mixin;dojo._Line=function(_2d6,end){this.start=_2d6;this.end=end;};dojo._Line.prototype.getValue=function(n){return ((this.end-this.start)*n)+this.start;};dojo.Animation=function(args){_2d5(this,args);if(d.isArray(this.curve)){this.curve=new d._Line(this.curve[0],this.curve[1]);}};d._Animation=d.Animation;d.extend(dojo.Animation,{duration:350,repeat:0,rate:20,_percent:0,_startRepeatCount:0,_getStep:function(){var _2d7=this._percent,_2d8=this.easing;return _2d8?_2d8(_2d7):_2d7;},_fire:function(evt,args){var a=args||[];if(this[evt]){if(d.config.debugAtAllCosts){this[evt].apply(this,a);}else{try{this[evt].apply(this,a);}catch(e){console.error("exception in animation handler for:",evt);console.error(e);}}}return this;},play:function(_2d9,_2da){var _2db=this;if(_2db._delayTimer){_2db._clearTimer();}if(_2da){_2db._stopTimer();_2db._active=_2db._paused=false;_2db._percent=0;}else{if(_2db._active&&!_2db._paused){return _2db;}}_2db._fire("beforeBegin",[_2db.node]);var de=_2d9||_2db.delay,_2dc=dojo.hitch(_2db,"_play",_2da);if(de>0){_2db._delayTimer=setTimeout(_2dc,de);return _2db;}_2dc();return _2db;},_play:function(_2dd){var _2de=this;if(_2de._delayTimer){_2de._clearTimer();}_2de._startTime=new Date().valueOf();if(_2de._paused){_2de._startTime-=_2de.duration*_2de._percent;}_2de._active=true;_2de._paused=false;var _2df=_2de.curve.getValue(_2de._getStep());if(!_2de._percent){if(!_2de._startRepeatCount){_2de._startRepeatCount=_2de.repeat;}_2de._fire("onBegin",[_2df]);}_2de._fire("onPlay",[_2df]);_2de._cycle();return _2de;},pause:function(){var _2e0=this;if(_2e0._delayTimer){_2e0._clearTimer();}_2e0._stopTimer();if(!_2e0._active){return _2e0;}_2e0._paused=true;_2e0._fire("onPause",[_2e0.curve.getValue(_2e0._getStep())]);return _2e0;},gotoPercent:function(_2e1,_2e2){var _2e3=this;_2e3._stopTimer();_2e3._active=_2e3._paused=true;_2e3._percent=_2e1;if(_2e2){_2e3.play();}return _2e3;},stop:function(_2e4){var _2e5=this;if(_2e5._delayTimer){_2e5._clearTimer();}if(!_2e5._timer){return _2e5;}_2e5._stopTimer();if(_2e4){_2e5._percent=1;}_2e5._fire("onStop",[_2e5.curve.getValue(_2e5._getStep())]);_2e5._active=_2e5._paused=false;return _2e5;},status:function(){if(this._active){return this._paused?"paused":"playing";}return "stopped";},_cycle:function(){var _2e6=this;if(_2e6._active){var curr=new Date().valueOf();var step=(curr-_2e6._startTime)/(_2e6.duration);if(step>=1){step=1;}_2e6._percent=step;if(_2e6.easing){step=_2e6.easing(step);}_2e6._fire("onAnimate",[_2e6.curve.getValue(step)]);if(_2e6._percent<1){_2e6._startTimer();}else{_2e6._active=false;if(_2e6.repeat>0){_2e6.repeat--;_2e6.play(null,true);}else{if(_2e6.repeat==-1){_2e6.play(null,true);}else{if(_2e6._startRepeatCount){_2e6.repeat=_2e6._startRepeatCount;_2e6._startRepeatCount=0;}}}_2e6._percent=0;_2e6._fire("onEnd",[_2e6.node]);!_2e6.repeat&&_2e6._stopTimer();}}return _2e6;},_clearTimer:function(){clearTimeout(this._delayTimer);delete this._delayTimer;}});var ctr=0,_2e7=null,_2e8={run:function(){}};d.extend(d.Animation,{_startTimer:function(){if(!this._timer){this._timer=d.connect(_2e8,"run",this,"_cycle");ctr++;}if(!_2e7){_2e7=setInterval(d.hitch(_2e8,"run"),this.rate);}},_stopTimer:function(){if(this._timer){d.disconnect(this._timer);this._timer=null;ctr--;}if(ctr<=0){clearInterval(_2e7);_2e7=null;ctr=0;}}});var _2e9=d.isIE?function(node){var ns=node.style;if(!ns.width.length&&d.style(node,"width")=="auto"){ns.width="auto";}}:function(){};dojo._fade=function(args){args.node=d.byId(args.node);var _2ea=_2d5({properties:{}},args),_2eb=(_2ea.properties.opacity={});_2eb.start=!("start" in _2ea)?function(){return +d.style(_2ea.node,"opacity")||0;}:_2ea.start;_2eb.end=_2ea.end;var anim=d.animateProperty(_2ea);d.connect(anim,"beforeBegin",d.partial(_2e9,_2ea.node));return anim;};dojo.fadeIn=function(args){return d._fade(_2d5({end:1},args));};dojo.fadeOut=function(args){return d._fade(_2d5({end:0},args));};dojo._defaultEasing=function(n){return 0.5+((Math.sin((n+1.5)*Math.PI))/2);};var _2ec=function(_2ed){this._properties=_2ed;for(var p in _2ed){var prop=_2ed[p];if(prop.start instanceof d.Color){prop.tempColor=new d.Color();}}};_2ec.prototype.getValue=function(r){var ret={};for(var p in this._properties){var prop=this._properties[p],_2ee=prop.start;if(_2ee instanceof d.Color){ret[p]=d.blendColors(_2ee,prop.end,r,prop.tempColor).toCss();}else{if(!d.isArray(_2ee)){ret[p]=((prop.end-_2ee)*r)+_2ee+(p!="opacity"?prop.units||"px":0);}}}return ret;};dojo.animateProperty=function(args){var n=args.node=d.byId(args.node);if(!args.easing){args.easing=d._defaultEasing;}var anim=new d.Animation(args);d.connect(anim,"beforeBegin",anim,function(){var pm={};for(var p in this.properties){if(p=="width"||p=="height"){this.node.display="block";}var prop=this.properties[p];if(d.isFunction(prop)){prop=prop(n);}prop=pm[p]=_2d5({},(d.isObject(prop)?prop:{end:prop}));if(d.isFunction(prop.start)){prop.start=prop.start(n);}if(d.isFunction(prop.end)){prop.end=prop.end(n);}var _2ef=(p.toLowerCase().indexOf("color")>=0);function _2f0(node,p){var v={height:node.offsetHeight,width:node.offsetWidth}[p];if(v!==undefined){return v;}v=d.style(node,p);return (p=="opacity")?+v:(_2ef?v:parseFloat(v));};if(!("end" in prop)){prop.end=_2f0(n,p);}else{if(!("start" in prop)){prop.start=_2f0(n,p);}}if(_2ef){prop.start=new d.Color(prop.start);prop.end=new d.Color(prop.end);}else{prop.start=(p=="opacity")?+prop.start:parseFloat(prop.start);}}this.curve=new _2ec(pm);});d.connect(anim,"onAnimate",d.hitch(d,"style",anim.node));return anim;};dojo.anim=function(node,_2f1,_2f2,_2f3,_2f4,_2f5){return d.animateProperty({node:node,duration:_2f2||d.Animation.prototype.duration,properties:_2f1,easing:_2f3,onEnd:_2f4}).play(_2f5||0);};})();}if(!dojo._hasResource["dojo.i18n"]){dojo._hasResource["dojo.i18n"]=true;dojo.provide("dojo.i18n");dojo.getObject("i18n",true,dojo);dojo.i18n.getLocalization=dojo.i18n.getLocalization||function(_2f6,_2f7,_2f8){_2f8=dojo.i18n.normalizeLocale(_2f8);var _2f9=_2f8.split("-");var _2fa=[_2f6,"nls",_2f7].join(".");var _2fb=dojo._loadedModules[_2fa];if(_2fb){var _2fc;for(var i=_2f9.length;i>0;i--){var loc=_2f9.slice(0,i).join("_");if(_2fb[loc]){_2fc=_2fb[loc];break;}}if(!_2fc){_2fc=_2fb.ROOT;}if(_2fc){var _2fd=function(){};_2fd.prototype=_2fc;return new _2fd();}}throw new Error("Bundle not found: "+_2f7+" in "+_2f6+" , locale="+_2f8);};dojo.i18n.normalizeLocale=function(_2fe){var _2ff=_2fe?_2fe.toLowerCase():dojo.locale;if(_2ff=="root"){_2ff="ROOT";}return _2ff;};dojo.i18n._requireLocalization=function(_300,_301,_302,_303){var _304=dojo.i18n.normalizeLocale(_302);var _305=[_300,"nls",_301].join(".");var _306="";if(_303){var _307=_303.split(",");for(var i=0;i<_307.length;i++){if(_304["indexOf"](_307[i])==0){if(_307[i].length>_306.length){_306=_307[i];}}}if(!_306){_306="ROOT";}}var _308=_303?_306:_304;var _309=dojo._loadedModules[_305];var _30a=null;if(_309){if(dojo.config.localizationComplete&&_309._built){return;}var _30b=_308.replace(/-/g,"_");var _30c=_305+"."+_30b;_30a=dojo._loadedModules[_30c];}if(!_30a){_309=dojo["provide"](_305);var syms=dojo._getModuleSymbols(_300);var _30d=syms.concat("nls").join("/");var _30e;dojo.i18n._searchLocalePath(_308,_303,function(loc){var _30f=loc.replace(/-/g,"_");var _310=_305+"."+_30f;var _311=false;if(!dojo._loadedModules[_310]){dojo["provide"](_310);var _312=[_30d];if(loc!="ROOT"){_312.push(loc);}_312.push(_301);var _313=_312.join("/")+".js";_311=dojo._loadPath(_313,null,function(hash){hash=hash.root||hash;var _314=function(){};_314.prototype=_30e;_309[_30f]=new _314();for(var j in hash){_309[_30f][j]=hash[j];}});}else{_311=true;}if(_311&&_309[_30f]){_30e=_309[_30f];}else{_309[_30f]=_30e;}if(_303){return true;}});}if(_303&&_304!=_306){_309[_304.replace(/-/g,"_")]=_309[_306.replace(/-/g,"_")];}};(function(){var _315=dojo.config.extraLocale;if(_315){if(!_315 instanceof Array){_315=[_315];}var req=dojo.i18n._requireLocalization;dojo.i18n._requireLocalization=function(m,b,_316,_317){req(m,b,_316,_317);if(_316){return;}for(var i=0;i<_315.length;i++){req(m,b,_315[i],_317);}};}})();dojo.i18n._searchLocalePath=function(_318,down,_319){_318=dojo.i18n.normalizeLocale(_318);var _31a=_318.split("-");var _31b=[];for(var i=_31a.length;i>0;i--){_31b.push(_31a.slice(0,i).join("-"));}_31b.push(false);if(down){_31b.reverse();}for(var j=_31b.length-1;j>=0;j--){var loc=_31b[j]||"ROOT";var stop=_319(loc);if(stop){break;}}};dojo.i18n._preloadLocalizations=function(_31c,_31d){function _31e(_31f){_31f=dojo.i18n.normalizeLocale(_31f);dojo.i18n._searchLocalePath(_31f,true,function(loc){for(var i=0;i<_31d.length;i++){if(_31d[i]==loc){dojo["require"](_31c+"_"+loc);return true;}}return false;});};_31e();var _320=dojo.config.extraLocale||[];for(var i=0;i<_320.length;i++){_31e(_320[i]);}};}if(!dojo._hasResource["dojo._base.browser"]){dojo._hasResource["dojo._base.browser"]=true;dojo.provide("dojo._base.browser");dojo.forEach(dojo.config.require,function(i){dojo["require"](i);});}if(!dojo._hasResource["dojo._base"]){dojo._hasResource["dojo._base"]=true;dojo.provide("dojo._base");}if(dojo.isBrowser&&(document.readyState==="complete"||dojo.config.afterOnLoad)){window.setTimeout(dojo._loadInit,100);}})();
|
data/vendor/jquery.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* jQuery JavaScript Library v1.6.1
|
|
3
|
+
* http://jquery.com/
|
|
4
|
+
*
|
|
5
|
+
* Copyright 2011, John Resig
|
|
6
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
7
|
+
* http://jquery.org/license
|
|
8
|
+
*
|
|
9
|
+
* Includes Sizzle.js
|
|
10
|
+
* http://sizzlejs.com/
|
|
11
|
+
* Copyright 2011, The Dojo Foundation
|
|
12
|
+
* Released under the MIT, BSD, and GPL Licenses.
|
|
13
|
+
*
|
|
14
|
+
* Date: Thu May 12 15:04:36 2011 -0400
|
|
15
|
+
*/
|
|
16
|
+
(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!cj[a]){var b=f("<"+a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),c.body.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write("<!doctype><html><body></body></html>");b=cl.createElement(a),cl.body.appendChild(b),d=f.css(b,"display"),c.body.removeChild(ck)}cj[a]=d}return cj[a]}function cu(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function ct(){cq=b}function cs(){setTimeout(ct,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function ca(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function b_(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bF.test(a)?d(a,e):b_(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)b_(a+"["+e+"]",b[e],c,d);else d(a,b)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bU,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bQ),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bD(a,b,c){var d=b==="width"?bx:by,e=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return e;f.each(d,function(){c||(e-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?e+=parseFloat(f.css(a,"margin"+this))||0:e-=parseFloat(f.css(a,"border"+this+"Width"))||0});return e}function bn(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bm(a){f.nodeName(a,"input")?bl(a):a.getElementsByTagName&&f.grep(a.getElementsByTagName("input"),bl)}function bl(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bk(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bj(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bi(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bh(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function X(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(S.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function W(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function O(a,b){return(a&&a!=="*"?a+".":"")+b.replace(A,"`").replace(B,"&")}function N(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(y,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function L(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function F(){return!0}function E(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function H(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(H,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=d.userAgent,x,y,z,A=Object.prototype.toString,B=Object.prototype.hasOwnProperty,C=Array.prototype.push,D=Array.prototype.slice,E=String.prototype.trim,F=Array.prototype.indexOf,G={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.1",length:0,size:function(){return this.length},toArray:function(){return D.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?C.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(D.apply(this,arguments),"slice",D.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:C,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;y.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!y){y=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",z,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",z),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&H()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):G[A.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!B.call(a,"constructor")&&!B.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||B.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:E?function(a){return a==null?"":E.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?C.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(F)return F.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=D.call(arguments,2),g=function(){return a.apply(c,f.concat(D.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){G["[object "+b+"]"]=b.toLowerCase()}),x=e.uaMatch(w),x.browser&&(e.browser[x.browser]=!0,e.browser.version=x.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?z=function(){c.removeEventListener("DOMContentLoaded",z,!1),e.ready()}:c.attachEvent&&(z=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",z),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g](h)}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;a.setAttribute("className","t"),a.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};f=c.createElement("select"),g=f.appendChild(c.createElement("option")),h=a.getElementsByTagName("input")[0],j={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},h.checked=!0,j.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,j.optDisabled=!g.disabled;try{delete a.test}catch(s){j.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function b(){j.noCloneEvent=!1,a.detachEvent("onclick",b)}),a.cloneNode(!0).fireEvent("onclick")),h=c.createElement("input"),h.value="t",h.setAttribute("type","radio"),j.radioValue=h.value==="t",h.setAttribute("checked","checked"),a.appendChild(h),k=c.createDocumentFragment(),k.appendChild(a.firstChild),j.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",l=c.createElement("body"),m={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"};for(q in m)l.style[q]=m[q];l.appendChild(a),b.insertBefore(l,b.firstChild),j.appendChecked=h.checked,j.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,j.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",j.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",n=a.getElementsByTagName("td"),r=n[0].offsetHeight===0,n[0].style.display="",n[1].style.display="none",j.reliableHiddenOffsets=r&&n[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(i=c.createElement("div"),i.style.width="0",i.style.marginRight="0",a.appendChild(i),j.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(i,null)||{marginRight:0}).marginRight,10)||0)===0),l.innerHTML="",b.removeChild(l);if(a.attachEvent)for(q in{submit:1,change:1,focusin:1})p="on"+q,r=p in a,r||(a.setAttribute(p,"return;"),r=typeof a[p]=="function"),j[q+"Bubbles"]=r;return j}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[f.camelCase(c)]:i}},removeData:function(b,c,d){if(!!f.acceptData(b)){var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u=/\:/,v,w;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.addClass(a.call(this,b,c.attr("class")||""))});if(a&&typeof a=="string"){var b=(a||"").split(o);for(var c=0,d=this.length;c<d;c++){var e=this[c];if(e.nodeType===1)if(!e.className)e.className=a;else{var g=" "+e.className+" ",h=e.className;for(var i=0,j=b.length;i<j;i++)g.indexOf(" "+b[i]+" ")<0&&(h+=" "+b[i]);e.className=f.trim(h)}}}return this},removeClass:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a=="string"||a===b){var c=(a||"").split(o);for(var d=0,e=this.length;d<e;d++){var g=this[d];if(g.nodeType===1&&g.className)if(a){var h=(" "+g.className+" ").replace(n," ");for(var i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){var d=f(this);d.toggleClass(a.call(this,c,d.attr("class"),b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;return(e.value||"").replace(p,"")}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);c=j&&f.attrFix[c]||c,i=f.attrHooks[c],i||(!t.test(c)||typeof d!="boolean"&&d!==b&&d.toLowerCase()!==c.toLowerCase()?v&&(f.nodeName(a,"form")||u.test(c))&&(i=v):i=w);if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j)return i.get(a,c);h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);c=i&&f.propFix[c]||c,h=f.propHooks[c];return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return a[f.propFix[c]||c]?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=b),a.setAttribute(c,c.toLowerCase()));return c}},f.attrHooks.value={get:function(a,b){if(v&&f.nodeName(a,"button"))return v.get(a,b);return a.value},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d){d.nodeValue=b;return b}}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=Object.prototype.hasOwnProperty,y=/\.(.*)$/,z=/^(?:textarea|input|select)$/i,A=/\./g,B=/ /g,C=/[^\w\s.|`]/g,D=function(a){return a.replace(C,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=E;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=E);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),D).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem
|
|
17
|
+
)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,O(a.origType,a.selector),f.extend({},a,{handler:N,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,O(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?F:E):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=F;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=F;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=F,this.stopPropagation()},isDefaultPrevented:E,isPropagationStopped:E,isImmediatePropagationStopped:E};var G=function(a){var b=a.relatedTarget;a.type=a.data;try{if(b&&b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&f.event.handle.apply(this,arguments)}catch(d){}},H=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?H:G,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?H:G)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&f(b).closest("form").length&&L("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&L("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var I,J=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},K=function(c){var d=c.target,e,g;if(!!z.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=J(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:K,beforedeactivate:K,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&K.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&K.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",J(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in I)f.event.add(this,c+".specialChange",I[c]);return z.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return z.test(this.nodeName)}},I=f.event.special.change.filters,I.focus=I.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var M={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||E,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=y.exec(h),k="",j&&(k=j[0],h=h.replace(y,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,M[h]?(a.push(M[h]+k),h=h+k):h=(M[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+O(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+O(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var P=/Until$/,Q=/^(?:parents|prevUntil|prevAll)/,R=/,/,S=/^.[^:#\[\.,]*$/,T=Array.prototype.slice,U=f.expr.match.POS,V={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(X(this,a,!1),"not",a)},filter:function(a){return this.pushStack(X(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=U.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=U.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a=="string")return f.inArray(this[0],a?f(a):this.parent().children());return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(W(c[0])||W(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=T.call(arguments);P.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!V[a]?f.unique(e):e,(this.length>1||R.test(d))&&Q.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y=/ jQuery\d+="(?:\d+|null)"/g,Z=/^\s+/,$=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,_=/<([\w:]+)/,ba=/<tbody/i,bb=/<|&#?\w+;/,bc=/<(?:script|object|embed|option|style)/i,bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Y,""):null;if(typeof a=="string"&&!bc.test(a)&&(f.support.leadingWhitespace||!Z.test(a))&&!bg[(_.exec(a)||["",""])[1].toLowerCase()]){a=a.replace($,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bh(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bn)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!bc.test(a[0])&&(f.support.checkClone||!bd.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bj(a,d),e=bk(a),g=bk(d);for(h=0;e[h];++h)bj(e[h],g[h])}if(b){bi(a,d);if(c){e=bk(a),g=bk(d);for(h=0;e[h];++h)bi(e[h],g[h])}}return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||
|
|
18
|
+
b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bb.test(k))k=b.createTextNode(k);else{k=k.replace($,"<$1></$2>");var l=(_.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=ba.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Z.test(k)&&o.insertBefore(b.createTextNode(Z.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bm(k[i]);else bm(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bo=/alpha\([^)]*\)/i,bp=/opacity=([^)]*)/,bq=/-([a-z])/ig,br=/([A-Z]|^ms)/g,bs=/^-?\d+(?:px)?$/i,bt=/^-?\d/,bu=/^[+\-]=/,bv=/[^+\-\.\de]+/g,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB,bC=function(a,b){return b.toUpperCase()};f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0,widows:!0,orphans:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d;if(h==="number"&&isNaN(d)||d==null)return;h==="string"&&bu.test(d)&&(d=+d.replace(bv,"")+parseFloat(f.css(a,c))),h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bq,bC)}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){a.offsetWidth!==0?e=bD(a,b,d):f.swap(a,bw,function(){e=bD(a,b,d)});if(e<=0){e=bz(a,b,b),e==="0px"&&bB&&(e=bB(a,b,b));if(e!=null)return e===""||e==="auto"?"0px":e}if(e<0||e==null){e=a.style[b];return e===""||e==="auto"?"0px":e}return typeof e=="string"?e:e+"px"}},set:function(a,b){if(!bs.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bp.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bo.test(g)?g.replace(bo,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,c){var d,e,g;c=c.replace(br,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bs.test(d)&&bt.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bE=/%20/g,bF=/\[\]$/,bG=/\r?\n/g,bH=/#.*$/,bI=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bJ=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bK=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bL=/^(?:GET|HEAD)$/,bM=/^\/\//,bN=/\?/,bO=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bP=/^(?:select|textarea)/i,bQ=/\s+/,bR=/([?&])_=[^&]*/,bS=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bT=f.fn.load,bU={},bV={},bW,bX;try{bW=e.href}catch(bY){bW=c.createElement("a"),bW.href="",bW=bW.href}bX=bS.exec(bW.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bT)return bT.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bO,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bP.test(this.nodeName)||bJ.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bG,"\r\n")}}):{name:b.name,value:c.replace(bG,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bW,isLocal:bK.test(bX[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bZ(bU),ajaxTransport:bZ(bV),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?ca(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=cb(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bI.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bH,"").replace(bM,bX[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bQ),d.crossDomain==null&&(r=bS.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bX[1]&&r[2]==bX[2]&&(r[3]||(r[1]==="http:"?80:443))==(bX[3]||(bX[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bU,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bL.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bN.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bR,"$1_="+x);d.url=y+(y===d.url?(bN.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bV,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bE,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq,cr=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cv(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cm.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=cn.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this),f.isFunction(d.old)&&d.old.call(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function h(a){return d.step(a)}var d=this,e=f.fx,g;this.startTime=cq||cs(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,h.elem=this.elem,h()&&f.timers.push(h)&&!co&&(cr?(co=1,g=function(){co&&(cr(g),e.tick())},cr(g)):co=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cq||cs(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(co),co=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){return this[0]?parseFloat(f.css(this[0],d,"padding")):null},f.fn["outer"+c]=function(a){return this[0]?parseFloat(f.css(this[0],d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);
|
data/vendor/midori.js
ADDED
|
@@ -0,0 +1,1502 @@
|
|
|
1
|
+
/*
|
|
2
|
+
|
|
3
|
+
Midori JS Framework version 2010.06 Copyright (c) 2008-2010 Aycan Gulez
|
|
4
|
+
http://www.midorijs.com
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person
|
|
7
|
+
obtaining a copy of this software and associated documentation
|
|
8
|
+
files (the "Software"), to deal in the Software without
|
|
9
|
+
restriction, including without limitation the rights to use,
|
|
10
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the
|
|
12
|
+
Software is furnished to do so, subject to the following
|
|
13
|
+
conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be
|
|
16
|
+
included in all copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
19
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
20
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
21
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
22
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
23
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
24
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
25
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
26
|
+
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
var midori =
|
|
31
|
+
{
|
|
32
|
+
browserType: window.opera ? 'Opera' :
|
|
33
|
+
((navigator.userAgent.indexOf('WebKit') != -1) ? 'Safari' :
|
|
34
|
+
((navigator.userAgent.indexOf('MSIE') != -1) ? 'MSIE' : 'Gecko')),
|
|
35
|
+
|
|
36
|
+
browserOS: (navigator.userAgent.indexOf('Windows') != -1) ? 'Win' :
|
|
37
|
+
((navigator.userAgent.indexOf('Macintosh') != -1) ? 'Mac' : 'Other'),
|
|
38
|
+
|
|
39
|
+
domReady: [],
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
each: function (parentObj, callBack, depthFirst)
|
|
43
|
+
{
|
|
44
|
+
var c = parentObj.firstChild;
|
|
45
|
+
while (c)
|
|
46
|
+
{
|
|
47
|
+
if (!depthFirst) callBack(c);
|
|
48
|
+
if (c.firstChild) this.each(c, callBack, depthFirst);
|
|
49
|
+
if (depthFirst) callBack(c);
|
|
50
|
+
c = c.nextSibling;
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
sibling: function (obj, direction)
|
|
56
|
+
{
|
|
57
|
+
var sibling = obj;
|
|
58
|
+
if (direction == 'next')
|
|
59
|
+
do sibling = sibling.nextSibling; while (sibling && sibling.nodeType == 3)
|
|
60
|
+
else if (direction == 'prev')
|
|
61
|
+
do sibling = sibling.previousSibling; while (sibling && sibling.nodeType == 3)
|
|
62
|
+
return (sibling == obj) ? false : sibling;
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
parseSelectors: function (selectorText)
|
|
67
|
+
{
|
|
68
|
+
var c = this.trim(selectorText).split('');
|
|
69
|
+
var sI = -1;
|
|
70
|
+
var bracketContent = '';
|
|
71
|
+
var elements = [], attrs = [], separators = [];
|
|
72
|
+
var inSelector = false, inBrackets = false, inQuotes = false;
|
|
73
|
+
|
|
74
|
+
for (var i = 0, len = c.length; i < len; i++)
|
|
75
|
+
if (inSelector)
|
|
76
|
+
{
|
|
77
|
+
if (inBrackets)
|
|
78
|
+
switch (c[i])
|
|
79
|
+
{
|
|
80
|
+
case '"' : inQuotes = !inQuotes; break;
|
|
81
|
+
case ']' : if (!inQuotes) { attrs[sI].push(bracketContent); inBrackets = false; bracketContent = ''; } break;
|
|
82
|
+
case '\\' : bracketContent += c[++i]; break;
|
|
83
|
+
default : bracketContent += c[i];
|
|
84
|
+
}
|
|
85
|
+
else
|
|
86
|
+
switch (c[i])
|
|
87
|
+
{
|
|
88
|
+
case '[' : inBrackets = true; break;
|
|
89
|
+
case ' ' :
|
|
90
|
+
case '>' :
|
|
91
|
+
case ',' : inSelector = false; separators[sI] = c[i]; break;
|
|
92
|
+
case '\\' : elements[sI] += c[++i]; break;
|
|
93
|
+
default : elements[sI] += c[i];
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
else
|
|
97
|
+
switch (c[i])
|
|
98
|
+
{
|
|
99
|
+
case ' ' :
|
|
100
|
+
case '>' :
|
|
101
|
+
case ',' : separators[sI] += c[i]; break;
|
|
102
|
+
default : inSelector = true; elements[++sI] = c[i]; attrs[sI] = [];
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return { elements: elements, attrs: attrs, separators: separators };
|
|
106
|
+
},
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
processAttrs: function (match, a, exprs)
|
|
110
|
+
{
|
|
111
|
+
for (var i = 0, numA = a.length, attr; i < numA; i++)
|
|
112
|
+
{
|
|
113
|
+
attr = (a[i] == 'class') ?
|
|
114
|
+
(match.className ? match.className : null) :
|
|
115
|
+
match.getAttribute(a[i]);
|
|
116
|
+
|
|
117
|
+
switch (typeof exprs[i])
|
|
118
|
+
{
|
|
119
|
+
case 'undefined' : if (attr == null) return false; break;
|
|
120
|
+
case 'string' : if (attr == exprs[i]) return false; break;
|
|
121
|
+
default : if (!exprs[i].test(attr)) return false;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
return true;
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
processPseudo: function (match, pSelector, pA, pB)
|
|
129
|
+
{
|
|
130
|
+
var pCache, nodeKey, parentChildren = [], pI = 0;
|
|
131
|
+
|
|
132
|
+
if (!(nodeKey = match.parentNode.getAttribute('midorinodekey')))
|
|
133
|
+
match.parentNode.setAttribute('midorinodekey', nodeKey = Math.random().toString().substr(2));
|
|
134
|
+
|
|
135
|
+
if (pCache = this.pCache[nodeKey])
|
|
136
|
+
parentChildren = pCache['parentChildren'], pI = pCache['pI'];
|
|
137
|
+
else
|
|
138
|
+
{
|
|
139
|
+
var c = match.parentNode.firstChild;
|
|
140
|
+
while (c)
|
|
141
|
+
{
|
|
142
|
+
if (c.nodeType == 1) parentChildren.push(c);
|
|
143
|
+
c = c.nextSibling;
|
|
144
|
+
}
|
|
145
|
+
this.pCache[nodeKey] = { parentChildren: parentChildren, pI: 0 };
|
|
146
|
+
}
|
|
147
|
+
var parentNumChildren = parentChildren.length;
|
|
148
|
+
|
|
149
|
+
switch (pSelector)
|
|
150
|
+
{
|
|
151
|
+
case 'first-child' : if (match == parentChildren[0]) return true; break;
|
|
152
|
+
case 'last-child' : if (match == parentChildren[parentNumChildren - 1]) return true; break;
|
|
153
|
+
case 'only-child' : if (parentNumChildren == 1) return true; break;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
if (pSelector == 'nth-child')
|
|
157
|
+
{
|
|
158
|
+
var v = pA * pI + pB;
|
|
159
|
+
var oldV = -50;
|
|
160
|
+
while (v > -50 && v <= parentNumChildren)
|
|
161
|
+
{
|
|
162
|
+
if (v >= 0 && parentChildren[v - 1] == match)
|
|
163
|
+
{
|
|
164
|
+
this.pCache[nodeKey]['pI'] = (pA >= 0) ? pI + 1 : 0;
|
|
165
|
+
return true;
|
|
166
|
+
}
|
|
167
|
+
pI++, v += pA;
|
|
168
|
+
if (v == oldV) break;
|
|
169
|
+
oldV = v;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
getMatches: function (target, s, a, oneLevelOnly)
|
|
176
|
+
{
|
|
177
|
+
this.pCache = {};
|
|
178
|
+
var matches = [], exprs = [];
|
|
179
|
+
var chunks, objs, numObjs, pseudo, pSelector, pOption, pA, pB;
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
this.postProcess = function (me)
|
|
183
|
+
{
|
|
184
|
+
if (!numA && !pseudo)
|
|
185
|
+
{
|
|
186
|
+
matches.push(me);
|
|
187
|
+
return;
|
|
188
|
+
}
|
|
189
|
+
var match = true;
|
|
190
|
+
if (numA && !this.processAttrs(me, a, exprs)) match = false;
|
|
191
|
+
if (pseudo && !this.processPseudo(me, pSelector, pA, pB)) match = false;
|
|
192
|
+
if (match) matches.push(me);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
for (var i = 0, numA = a.length; i < numA; i++)
|
|
197
|
+
{
|
|
198
|
+
chunks = a[i].match(/([a-z0-9_-]+)\s*([=^$*|~!]{0,2})\s*"?([^"]*)"?$/i);
|
|
199
|
+
a[i] = chunks[1];
|
|
200
|
+
switch (chunks[2])
|
|
201
|
+
{
|
|
202
|
+
case '=' : exprs[i] = new RegExp('^' + chunks[3] + '$', 'i'); break;
|
|
203
|
+
case '^=' : exprs[i] = new RegExp('^' + chunks[3], 'i'); break;
|
|
204
|
+
case '$=' : exprs[i] = new RegExp(chunks[3] + '$', 'i'); break;
|
|
205
|
+
case '*=' : exprs[i] = new RegExp(chunks[3], 'i'); break;
|
|
206
|
+
case '~=' : exprs[i] = new RegExp('^' + chunks[3] + '$|^' + chunks[3] + '\\s|\\s' + chunks[3] + '\\s|\\s' + chunks[3] + '$', 'i'); break;
|
|
207
|
+
case '!=' : exprs[i] = chunks[3];
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
if (s.indexOf(':') != -1)
|
|
212
|
+
{
|
|
213
|
+
chunks = s.split(':');
|
|
214
|
+
s = chunks[0];
|
|
215
|
+
pseudo = chunks[1].match(/([a-z-]+)\(?([a-z0-9+-]*)\)?/i);
|
|
216
|
+
pSelector = pseudo[1].toLowerCase();
|
|
217
|
+
|
|
218
|
+
switch (pOption = pseudo[2].toLowerCase())
|
|
219
|
+
{
|
|
220
|
+
case 'odd' : pOption = '2n+1'; break;
|
|
221
|
+
case 'even' : pOption = '2n';
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
chunks = pOption.match(/([0-9+-]*)(n?)([0-9+-]*)/i);
|
|
225
|
+
pA = parseInt(chunks[2] ? (chunks[1] ? ((chunks[1] == '-') ? -1 : chunks[1]) : 1) : 0);
|
|
226
|
+
pB = parseInt(chunks[3] ? chunks[3] : ((chunks[1] && !chunks[2]) ? chunks[1] : 0));
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
if (s.indexOf('#') != -1)
|
|
230
|
+
this.postProcess(document.getElementById(s.substr(s.indexOf('#') + 1)));
|
|
231
|
+
|
|
232
|
+
else if (s.indexOf('.') != -1)
|
|
233
|
+
{
|
|
234
|
+
chunks = s.split('.');
|
|
235
|
+
var classMatch = s.substr(chunks[0].length + 1).replace('.', ' ');
|
|
236
|
+
var className = new RegExp('^' + classMatch + '$|^' + classMatch + '\\s|\\s' + classMatch + '\\s|\\s' + classMatch + '$', 'i');
|
|
237
|
+
objs = target.getElementsByTagName(chunks[0] ? chunks[0] : '*');
|
|
238
|
+
for (i = 0, numObjs = objs.length; i < numObjs; i++)
|
|
239
|
+
if ((!oneLevelOnly && className.test(objs[i].className)) ||
|
|
240
|
+
(oneLevelOnly && className.test(objs[i].className) && objs[i].parentNode == target))
|
|
241
|
+
this.postProcess(objs[i]);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
else if (s == '*' || /^[A-Za-z0-9]+$/.test(s))
|
|
245
|
+
for (i = 0, objs = target.getElementsByTagName(s), numObjs = objs.length; i < numObjs; i++)
|
|
246
|
+
if (!oneLevelOnly || (oneLevelOnly && objs[i].parentNode == target))
|
|
247
|
+
this.postProcess(objs[i]);
|
|
248
|
+
|
|
249
|
+
return matches;
|
|
250
|
+
},
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
get: function (selectorText, startAt)
|
|
254
|
+
{
|
|
255
|
+
var selectors = this.parseSelectors(selectorText);
|
|
256
|
+
var numS = selectors['elements'].length;
|
|
257
|
+
|
|
258
|
+
if (!startAt)
|
|
259
|
+
startAt = document;
|
|
260
|
+
|
|
261
|
+
if (numS == 1)
|
|
262
|
+
{
|
|
263
|
+
var idMatch = selectors['elements'][0].match(/^[a-z0-9*]*#([^,:]+)$/i);
|
|
264
|
+
if (idMatch && selectors['attrs'][0] == '' && selectors['separators'] == '')
|
|
265
|
+
return document.getElementById(idMatch[1]);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
var objs = this.getMatches(startAt, selectors['elements'][0], selectors['attrs'][0]);
|
|
269
|
+
var allObjs = [], newObjs, separator;
|
|
270
|
+
for (var i = 1; i < numS; i++)
|
|
271
|
+
{
|
|
272
|
+
newObjs = [];
|
|
273
|
+
separator = this.trim(selectors['separators'][i - 1]);
|
|
274
|
+
if (separator == ',')
|
|
275
|
+
{
|
|
276
|
+
allObjs = this.concatUnique(allObjs, objs);
|
|
277
|
+
objs = this.getMatches(startAt, selectors['elements'][i], selectors['attrs'][i]);
|
|
278
|
+
}
|
|
279
|
+
else
|
|
280
|
+
{
|
|
281
|
+
var oneLevelOnly = (separator == '>') ? true : false;
|
|
282
|
+
for (var j = 0, numObjs = objs.length; j < numObjs; j++)
|
|
283
|
+
if (!this.inArray(objs[j], newObjs))
|
|
284
|
+
newObjs = this.concatUnique(newObjs, this.getMatches(objs[j], selectors['elements'][i], selectors['attrs'][i]), oneLevelOnly);
|
|
285
|
+
objs = newObjs;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
allObjs = this.concatUnique(allObjs, objs);
|
|
289
|
+
allObjs.apply = function (p) {
|
|
290
|
+
for (var i = 0, numObjs = this.length; i < numObjs; i++) (typeof p == 'function') ? p(this[i]) : eval('this[i].' + p) };
|
|
291
|
+
|
|
292
|
+
return allObjs;
|
|
293
|
+
},
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
getCssRule: function (stylesheet, rule, property)
|
|
297
|
+
{
|
|
298
|
+
var values = [];
|
|
299
|
+
var rules = document.styleSheets[stylesheet];
|
|
300
|
+
rules = rules.rules ? rules.rules : rules.cssRules;
|
|
301
|
+
rule = rule.toLowerCase();
|
|
302
|
+
property = (this.browserType == 'Safari') ? property.replace(/([A-Z])/, '-$1').toLowerCase() : property.toLowerCase();
|
|
303
|
+
for (var i = 0, numRules = rules.length; i < numRules; i++)
|
|
304
|
+
if (rule == '*' || rules[i].selectorText.toLowerCase() == rule)
|
|
305
|
+
for (var j in rules[i].style)
|
|
306
|
+
if (this.browserType == 'Safari')
|
|
307
|
+
{
|
|
308
|
+
if (rules[i].style[j].toLowerCase && rules[i].style[j].toLowerCase() == property)
|
|
309
|
+
{ if (rule == '*') values[rules[i].selectorText] = value; else return rules[i].style[rules[i].style[j]]; }
|
|
310
|
+
}
|
|
311
|
+
else if (j.toLowerCase() == property)
|
|
312
|
+
{ if (rule == '*') values[rules[i].selectorText] = rules[i].style[j]; else return rules[i].style[j]; }
|
|
313
|
+
return values;
|
|
314
|
+
},
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
setStyles: function (obj, styleList)
|
|
318
|
+
{
|
|
319
|
+
for (var i in styleList)
|
|
320
|
+
(i == 'float') ? this.setFloat(obj, styleList[i]) : obj.style[i] = styleList[i];
|
|
321
|
+
},
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
setAttributes: function (obj, attrList)
|
|
325
|
+
{
|
|
326
|
+
for (var i in attrList)
|
|
327
|
+
(i == 'className') ? obj.className = attrList[i] : obj.setAttribute(i, attrList[i]);
|
|
328
|
+
},
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
removeNode: function(obj)
|
|
332
|
+
{
|
|
333
|
+
return obj.parentNode.removeChild(obj);
|
|
334
|
+
},
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
addEventListener: function (target, eventType, listenerFunc)
|
|
338
|
+
{
|
|
339
|
+
this.safariReady = function ()
|
|
340
|
+
{
|
|
341
|
+
this.readyTimer = setInterval(function() { if (/loaded|complete/.test(document.readyState)) midori.runReadyEvents() }, 10);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
this.msieReady = function()
|
|
345
|
+
{
|
|
346
|
+
document.write('<script id="midori_onload" src="javascript: {}" defer="true"></script>');
|
|
347
|
+
this.get('#midori_onload').onreadystatechange = function() { if (this.readyState == 'complete') midori.runReadyEvents() };
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
if (target.addEventListener)
|
|
352
|
+
{
|
|
353
|
+
if (eventType == 'ready')
|
|
354
|
+
switch (this.browserType)
|
|
355
|
+
{
|
|
356
|
+
case 'Safari' : this.domReady.push(listenerFunc); if (!this.readyTimer) this.safariReady(); return;
|
|
357
|
+
case 'Opera' :
|
|
358
|
+
case 'Gecko' : eventType = 'DOMContentLoaded'; break;
|
|
359
|
+
default : eventType = 'load';
|
|
360
|
+
}
|
|
361
|
+
target.addEventListener(eventType, listenerFunc, false);
|
|
362
|
+
return;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
if (eventType == 'ready') // MSIE
|
|
366
|
+
{
|
|
367
|
+
if (!this.domReady.length) this.msieReady();
|
|
368
|
+
this.domReady.push(listenerFunc);
|
|
369
|
+
return;
|
|
370
|
+
}
|
|
371
|
+
target.attachEvent('on' + eventType, listenerFunc);
|
|
372
|
+
},
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
runReadyEvents: function ()
|
|
376
|
+
{
|
|
377
|
+
if (this.readyTimer) clearInterval(this.readyTimer);
|
|
378
|
+
for (var i = 0, numE = this.domReady.length; i < numE; i++) this.domReady[i]();
|
|
379
|
+
},
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
getEventTarget: function (event)
|
|
383
|
+
{
|
|
384
|
+
var target = event.target ? event.target : event.srcElement;
|
|
385
|
+
if (target.nodeType == 3) target = target.parentNode;
|
|
386
|
+
return target;
|
|
387
|
+
},
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
getMousePos: function (event)
|
|
391
|
+
{
|
|
392
|
+
if (event.targetTouches && event.targetTouches.length)
|
|
393
|
+
return { x: event.targetTouches[0].pageX, y: event.targetTouches[0].pageY };
|
|
394
|
+
else if (event.pageX || event.pageY)
|
|
395
|
+
return { x: event.pageX, y: event.pageY };
|
|
396
|
+
else
|
|
397
|
+
return { x: event.clientX + document.documentElement.scrollLeft - document.body.clientLeft,
|
|
398
|
+
y: event.clientY + document.documentElement.scrollTop - document.body.clientTop };
|
|
399
|
+
},
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
preventBubble: function (event)
|
|
403
|
+
{
|
|
404
|
+
event.stopPropagation ? event.stopPropagation() : window.event.cancelBubble = true;
|
|
405
|
+
},
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
preventDefault: function (event)
|
|
409
|
+
{
|
|
410
|
+
event.preventDefault ? event.preventDefault() : window.event.returnValue = false;
|
|
411
|
+
},
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
getFloat: function (o)
|
|
415
|
+
{
|
|
416
|
+
return ((this.browserType == 'MSIE') ? o.style.styleFloat : o.style.cssFloat);
|
|
417
|
+
},
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
setFloat: function (o, v)
|
|
421
|
+
{
|
|
422
|
+
(this.browserType == 'MSIE') ? o.style.styleFloat = v : o.style.cssFloat = v;
|
|
423
|
+
},
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
getSelection: function (target)
|
|
427
|
+
{
|
|
428
|
+
if (this.browserType != 'MSIE') return target.getSelection();
|
|
429
|
+
|
|
430
|
+
if (target == window) target = document;
|
|
431
|
+
var cursorPos = target.selection.createRange();
|
|
432
|
+
if (target.selection.type != 'Control')
|
|
433
|
+
return cursorPos;
|
|
434
|
+
},
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
getSelectionText: function (cursorPos)
|
|
438
|
+
{
|
|
439
|
+
return (this.browserType == 'MSIE') ? cursorPos.htmlText : cursorPos.toString();
|
|
440
|
+
},
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
getCookie: function (cookieName)
|
|
444
|
+
{
|
|
445
|
+
var cookies = document.cookie.split('; ');
|
|
446
|
+
for (var i = 0, numCookies = cookies.length; i < numCookies; i++)
|
|
447
|
+
{
|
|
448
|
+
var parts = cookies[i].split('=');
|
|
449
|
+
if (parts[0] == cookieName)
|
|
450
|
+
return unescape(parts[1].replace(/\+/g, ' '));
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
setCookie: function (name, value, expires, path, domain)
|
|
456
|
+
{
|
|
457
|
+
var today = new Date();
|
|
458
|
+
document.cookie = name + '=' + escape(value) + '; expires=' + today.toUTCString(today.setSeconds(expires)) +
|
|
459
|
+
(path ? '; path=' + path : '') + (domain ? '; domain=' + domain : '');
|
|
460
|
+
},
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
convertToFields: function (parentNode, prefix, a)
|
|
464
|
+
{
|
|
465
|
+
for (var k in a)
|
|
466
|
+
if (typeof a[k] == 'object')
|
|
467
|
+
this.convertToFields(parentNode, prefix + '[' + k + ']', a[k]);
|
|
468
|
+
else
|
|
469
|
+
{
|
|
470
|
+
var el = document.createElement('input');
|
|
471
|
+
this.setAttributes(el, { type: 'hidden', name: prefix + '[' + k + ']', value: a[k] } );
|
|
472
|
+
parentNode.appendChild(el);
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
replace: function (st, params)
|
|
478
|
+
{
|
|
479
|
+
if (!params) return st;
|
|
480
|
+
var matches = st.match(/:[A-Za-z0-9_]+/g).sort().reverse();
|
|
481
|
+
for (var i = 0, numMatches = matches.length; i < numMatches; i++)
|
|
482
|
+
st = st.replace(matches[i], params[matches[i].substr(1)]);
|
|
483
|
+
|
|
484
|
+
return st;
|
|
485
|
+
},
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
trim: function (st)
|
|
489
|
+
{
|
|
490
|
+
return st.replace(/^\s+|\s+$/g, '');
|
|
491
|
+
},
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
uniqid: function (range)
|
|
495
|
+
{
|
|
496
|
+
return Math.floor(Math.random() * (range ? range : 100000));
|
|
497
|
+
},
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
concatUnique: function (a1, a2)
|
|
501
|
+
{
|
|
502
|
+
var uniqA2 = [];
|
|
503
|
+
for (var i = 0, numA2 = a2.length; i < numA2; i++)
|
|
504
|
+
if (!this.inArray(a2[i], a1))
|
|
505
|
+
uniqA2.push(a2[i]);
|
|
506
|
+
|
|
507
|
+
return a1.concat(uniqA2);
|
|
508
|
+
},
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
implode: function (glue, a)
|
|
512
|
+
{
|
|
513
|
+
if (typeof a != 'object')
|
|
514
|
+
return a;
|
|
515
|
+
|
|
516
|
+
var o = '';
|
|
517
|
+
if (a.length && !a.propertyIsEnumerable('length'))
|
|
518
|
+
for (var i = 0, numA = a.length; i < numA; i++)
|
|
519
|
+
o += glue + a[i];
|
|
520
|
+
else
|
|
521
|
+
for (var k in a)
|
|
522
|
+
o += glue + a[k];
|
|
523
|
+
|
|
524
|
+
return o.substr(glue.length);
|
|
525
|
+
},
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
inArray: function (v, a)
|
|
529
|
+
{
|
|
530
|
+
for (var i = 0, numA = a.length; i < numA; i++)
|
|
531
|
+
if ((v != null && a[i].constructor == Array && v.constructor == Array && a[i].toString() == v.toString()) || (a[i] == v)) return true;
|
|
532
|
+
},
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
shortenWords: function (obj, maxLen)
|
|
536
|
+
{
|
|
537
|
+
maxLen = maxLen ? maxLen - 3: 45;
|
|
538
|
+
this.each(obj, function (o) {
|
|
539
|
+
if (o.nodeType != 3)
|
|
540
|
+
return;
|
|
541
|
+
var chunks = o.data.split(' ');
|
|
542
|
+
var shortened = false, stlen;
|
|
543
|
+
for (var i = 0, numChunks = chunks.length; i < numChunks; i++)
|
|
544
|
+
if ((stLen = chunks[i].length) > maxLen)
|
|
545
|
+
{
|
|
546
|
+
var diffLen = Math.floor(stLen - maxLen);
|
|
547
|
+
var startPos = Math.floor(stLen / 2 - diffLen / 2);
|
|
548
|
+
chunks[i] = chunks[i].substr(0, startPos) + '...' + chunks[i].substr(startPos + diffLen);
|
|
549
|
+
shortened = true;
|
|
550
|
+
}
|
|
551
|
+
if (shortened)
|
|
552
|
+
o.data = midori.implode(' ', chunks);
|
|
553
|
+
} );
|
|
554
|
+
},
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
resizeImg: function (obj, maxWidth)
|
|
558
|
+
{
|
|
559
|
+
maxWidth = maxWidth ? maxWidth : 400;
|
|
560
|
+
this.get('img', obj).apply(function (o) {
|
|
561
|
+
if (o.width > maxWidth)
|
|
562
|
+
{
|
|
563
|
+
if (o.style.msInterpolationMode) o.style.msInterpolationMode = 'bicubic';
|
|
564
|
+
o.width = maxWidth;
|
|
565
|
+
}
|
|
566
|
+
} );
|
|
567
|
+
},
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
saveCheckboxState: function (element, cb, callback)
|
|
571
|
+
{
|
|
572
|
+
cb.checked ?
|
|
573
|
+
element.innerHTML++ :
|
|
574
|
+
(--element.innerHTML == 0) ? element.innerHTML = '' : {};
|
|
575
|
+
|
|
576
|
+
if (callback) callback(element.innerHTML);
|
|
577
|
+
},
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
checkRequiredFields: function (vars)
|
|
581
|
+
// Accepted params: event, formId, required, message, callback
|
|
582
|
+
{
|
|
583
|
+
vars.required = vars.required.split(',');
|
|
584
|
+
var form = this.get('#' + vars.formId);
|
|
585
|
+
var stopSubmit = false;
|
|
586
|
+
var fieldName, field, fieldType, fieldStyle;
|
|
587
|
+
|
|
588
|
+
for (var i = 0, numFields = vars.required.length; i < numFields; i++)
|
|
589
|
+
if (fieldName = this.trim(vars.required[i]))
|
|
590
|
+
{
|
|
591
|
+
field = this.get('#' + fieldName);
|
|
592
|
+
fieldType = (field.type.toLowerCase() == 'checkbox') ? 'c' : 't';
|
|
593
|
+
fieldStyle = (fieldType == 'c') ? field.parentNode.style : field.style;
|
|
594
|
+
fieldStyle.backgroundColor = '';
|
|
595
|
+
if ((fieldType == 'c' && !field.checked) || (this.trim(field.value) == ''))
|
|
596
|
+
{
|
|
597
|
+
fieldStyle.backgroundColor = '#FAA';
|
|
598
|
+
stopSubmit = true;
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
this.get('#' + vars.formId + '-status').innerHTML = stopSubmit ? vars.message : '';
|
|
603
|
+
|
|
604
|
+
var callbackResult = vars.callback ? vars.callback() : '';
|
|
605
|
+
if (callbackResult === false || stopSubmit) // the order is important
|
|
606
|
+
{
|
|
607
|
+
if (vars.event) this.preventDefault(vars.event);
|
|
608
|
+
return false;
|
|
609
|
+
}
|
|
610
|
+
else if (!vars.event)
|
|
611
|
+
form.submit();
|
|
612
|
+
},
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
getWindowDims: function ()
|
|
616
|
+
{
|
|
617
|
+
if (this.browserType == 'MSIE')
|
|
618
|
+
return { windowWidth: document.documentElement.clientWidth, windowHeight: document.documentElement.clientHeight,
|
|
619
|
+
scrollTop: document.documentElement.scrollTop };
|
|
620
|
+
else
|
|
621
|
+
return { windowWidth: window.innerWidth, windowHeight: window.innerHeight, scrollTop: window.scrollY };
|
|
622
|
+
},
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
getPos: function (obj, stopAt)
|
|
626
|
+
{
|
|
627
|
+
var xPos = 0, yPos = 0;
|
|
628
|
+
stopAt = stopAt ? stopAt.offsetParent : null;
|
|
629
|
+
while (obj.offsetParent != stopAt)
|
|
630
|
+
xPos += obj.offsetLeft, yPos += obj.offsetTop - obj.scrollTop, obj = obj.offsetParent;
|
|
631
|
+
|
|
632
|
+
return { x: xPos, y: yPos };
|
|
633
|
+
},
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
highlightRow: function (obj, highlightClass, removeAll)
|
|
637
|
+
{
|
|
638
|
+
this.get('td', obj).apply(function (o) {
|
|
639
|
+
var className = o.className.split(' ');
|
|
640
|
+
o.className = (className[className.length - 1] == highlightClass) ?
|
|
641
|
+
o.className.substr(0, o.className.length - highlightClass.length - 1) :
|
|
642
|
+
removeAll ? o.className : o.className + ' ' + highlightClass;
|
|
643
|
+
} );
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
var midoriFX =
|
|
651
|
+
{
|
|
652
|
+
intervals: {},
|
|
653
|
+
lastIntervalId: 0,
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
getOutsideSize: function (element, what)
|
|
657
|
+
{
|
|
658
|
+
var offsetSize = what == 'width' ? element.offsetWidth : element.offsetHeight;
|
|
659
|
+
element.style[what] = offsetSize.toString() + 'px';
|
|
660
|
+
var outsideSize = (what == 'width' ? element.offsetWidth : element.offsetHeight) - offsetSize;
|
|
661
|
+
element.style[what] = (offsetSize - outsideSize).toString() + 'px';
|
|
662
|
+
|
|
663
|
+
return outsideSize;
|
|
664
|
+
},
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
showWithAnim: function (vars)
|
|
668
|
+
{
|
|
669
|
+
var firstRun = this.intervals[vars.intervalKey].newSize ? false : true;
|
|
670
|
+
this.intervals[vars.intervalKey].newSize += Math.round((vars.elementSize - this.intervals[vars.intervalKey].newSize) / 2);
|
|
671
|
+
|
|
672
|
+
if (this.intervals[vars.intervalKey].newSize < vars.elementSize)
|
|
673
|
+
vars.element.style[vars.what] = this.intervals[vars.intervalKey].newSize.toString() + 'px';
|
|
674
|
+
else
|
|
675
|
+
{
|
|
676
|
+
clearInterval(this.intervals[vars.intervalKey].intervalId);
|
|
677
|
+
vars.element.style[vars.what] = vars.elementSize.toString() + 'px';
|
|
678
|
+
vars.element.style.overflow = 'visible';
|
|
679
|
+
if (vars.callback) vars.callback(vars.element);
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
if (firstRun) vars.element.style.display = 'block';
|
|
683
|
+
},
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
show: function (id, callback, horiz)
|
|
687
|
+
{
|
|
688
|
+
var what = horiz ? 'width' : 'height';
|
|
689
|
+
var element = midori.get('#' + id);
|
|
690
|
+
var vars = { intervalKey: Math.random(), element: element, callback: callback, what: what };
|
|
691
|
+
|
|
692
|
+
midori.setStyles(element, { overflow: 'hidden', visibility: 'hidden', display: 'block' } );
|
|
693
|
+
vars.elementSize = (horiz ? element.offsetWidth : element.offsetHeight) - this.getOutsideSize(element, what),
|
|
694
|
+
midori.setStyles(element, { display: 'none', visibility: 'visible' } );
|
|
695
|
+
|
|
696
|
+
this.intervals[vars.intervalKey] = { newSize: 0, intervalId: setInterval(function () { midoriFX.showWithAnim(vars) }, 40) };
|
|
697
|
+
},
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
hideWithAnim: function (vars)
|
|
701
|
+
{
|
|
702
|
+
var oldSize = (vars.what == 'width' ? vars.element.offsetWidth : vars.element.offsetHeight) - vars.outsideSize;
|
|
703
|
+
var newSize = vars.constantSpeed ? vars.oldSize - 4 : Math.round(oldSize / 1.5);
|
|
704
|
+
|
|
705
|
+
if (newSize > 2)
|
|
706
|
+
{
|
|
707
|
+
vars.element.style[vars.what] = newSize.toString() + 'px';
|
|
708
|
+
vars.element.style.opacity = newSize / 50;
|
|
709
|
+
}
|
|
710
|
+
else
|
|
711
|
+
{
|
|
712
|
+
clearInterval(this.intervals[vars.intervalKey].intervalId);
|
|
713
|
+
vars.element.style.display = 'none';
|
|
714
|
+
vars.element.style[vars.what] = vars.elementSize.toString() + 'px';
|
|
715
|
+
vars.element.style.opacity = 1;
|
|
716
|
+
if (vars.callback) vars.callback(vars.element);
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
hide: function (id, callback, constantSpeed, horiz)
|
|
722
|
+
{
|
|
723
|
+
var what = horiz ? 'width' : 'height';
|
|
724
|
+
var element = midori.get('#' + id);
|
|
725
|
+
var outsideSize = this.getOutsideSize(element, what);
|
|
726
|
+
var vars = {
|
|
727
|
+
intervalKey: Math.random(), element: element, outsideSize: outsideSize,
|
|
728
|
+
elementSize: (horiz ? element.offsetWidth : element.offsetHeight) - outsideSize,
|
|
729
|
+
callback: callback, constantSpeed: constantSpeed, what: what };
|
|
730
|
+
element.style.overflow = 'hidden';
|
|
731
|
+
this.intervals[vars.intervalKey] = { intervalId: setInterval(function () { midoriFX.hideWithAnim(vars) }, 40) };
|
|
732
|
+
},
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
scrollToWithAnim: function (intervalKey, targetPos)
|
|
736
|
+
{
|
|
737
|
+
if (Math.abs(targetPos - this.intervals[intervalKey].scrollPos) > 10)
|
|
738
|
+
{
|
|
739
|
+
this.intervals[intervalKey].scrollPos += Math.round((targetPos - this.intervals[intervalKey].scrollPos) / 8);
|
|
740
|
+
scrollTo(0, this.intervals[intervalKey].scrollPos);
|
|
741
|
+
}
|
|
742
|
+
else
|
|
743
|
+
clearInterval(this.intervals[intervalKey].intervalId);
|
|
744
|
+
},
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
scrollTo: function (id, correction)
|
|
748
|
+
{
|
|
749
|
+
var targetPos = midori.getPos(midori.get('#' + id)).y + (correction ? correction : 0);
|
|
750
|
+
var intervalKey = Math.random();
|
|
751
|
+
var dims = midori.getWindowDims();
|
|
752
|
+
this.intervals[intervalKey] =
|
|
753
|
+
{ scrollPos: dims.scrollTop, intervalId: setInterval(function () { midoriFX.scrollToWithAnim(intervalKey, targetPos) }, 15) };
|
|
754
|
+
},
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
sliderToWithAnim: function (intervalKey, container, targetPos)
|
|
758
|
+
{
|
|
759
|
+
var data = this.intervals[intervalKey];
|
|
760
|
+
var diff = Math.abs(targetPos - data.targetPos);
|
|
761
|
+
data.targetPos += Math.round(diff / 8) * data.direction;
|
|
762
|
+
container.style.marginLeft = -data.targetPos + 'px';
|
|
763
|
+
if (diff < 4)
|
|
764
|
+
clearInterval(data.intervalId);
|
|
765
|
+
},
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
slider: function (containerId, targetId, correction)
|
|
769
|
+
{
|
|
770
|
+
var container = midori.get('#' + containerId);
|
|
771
|
+
var targetPos = midori.getPos(midori.get('#' + targetId), container).x;
|
|
772
|
+
var currentPos = container.style.marginLeft ? Math.abs(parseInt(container.style.marginLeft, 10)) : 0;
|
|
773
|
+
var intervalKey = Math.random();
|
|
774
|
+
if (this.lastIntervalId) clearInterval(this.lastIntervalId);
|
|
775
|
+
this.intervals[intervalKey] = {
|
|
776
|
+
targetPos: currentPos,
|
|
777
|
+
direction: (currentPos > targetPos) ? -1 : 1,
|
|
778
|
+
intervalId: setInterval(function () { midoriFX.sliderToWithAnim(intervalKey, container, targetPos) }, 15) };
|
|
779
|
+
this.lastIntervalId = this.intervals[intervalKey].intervalId;
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
var midoriPopup =
|
|
787
|
+
{
|
|
788
|
+
show: function (vars)
|
|
789
|
+
// Accepted params: event, obj, popupId, showAtMousePos, showCallback, hideCallback, x, y, noAnim
|
|
790
|
+
{
|
|
791
|
+
if (typeof vars.x == 'undefined') vars.x = 5;
|
|
792
|
+
if (typeof vars.y == 'undefined') vars.y = -5;
|
|
793
|
+
|
|
794
|
+
this.popupId = vars.popupId;
|
|
795
|
+
var popup = midori.get('#' + vars.popupId);
|
|
796
|
+
var dims = midori.getWindowDims();
|
|
797
|
+
var popupPos = vars.showAtMousePos ? midori.getMousePos(vars.event) : midori.getPos(vars.obj);
|
|
798
|
+
|
|
799
|
+
popup.style.display = 'block';
|
|
800
|
+
if (this.activePopup) this.activePopup.style.display = 'none';
|
|
801
|
+
vars.obj.blur();
|
|
802
|
+
|
|
803
|
+
if (dims.windowWidth < popupPos.x + popup.offsetWidth + vars.x)
|
|
804
|
+
popupPos.x -= popup.offsetWidth;
|
|
805
|
+
|
|
806
|
+
while (popupPos.y + popup.offsetHeight + vars.y - dims.scrollTop > dims.windowHeight)
|
|
807
|
+
popupPos.y -= popup.offsetHeight + 20;
|
|
808
|
+
|
|
809
|
+
midori.setStyles(popup, { left: (popupPos.x + vars.x) + 'px', top: (popupPos.y + vars.y + vars.obj.offsetHeight) + 'px' } );
|
|
810
|
+
this.activePopup = popup;
|
|
811
|
+
|
|
812
|
+
vars.noAnim ? popup.style.display = 'block' : midoriFX.show(this.popupId);
|
|
813
|
+
|
|
814
|
+
if (vars.event) midori.preventDefault(vars.event);
|
|
815
|
+
if (vars.showCallback) vars.showCallback(this);
|
|
816
|
+
|
|
817
|
+
this.hideCallback = vars.hideCallback ? vars.hideCallback : false;
|
|
818
|
+
},
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
hide: function ()
|
|
822
|
+
{
|
|
823
|
+
if (this.activePopup == null) return;
|
|
824
|
+
if (this.hideCallback) this.hideCallback(this);
|
|
825
|
+
|
|
826
|
+
midoriFX.hide(this.popupId);
|
|
827
|
+
this.activePopup = null;
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
midori.addEventListener(document, 'mouseup', function (e) { midoriPopup.hide() } );
|
|
832
|
+
midori.addEventListener(document, 'touchend', function (e) { midoriPopup.hide() } );
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
var midoriTab =
|
|
838
|
+
{
|
|
839
|
+
selectedTabs: {},
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
select: function (obj, noAnim)
|
|
843
|
+
{
|
|
844
|
+
var tabSet = obj.getAttribute('tabset');
|
|
845
|
+
if (this.selectedTabs[tabSet])
|
|
846
|
+
{
|
|
847
|
+
this.selectedTabs[tabSet].parentNode.className = '';
|
|
848
|
+
midori.get('#' + this.selectedTabs[tabSet].hash.substr(1)).style.display = 'none';
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
this.selectedTabs[tabSet] = obj;
|
|
852
|
+
obj.parentNode.className = 'tab-selected';
|
|
853
|
+
noAnim ? midori.get('#' + obj.hash.substr(1)).style.display = 'block' : midoriFX.show(obj.hash.substr(1));
|
|
854
|
+
},
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
init: function ()
|
|
858
|
+
{
|
|
859
|
+
midori.get('.tab-set').apply(function(obj) {
|
|
860
|
+
midori.get('#' + obj.id + ' a').apply(function (o) {
|
|
861
|
+
o.setAttribute('tabset', obj.id);
|
|
862
|
+
if (o.parentNode.className == 'tab-selected')
|
|
863
|
+
{
|
|
864
|
+
midoriTab.selectedTabs[obj.id] = o;
|
|
865
|
+
midoriTab.select(o, true);
|
|
866
|
+
}
|
|
867
|
+
midori.addEventListener(o, 'click', function (e) {
|
|
868
|
+
var me = midori.getEventTarget(e);
|
|
869
|
+
me.blur();
|
|
870
|
+
midoriTab.select(me);
|
|
871
|
+
midori.preventDefault(e);
|
|
872
|
+
} );
|
|
873
|
+
} );
|
|
874
|
+
} );
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
var midoriHistory =
|
|
882
|
+
{
|
|
883
|
+
history: [],
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
modifyLocation: function (item)
|
|
887
|
+
{
|
|
888
|
+
var loc = window.location.toString();
|
|
889
|
+
window.location = (loc.indexOf('#') == -1) ? loc + '#' + item : loc.replace(/#.+/, '#' + item);
|
|
890
|
+
},
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
add: function (item)
|
|
894
|
+
{
|
|
895
|
+
if (item == this.last)
|
|
896
|
+
return;
|
|
897
|
+
this.history.push(item);
|
|
898
|
+
this.modifyLocation(item);
|
|
899
|
+
this.last = item;
|
|
900
|
+
|
|
901
|
+
if (midori.browserType == 'MSIE')
|
|
902
|
+
{
|
|
903
|
+
var iframe = midori.get('#midori_history').contentWindow.document;
|
|
904
|
+
iframe.open('javascript: "<html></html>"');
|
|
905
|
+
iframe.write('<html><body><div id="me">' + item + '</div></body></html>');
|
|
906
|
+
iframe.close();
|
|
907
|
+
}
|
|
908
|
+
},
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
remove: function (item)
|
|
912
|
+
{
|
|
913
|
+
var history = this.history;
|
|
914
|
+
for (var i = 0, len = history.length; i < len; i++)
|
|
915
|
+
if (history[i] == item)
|
|
916
|
+
{
|
|
917
|
+
history.splice(i, 1);
|
|
918
|
+
if (i == len) this.last = history[history.length - 1];
|
|
919
|
+
}
|
|
920
|
+
this.history = history;
|
|
921
|
+
},
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
onChange: function ()
|
|
925
|
+
{
|
|
926
|
+
var newLoc = window.location.toString();
|
|
927
|
+
var item = (midori.browserType == 'MSIE') ?
|
|
928
|
+
midori.get('#midori_history').contentWindow.document.getElementById('me').innerText :
|
|
929
|
+
(newLoc.indexOf('#') != -1) ? newLoc.match(/#(.+)$/)[1] : '';
|
|
930
|
+
|
|
931
|
+
if (midori.browserType == 'MSIE')
|
|
932
|
+
{
|
|
933
|
+
if (midoriHistory.oldItem != item && midori.inArray(item, midoriHistory.history))
|
|
934
|
+
{
|
|
935
|
+
midoriHistory.oldItem = item;
|
|
936
|
+
midoriHistory.modifyLocation(item);
|
|
937
|
+
midoriHistory.callback(item);
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
else if (midoriHistory.oldLoc != newLoc && midori.inArray(item, midoriHistory.history))
|
|
941
|
+
{
|
|
942
|
+
midoriHistory.oldLoc = newLoc;
|
|
943
|
+
midoriHistory.callback(item);
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
|
|
947
|
+
|
|
948
|
+
init: function (callback)
|
|
949
|
+
{
|
|
950
|
+
this.callback = callback;
|
|
951
|
+
if (midori.browserType == 'MSIE')
|
|
952
|
+
document.body.appendChild(document.createElement('div')).innerHTML =
|
|
953
|
+
'<iframe id="midori_history" style="position: absolute; width: 1px; height: 1px"></iframe>';
|
|
954
|
+
setInterval(this.onChange, 250);
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
function midoriTableSelection(vars)
|
|
962
|
+
// Accepted params: tableId, rowPrefix, checkboxName, rowHighlight, showCallback, hideCallback
|
|
963
|
+
{
|
|
964
|
+
this.vars = vars;
|
|
965
|
+
this.rowIds = [];
|
|
966
|
+
var thisObj = this;
|
|
967
|
+
|
|
968
|
+
var cb = document.createElement('input');
|
|
969
|
+
cb.setAttribute('type', 'checkbox');
|
|
970
|
+
midori.addEventListener(cb, 'click', function (e) {
|
|
971
|
+
var id, el, isChecked;
|
|
972
|
+
for (var i = 0, numIds = thisObj.rowIds.length; i < numIds; i++)
|
|
973
|
+
{
|
|
974
|
+
id = thisObj.rowIds[i];
|
|
975
|
+
el = midori.get('#' + vars.rowPrefix + 'cb_' + id).firstChild;
|
|
976
|
+
isChecked = el.checked;
|
|
977
|
+
el.checked = !isChecked;
|
|
978
|
+
el.value = isChecked ? '' : id;
|
|
979
|
+
midori.highlightRow(midori.get('#' + vars.rowPrefix + id), vars.rowHighlight);
|
|
980
|
+
midori.saveCheckboxState(midori.get('#' + vars.tableId + '_cb_parent'), el);
|
|
981
|
+
}
|
|
982
|
+
} );
|
|
983
|
+
|
|
984
|
+
var firstTh = midori.get('#' + vars.tableId + ' th')[0];
|
|
985
|
+
var th = document.createElement('th');
|
|
986
|
+
midori.setAttributes(th, { id: vars.rowPrefix + 'header-cb', align: 'left', className: firstTh.className } );
|
|
987
|
+
th.appendChild(cb);
|
|
988
|
+
th.style.display = 'none';
|
|
989
|
+
firstTh.parentNode.appendChild(th);
|
|
990
|
+
|
|
991
|
+
var cbParent = document.createElement('div');
|
|
992
|
+
cbParent.id = vars.tableId + '_cb_parent';
|
|
993
|
+
document.body.appendChild(cbParent);
|
|
994
|
+
|
|
995
|
+
midori.get('#' + vars.tableId + ' tr[id^="' + vars.rowPrefix + '"]').apply(function (o) {
|
|
996
|
+
var td, el, id, className;
|
|
997
|
+
midori.get('td:last-child', o).apply(function (c) { className = c.className } );
|
|
998
|
+
|
|
999
|
+
id = o.id.substr(vars.rowPrefix.length);
|
|
1000
|
+
td = document.createElement('td');
|
|
1001
|
+
td.style.display = 'none';
|
|
1002
|
+
midori.setAttributes(td, { id: vars.rowPrefix + 'cb_' + id, className: className } );
|
|
1003
|
+
|
|
1004
|
+
el = document.createElement('input');
|
|
1005
|
+
midori.setAttributes(el, { name: vars.checkboxName, type: 'checkbox', value: id } );
|
|
1006
|
+
midori.addEventListener(el, 'click', function (e) {
|
|
1007
|
+
midori.highlightRow(midori.get('#' + vars.rowPrefix + id), vars.rowHighlight);
|
|
1008
|
+
midori.saveCheckboxState(midori.get('#' + vars.tableId + '_cb_parent'), el);
|
|
1009
|
+
this.value = id;
|
|
1010
|
+
} );
|
|
1011
|
+
td.appendChild(el);
|
|
1012
|
+
o.appendChild(td);
|
|
1013
|
+
thisObj.rowIds.push(id);
|
|
1014
|
+
} );
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
this.toggle = function()
|
|
1018
|
+
{
|
|
1019
|
+
var numRowIds = this.rowIds.length;
|
|
1020
|
+
if (midori.get('#' + this.vars.rowPrefix + 'header-cb').style.display == 'none')
|
|
1021
|
+
{
|
|
1022
|
+
midori.get('#' + this.vars.rowPrefix + 'header-cb').style.display = '';
|
|
1023
|
+
for (var i = 0; i < numRowIds; i++)
|
|
1024
|
+
{
|
|
1025
|
+
var rowId = this.rowIds[i];
|
|
1026
|
+
midori.get('#' + this.vars.rowPrefix + 'cb_' + rowId).style.display = '';
|
|
1027
|
+
if (midori.get('#' + this.vars.rowPrefix + 'cb_' + rowId).firstChild.checked)
|
|
1028
|
+
midori.highlightRow(midori.get('#' + this.vars.rowPrefix + rowId), this.vars.rowHighlight);
|
|
1029
|
+
}
|
|
1030
|
+
if (vars.showCallback) vars.showCallback(this);
|
|
1031
|
+
}
|
|
1032
|
+
else
|
|
1033
|
+
{
|
|
1034
|
+
midori.get('#' + this.vars.rowPrefix + 'header-cb').style.display = 'none';
|
|
1035
|
+
for (var i = 0; i < numRowIds; i++)
|
|
1036
|
+
{
|
|
1037
|
+
midori.get('#' + this.vars.rowPrefix + 'cb_' + this.rowIds[i]).style.display = 'none';
|
|
1038
|
+
midori.highlightRow(midori.get('#' + this.vars.rowPrefix + this.rowIds[i]), this.vars.rowHighlight, true);
|
|
1039
|
+
}
|
|
1040
|
+
if (vars.hideCallback) vars.hideCallback(this);
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
function midoriDragDrop(containerId, dropCallback)
|
|
1049
|
+
{
|
|
1050
|
+
var thisObj = this;
|
|
1051
|
+
this.container = midori.get('#' + containerId);
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
|
+
this.init = function ()
|
|
1055
|
+
{
|
|
1056
|
+
this.objs = [];
|
|
1057
|
+
this.objsCoords = [];
|
|
1058
|
+
this.mouseMoved = false;
|
|
1059
|
+
this.dragged = null;
|
|
1060
|
+
|
|
1061
|
+
midori.each(this.container, function (o) {
|
|
1062
|
+
if (/not-draggable/.test(o.className) || !/draggable/.test(o.className) || o.style.display == 'none')
|
|
1063
|
+
return;
|
|
1064
|
+
thisObj.objs.push(o);
|
|
1065
|
+
for (var i = 0; i < 2; i++)
|
|
1066
|
+
midori.addEventListener(o, ['mousedown', 'touchstart'][i], function (e) {
|
|
1067
|
+
var mousePos = midori.getMousePos(e);
|
|
1068
|
+
var me = midori.getEventTarget(e);
|
|
1069
|
+
if (/not-draggable/.test(me.className))
|
|
1070
|
+
return;
|
|
1071
|
+
|
|
1072
|
+
while (!/draggable/.test(me.className))
|
|
1073
|
+
me = me.parentNode;
|
|
1074
|
+
var objPos = midori.getPos(me);
|
|
1075
|
+
thisObj.dragged = me;
|
|
1076
|
+
thisObj.mouseOffset = { x: mousePos.x - objPos.x, y: mousePos.y - objPos.y };
|
|
1077
|
+
|
|
1078
|
+
if (!/drop-target/.test(o.className))
|
|
1079
|
+
{
|
|
1080
|
+
me.style.opacity = '.5';
|
|
1081
|
+
midori.preventBubble(e);
|
|
1082
|
+
midori.preventDefault(e);
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
thisObj.removeDraggedObj(me);
|
|
1086
|
+
} );
|
|
1087
|
+
}, true);
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
this.findPlace = function (event, mouseUp)
|
|
1092
|
+
{
|
|
1093
|
+
var mousePos = mouseUp && event.targetTouches ? this.lastMousePos : midori.getMousePos(event);
|
|
1094
|
+
var obj, objCoords, objPos;
|
|
1095
|
+
|
|
1096
|
+
if (!this.objsCoords.length)
|
|
1097
|
+
for (var i = 0, numObjs = this.objs.length; i < numObjs; i++)
|
|
1098
|
+
if ((obj = this.objs[i]) && (objPos = midori.getPos(obj)))
|
|
1099
|
+
this.objsCoords.push( { obj: obj, x: objPos.x, y: objPos.y, width: obj.offsetWidth, height: obj.offsetHeight } );
|
|
1100
|
+
|
|
1101
|
+
for (var j = 0, numObjsCoords = this.objsCoords.length; j < numObjsCoords; j++)
|
|
1102
|
+
if (objCoords = this.objsCoords[j])
|
|
1103
|
+
{
|
|
1104
|
+
if (!((mousePos.x >= objCoords.x && mousePos.x <= objCoords.x + objCoords.width) &&
|
|
1105
|
+
(mousePos.y >= objCoords.y && mousePos.y <= objCoords.y + objCoords.height)))
|
|
1106
|
+
continue;
|
|
1107
|
+
|
|
1108
|
+
objCoords.where = midori.getFloat(objCoords.obj) ?
|
|
1109
|
+
(mousePos.x < objCoords.x + objCoords.width / 2) ? 'prev' : 'next' :
|
|
1110
|
+
(mousePos.y < objCoords.y + objCoords.height / 2) ? 'prev' : 'next';
|
|
1111
|
+
|
|
1112
|
+
return objCoords;
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
this.removeDraggedObj = function (parentObj)
|
|
1118
|
+
{
|
|
1119
|
+
var j, numObjs = this.objs.length;
|
|
1120
|
+
midori.each(parentObj, function (o) {
|
|
1121
|
+
if (!/draggable/.test(o.className))
|
|
1122
|
+
return;
|
|
1123
|
+
for (j = 0; j < numObjs; j++)
|
|
1124
|
+
if (thisObj.objs[j] == o) { thisObj.objs[j] = ''; break; }
|
|
1125
|
+
}, true);
|
|
1126
|
+
|
|
1127
|
+
for (j = 0; j < numObjs; j++)
|
|
1128
|
+
if (this.objs[j] == parentObj) { this.objs[j] = ''; break; }
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
this.mouseMove = function (event)
|
|
1133
|
+
{
|
|
1134
|
+
if (!this.dragged || /drop-target/.test(this.dragged.className))
|
|
1135
|
+
return;
|
|
1136
|
+
midori.preventDefault(event);
|
|
1137
|
+
|
|
1138
|
+
var mousePos = midori.getMousePos(event);
|
|
1139
|
+
this.lastMousePos = mousePos;
|
|
1140
|
+
this.mouseMoved = true;
|
|
1141
|
+
midori.setStyles(this.dragged, { position: 'absolute', left: (mousePos.x - this.mouseOffset.x) + 'px', top: (mousePos.y - this.mouseOffset.y) + 'px' } );
|
|
1142
|
+
midori.setFloat(this.spacer, midori.getFloat(this.dragged));
|
|
1143
|
+
|
|
1144
|
+
var objCoords;
|
|
1145
|
+
if ((objCoords = this.findPlace(event)) && (this.dropCallback(objCoords, this.dragged, this.spacer)))
|
|
1146
|
+
{
|
|
1147
|
+
midori.setStyles(this.spacer, { display: 'block', height: this.dragged.offsetHeight + 'px' } );
|
|
1148
|
+
if (midori.getFloat(this.spacer))
|
|
1149
|
+
this.spacer.style.width = this.dragged.offsetWidth + 'px';
|
|
1150
|
+
}
|
|
1151
|
+
else
|
|
1152
|
+
this.spacer.style.display = 'none';
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
|
|
1156
|
+
this.mouseUp = function (event)
|
|
1157
|
+
{
|
|
1158
|
+
this.doneDragging = false;
|
|
1159
|
+
if (!this.dragged)
|
|
1160
|
+
return;
|
|
1161
|
+
|
|
1162
|
+
var objCoords;
|
|
1163
|
+
if (this.mouseMoved && (objCoords = this.findPlace(event, true)))
|
|
1164
|
+
{
|
|
1165
|
+
this.dropCallback(objCoords, this.dragged);
|
|
1166
|
+
this.doneDragging = true;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
if (!this.dragged)
|
|
1170
|
+
return;
|
|
1171
|
+
|
|
1172
|
+
this.spacer.style.display = 'none';
|
|
1173
|
+
midori.setStyles(this.dragged, { position: '', opacity: '1' } );
|
|
1174
|
+
this.init(this.container);
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
this.defaultDropCallback = function (o, dragged, spacer)
|
|
1179
|
+
{
|
|
1180
|
+
if (/drop-target/.test(o.obj.className))
|
|
1181
|
+
return o.obj.appendChild(spacer ? spacer : dragged);
|
|
1182
|
+
|
|
1183
|
+
return (o.where == 'next' && !o.obj.nextSibling) ?
|
|
1184
|
+
o.obj.parentNode.appendChild( spacer ? spacer : dragged) :
|
|
1185
|
+
o.obj.parentNode.insertBefore(spacer ? spacer : dragged, (o.where == 'prev') ? o.obj : o.obj.nextSibling);
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
midori.addEventListener(this.container, 'mousemove', function (e) { thisObj.mouseMove(e) } );
|
|
1190
|
+
midori.addEventListener(this.container, 'mouseup', function (e) { thisObj.mouseUp(e) } );
|
|
1191
|
+
midori.addEventListener(this.container, 'click', function (e) { if (thisObj.doneDragging) midori.preventDefault(e) } );
|
|
1192
|
+
|
|
1193
|
+
midori.addEventListener(this.container, 'touchmove', function (e) { thisObj.mouseMove(e) } );
|
|
1194
|
+
midori.addEventListener(this.container, 'touchend', function (e) { thisObj.mouseUp(e) } );
|
|
1195
|
+
|
|
1196
|
+
this.spacer = document.createElement('div');
|
|
1197
|
+
this.spacer.innerHTML = ' ';
|
|
1198
|
+
midori.setAttributes(this.spacer, { id: 'midori_dd_spacer' + midori.uniqid(), className: 'midori-dd-spacer' } );
|
|
1199
|
+
|
|
1200
|
+
this.dropCallback = dropCallback ? dropCallback : this.defaultDropCallback;
|
|
1201
|
+
this.init();
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
|
|
1207
|
+
function midoriAjax(callback, params, cache)
|
|
1208
|
+
{
|
|
1209
|
+
var thisObj = this;
|
|
1210
|
+
this.cache = {};
|
|
1211
|
+
this.callback = callback;
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
try { this.request = new XMLHttpRequest() }
|
|
1215
|
+
catch (e)
|
|
1216
|
+
{ try { this.request = new ActiveXObject('Msxml2.XMLHTTP') }
|
|
1217
|
+
catch (e)
|
|
1218
|
+
{ this.request = new ActiveXObject('Microsoft.XMLHTTP') }
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
this.runCallback = function (event, cached)
|
|
1223
|
+
{
|
|
1224
|
+
if (!cached)
|
|
1225
|
+
{
|
|
1226
|
+
if (thisObj.request.readyState != 4)
|
|
1227
|
+
return;
|
|
1228
|
+
thisObj.responseText = thisObj.request.responseText;
|
|
1229
|
+
thisObj.responseXML = thisObj.request.responseXML;
|
|
1230
|
+
thisObj.status = thisObj.request.status;
|
|
1231
|
+
thisObj.cache[thisObj.cacheKey] = thisObj.responseText;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
thisObj.callback(params);
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
this.post = function (where, what, verb, headers)
|
|
1239
|
+
{
|
|
1240
|
+
var cachedValue;
|
|
1241
|
+
this.cacheKey = where + '?' + what;
|
|
1242
|
+
if (cache && ((cachedValue = this.cache[this.cacheKey]) != null))
|
|
1243
|
+
{
|
|
1244
|
+
this.responseText = cachedValue;
|
|
1245
|
+
this.runCallback('', true);
|
|
1246
|
+
return;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
this.request.onreadystatechange = this.runCallback;
|
|
1250
|
+
|
|
1251
|
+
verb = verb ? midori.trim(((verb == true) ? 'GET' : verb).toUpperCase()) : 'POST';
|
|
1252
|
+
this.request.open(verb, midori.inArray(verb, ['POST', 'PUT']) ? where : where + (what ? '?' + what : ''), true);
|
|
1253
|
+
|
|
1254
|
+
if (midori.inArray(verb, ['POST', 'PUT']))
|
|
1255
|
+
{
|
|
1256
|
+
this.request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');
|
|
1257
|
+
this.request.setRequestHeader('Content-length', what.length);
|
|
1258
|
+
this.request.setRequestHeader('Connection', 'close');
|
|
1259
|
+
}
|
|
1260
|
+
if (headers)
|
|
1261
|
+
for (var i = 0, len = headers.length; i < len; i++)
|
|
1262
|
+
this.request.setRequestHeader(headers[i][0], headers[i][1]);
|
|
1263
|
+
|
|
1264
|
+
this.request.send(midori.inArray(verb, ['POST', 'PUT']) ? what : null);
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
function midoriAutoComplete(vars)
|
|
1272
|
+
// Accepted params: id, minChars, separator, suggestionClass, suggestionSelectedClass, htmlTemplate, fileName, params, callback, callback2
|
|
1273
|
+
{
|
|
1274
|
+
var thisObj = this;
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
this.process = function (event)
|
|
1278
|
+
{
|
|
1279
|
+
if (this.popup && this.popup == midoriPopup.activePopup)
|
|
1280
|
+
switch (event.keyCode)
|
|
1281
|
+
{
|
|
1282
|
+
case 27 :
|
|
1283
|
+
case 37 :
|
|
1284
|
+
case 39 : midoriPopup.hide(); break;
|
|
1285
|
+
case 13 : this.replaceSnippet(this.snippet); midoriPopup.hide(); break;
|
|
1286
|
+
case 38 : if (this.suggestionPos && this.suggestionPos != 1) this.highlightSuggestion(this.suggestionPos - 1); break;
|
|
1287
|
+
case 40 : if (this.suggestionPos != this.numSuggestions) this.highlightSuggestion(this.suggestionPos + 1); break;
|
|
1288
|
+
}
|
|
1289
|
+
else if (vars.callback2)
|
|
1290
|
+
vars.callback2(event);
|
|
1291
|
+
|
|
1292
|
+
this.content = this.obj.value;
|
|
1293
|
+
if (this.content == this.oldContent || midori.inArray(event.keyCode, [13, 38, 40]))
|
|
1294
|
+
return;
|
|
1295
|
+
|
|
1296
|
+
var changed = false;
|
|
1297
|
+
for (var i = 0, len = this.content.length; i < len; i++)
|
|
1298
|
+
if (this.content.charAt(i) != this.oldContent.charAt(i))
|
|
1299
|
+
{
|
|
1300
|
+
changed = true;
|
|
1301
|
+
break;
|
|
1302
|
+
}
|
|
1303
|
+
if (!changed && this.oldContent.length < len)
|
|
1304
|
+
return;
|
|
1305
|
+
|
|
1306
|
+
if (this.content.charAt(i) == vars.separator)
|
|
1307
|
+
(event.keyCode == 8) ? i-- : i++;
|
|
1308
|
+
|
|
1309
|
+
for (var j = i; j > 0; j--)
|
|
1310
|
+
if (this.content.charAt(j) == vars.separator)
|
|
1311
|
+
{
|
|
1312
|
+
j++;
|
|
1313
|
+
break;
|
|
1314
|
+
}
|
|
1315
|
+
var snippet = this.content.substr(j, i - j);
|
|
1316
|
+
|
|
1317
|
+
for (var j = i; j < len; j++)
|
|
1318
|
+
if (this.content.charAt(j) == vars.separator)
|
|
1319
|
+
break;
|
|
1320
|
+
snippet += this.content.substr(i, j - i);
|
|
1321
|
+
|
|
1322
|
+
snippet = midori.trim(snippet);
|
|
1323
|
+
if (snippet.length >= vars.minChars)
|
|
1324
|
+
{
|
|
1325
|
+
if (typeof vars.fileName == 'string')
|
|
1326
|
+
this.ajax.post(vars.fileName, vars.params + midori.trim(snippet));
|
|
1327
|
+
else
|
|
1328
|
+
{
|
|
1329
|
+
this.ajax.responseText = vars.fileName(vars.params + midori.trim(snippet));
|
|
1330
|
+
this.ajaxCallback();
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
this.oldContent = this.content;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
this.addProperties = function (id, snippet)
|
|
1339
|
+
{
|
|
1340
|
+
var obj = midori.get('#midori_suggestion' + this.uniqid + '_' + id);
|
|
1341
|
+
midori.addEventListener(obj, 'mouseover', function (e) { thisObj.highlightSuggestion(id) } );
|
|
1342
|
+
midori.addEventListener(obj, 'click', function (e) { thisObj.replaceSnippet(snippet); midori.preventDefault(e); } );
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
this.showSuggestions = function (snippet)
|
|
1347
|
+
{
|
|
1348
|
+
var suggestions = this.suggestions[snippet], html = '', properties = [], i = 0, j = 0, k = '';
|
|
1349
|
+
for (i in suggestions)
|
|
1350
|
+
{
|
|
1351
|
+
if (vars.htmlTemplate)
|
|
1352
|
+
for (k in suggestions[i])
|
|
1353
|
+
properties[k] = suggestions[i][k];
|
|
1354
|
+
html += '<a id="midori_suggestion' + this.uniqid + '_' + (++j) + '" class="' + vars.suggestionClass + '" href="#">' +
|
|
1355
|
+
(vars.htmlTemplate ? midori.replace(vars.htmlTemplate, properties) : suggestions[i]) + '</a>\n';
|
|
1356
|
+
}
|
|
1357
|
+
if (!html)
|
|
1358
|
+
{
|
|
1359
|
+
midoriPopup.hide();
|
|
1360
|
+
return;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
this.snippet = snippet;
|
|
1364
|
+
this.suggestionPos = 0;
|
|
1365
|
+
this.numSuggestions = j;
|
|
1366
|
+
|
|
1367
|
+
if (this.popup) midori.removeNode(this.popup);
|
|
1368
|
+
|
|
1369
|
+
this.popupId = 'midori_suggestions' + this.uniqid;
|
|
1370
|
+
this.popup = document.createElement('div');
|
|
1371
|
+
midori.setAttributes(this.popup, { id: this.popupId, className: 'popup' } );
|
|
1372
|
+
document.body.appendChild(this.popup);
|
|
1373
|
+
this.popup.innerHTML = html;
|
|
1374
|
+
|
|
1375
|
+
j = 0;
|
|
1376
|
+
for (var i in this.suggestions[snippet])
|
|
1377
|
+
this.addProperties(++j, snippet);
|
|
1378
|
+
|
|
1379
|
+
midoriPopup.show( { obj: this.obj, popupId: this.popupId, x: 0, y: 0, noAnim: true } );
|
|
1380
|
+
this.obj.focus();
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
this.highlightSuggestion = function (suggestionPos)
|
|
1385
|
+
{
|
|
1386
|
+
midori.get('#' + this.popupId + ' .' + vars.suggestionSelectedClass.replace(' ', '.')).apply("className = '" + vars.suggestionClass + "'");
|
|
1387
|
+
midori.get('#midori_suggestion' + this.uniqid + '_' + suggestionPos).className = vars.suggestionSelectedClass;
|
|
1388
|
+
this.suggestionPos = suggestionPos;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
this.replaceSnippet = function (snippet)
|
|
1393
|
+
{
|
|
1394
|
+
var pos = 0;
|
|
1395
|
+
for (var i in this.suggestions[snippet])
|
|
1396
|
+
if (++pos == this.suggestionPos)
|
|
1397
|
+
{
|
|
1398
|
+
this.obj.value = this.obj.value.replace(snippet,
|
|
1399
|
+
vars.callback ? vars.callback(this.suggestions[snippet][i]) : this.suggestions[snippet][i]);
|
|
1400
|
+
break;
|
|
1401
|
+
}
|
|
1402
|
+
this.content = this.obj.value;
|
|
1403
|
+
this.oldContent = this.content;
|
|
1404
|
+
this.obj.focus();
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
this.init = function ()
|
|
1409
|
+
{
|
|
1410
|
+
if (!vars.separator)
|
|
1411
|
+
vars.separator = '';
|
|
1412
|
+
|
|
1413
|
+
this.ajaxCallback = function () {
|
|
1414
|
+
if (thisObj.ajax.responseText)
|
|
1415
|
+
{
|
|
1416
|
+
var response = (typeof thisObj.ajax.responseText == 'string') ? eval('(' + thisObj.ajax.responseText + ')') : thisObj.ajax.responseText;
|
|
1417
|
+
thisObj.suggestions[response['snippet']] = response['result'];
|
|
1418
|
+
thisObj.showSuggestions(response['snippet']);
|
|
1419
|
+
}
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1422
|
+
this.uniqid = midori.uniqid();
|
|
1423
|
+
this.obj = midori.get('#' + vars.id);
|
|
1424
|
+
this.content = this.obj.value;
|
|
1425
|
+
this.oldContent = this.content;
|
|
1426
|
+
this.suggestions = [];
|
|
1427
|
+
this.ajax = (typeof vars.fileName == 'string') ? new midoriAjax(this.ajaxCallback, '', true) : {};
|
|
1428
|
+
|
|
1429
|
+
if (this.browserType != 'Gecko') // IE & Safari form submit fix
|
|
1430
|
+
{
|
|
1431
|
+
var parentNode = this.obj;
|
|
1432
|
+
midori.addEventListener(parentNode, 'keypress', function (e) { if (e.keyCode == 13) midori.preventDefault(e) } );
|
|
1433
|
+
while (parentNode.parentNode != null)
|
|
1434
|
+
{
|
|
1435
|
+
parentNode = parentNode.parentNode;
|
|
1436
|
+
if (parentNode.nodeName.toLowerCase() == 'form')
|
|
1437
|
+
midori.addEventListener(parentNode, 'keypress', function (e) { if (e.keyCode == 13) return false } );
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
this.obj.setAttribute('autocomplete', 'off');
|
|
1442
|
+
midori.addEventListener(this.obj, 'keyup', function (e) { thisObj.process(e) } );
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
this.init();
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
function midoriInlineEdit(vars)
|
|
1452
|
+
// Accepted params: id, size, maxlen, textArea, callback, x, y
|
|
1453
|
+
{
|
|
1454
|
+
var thisObj = this;
|
|
1455
|
+
this.myObj = midori.get('#' + vars.id);
|
|
1456
|
+
this.editObj = '';
|
|
1457
|
+
this.input = vars.textArea ? 'textarea' : 'input';
|
|
1458
|
+
|
|
1459
|
+
midori.addEventListener(document, 'mouseup', function (e) { if (thisObj.editObj && midori.getEventTarget(e) != thisObj.editObj) { thisObj.save(); midori.preventDefault(e); } } );
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
this.edit = function ()
|
|
1463
|
+
{
|
|
1464
|
+
if (this.myObj.getAttribute('editing') == 'on' || midori.get(this.input, this.myObj)[0])
|
|
1465
|
+
return;
|
|
1466
|
+
var value = this.myObj.innerHTML.replace(/"/g, '"');
|
|
1467
|
+
this.myObj.innerHTML = vars.textArea ?
|
|
1468
|
+
midori.replace('<textarea style="width: :w; height: :h; overflow: auto">:value</textarea>',
|
|
1469
|
+
{ w: (this.myObj.parentNode.offsetWidth - (vars.x ? vars.x : 32)) + 'px', h: (this.myObj.parentNode.offsetHeight - (vars.y ? vars.y : 32)) + 'px', value: value } ) :
|
|
1470
|
+
midori.replace('<input type="text" size=":size" maxlength=":maxlen" value=":value" />',
|
|
1471
|
+
{ size: (vars.size ? vars.size : ''), maxlen: (vars.maxlen ? vars.maxlen : ''), value: value } );
|
|
1472
|
+
this.editObj = midori.get(this.input, this.myObj)[0];
|
|
1473
|
+
this.editObj.focus(); this.editObj.focus(); // Necessary when used inside drag & drop
|
|
1474
|
+
this.myObj.setAttribute('editing', 'on');
|
|
1475
|
+
midori.addEventListener(this.editObj, 'mousedown', function (e) { midori.preventBubble(e) } );
|
|
1476
|
+
midori.addEventListener(this.editObj, 'keyup', function (e) { if (e.keyCode == 13 || e.keyCode == 27) { thisObj.save() } } );
|
|
1477
|
+
midori.addEventListener(this.editObj, 'blur', function (e) { thisObj.save() } );
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
this.select = function ()
|
|
1482
|
+
{
|
|
1483
|
+
if (this.myObj.getAttribute('editing') == 'on') this.editObj.select();
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
|
|
1487
|
+
this.save = function ()
|
|
1488
|
+
{
|
|
1489
|
+
if (this.myObj.getAttribute('editing') != 'on')
|
|
1490
|
+
return;
|
|
1491
|
+
var text = midori.trim(this.editObj.value.replace('\n', '').replace('\r', ''));
|
|
1492
|
+
if (!text)
|
|
1493
|
+
{
|
|
1494
|
+
this.editObj.value = '';
|
|
1495
|
+
return;
|
|
1496
|
+
}
|
|
1497
|
+
this.myObj.setAttribute('editing', 'off');
|
|
1498
|
+
this.myObj.innerHTML = ''; // Bugfix for Safari
|
|
1499
|
+
this.myObj.innerHTML = text;
|
|
1500
|
+
if (vars.callback) vars.callback(text, this.myObj);
|
|
1501
|
+
}
|
|
1502
|
+
}
|