/** * Require the given path. * * @param {String} path * @return {Object} exports * @api public */ function require(path, parent, orig) { var resolved = require.resolve(path); // lookup failed if (null == resolved) { orig = orig || path; parent = parent || 'root'; var err = new Error('Failed to require "' + orig + '" from "' + parent + '"'); err.path = orig; err.parent = parent; err.require = true; throw err; } var module = require.modules[resolved]; // perform real require() // by invoking the module's // registered function if (!module._resolving && !module.exports) { var mod = {}; mod.exports = {}; mod.client = mod.component = true; module._resolving = true; module.call(this, mod.exports, require.relative(resolved), mod); delete module._resolving; module.exports = mod.exports; } return module.exports; } /** * Registered modules. */ require.modules = {}; /** * Registered aliases. */ require.aliases = {}; /** * Resolve `path`. * * Lookup: * * - PATH/index.js * - PATH.js * - PATH * * @param {String} path * @return {String} path or null * @api private */ require.resolve = function(path) { if (path.charAt(0) === '/') path = path.slice(1); var paths = [ path, path + '.js', path + '.json', path + '/index.js', path + '/index.json' ]; for (var i = 0; i < paths.length; i++) { var path = paths[i]; if (require.modules.hasOwnProperty(path)) return path; if (require.aliases.hasOwnProperty(path)) return require.aliases[path]; } }; /** * Normalize `path` relative to the current path. * * @param {String} curr * @param {String} path * @return {String} * @api private */ require.normalize = function(curr, path) { var segs = []; if ('.' != path.charAt(0)) return path; curr = curr.split('/'); path = path.split('/'); for (var i = 0; i < path.length; ++i) { if ('..' == path[i]) { curr.pop(); } else if ('.' != path[i] && '' != path[i]) { segs.push(path[i]); } } return curr.concat(segs).join('/'); }; /** * Register module at `path` with callback `definition`. * * @param {String} path * @param {Function} definition * @api private */ require.register = function(path, definition) { require.modules[path] = definition; }; /** * Alias a module definition. * * @param {String} from * @param {String} to * @api private */ require.alias = function(from, to) { if (!require.modules.hasOwnProperty(from)) { throw new Error('Failed to alias "' + from + '", it does not exist'); } require.aliases[to] = from; }; /** * Return a require function relative to the `parent` path. * * @param {String} parent * @return {Function} * @api private */ require.relative = function(parent) { var p = require.normalize(parent, '..'); /** * lastIndexOf helper. */ function lastIndexOf(arr, obj) { var i = arr.length; while (i--) { if (arr[i] === obj) return i; } return -1; } /** * The relative require() itself. */ function localRequire(path) { var resolved = localRequire.resolve(path); return require(resolved, parent, path); } /** * Resolve relative to the parent. */ localRequire.resolve = function(path) { var c = path.charAt(0); if ('/' == c) return path.slice(1); if ('.' == c) return require.normalize(p, path); // resolve deps by returning // the dep in the nearest "deps" // directory var segs = parent.split('/'); var i = lastIndexOf(segs, 'deps') + 1; if (!i) i = 0; path = segs.slice(0, i + 1).join('/') + '/deps/' + path; return path; }; /** * Check if module is defined at `path`. */ localRequire.exists = function(path) { return require.modules.hasOwnProperty(localRequire.resolve(path)); }; return localRequire; }; require.register("pluma-assimilate/dist/assimilate.js", Function("exports, require, module", "/*! assimilate 0.3.0 Copyright (c) 2013 Alan Plum. MIT licensed. */\n\ var slice = Array.prototype.slice;\n\ \n\ function bind(fn, self) {\n\ var args = slice.call(arguments, 2);\n\ if (typeof Function.prototype.bind === 'function') {\n\ return Function.prototype.bind.apply(fn, [self].concat(args));\n\ }\n\ return function() {\n\ return fn.apply(self, args.concat(slice.call(arguments, 0)));\n\ };\n\ }\n\ \n\ function simpleCopy(target, name, source) {\n\ target[name] = source[name];\n\ }\n\ \n\ function properCopy(target, name, source) {\n\ var descriptor = Object.getOwnPropertyDescriptor(source, name);\n\ Object.defineProperty(target, name, descriptor);\n\ }\n\ \n\ function ownProperties(obj) {\n\ return Object.getOwnPropertyNames(obj);\n\ }\n\ \n\ function allKeys(obj) {\n\ var keys = [];\n\ for (var name in obj) {\n\ keys.push(name);\n\ }\n\ return keys;\n\ }\n\ \n\ function ownKeys(obj) {\n\ var keys = [];\n\ for (var name in obj) {\n\ if (obj.hasOwnProperty(name)) {\n\ keys.push(name);\n\ }\n\ }\n\ return keys;\n\ }\n\ \n\ function assimilateWithStrategy(target) {\n\ var strategy = this,\n\ sources = slice.call(arguments, 1),\n\ i, source, names, j, name;\n\ \n\ if (target === undefined || target === null) {\n\ target = {};\n\ }\n\ \n\ for (i = 0; i < sources.length; i++) {\n\ source = sources[i];\n\ names = strategy.keysFn(source);\n\ for (j = 0; j < names.length; j++) {\n\ name = names[j];\n\ strategy.copyFn(target, name, source);\n\ }\n\ }\n\ \n\ return target;\n\ }\n\ \n\ var strategies = {\n\ DEFAULT: {\n\ keysFn: ownKeys,\n\ copyFn: simpleCopy\n\ },\n\ PROPER: {\n\ keysFn: ownProperties,\n\ copyFn: properCopy\n\ },\n\ INHERITED: {\n\ keysFn: allKeys,\n\ copyFn: simpleCopy\n\ },\n\ DEEP: {\n\ keysFn: ownKeys,\n\ copyFn: function recursiveCopy(target, name, source) {\n\ var val = source[name];\n\ var old = target[name];\n\ if (typeof val === 'object' && typeof old === 'object') {\n\ assimilateWithStrategy.call(strategies.DEEP, old, val);\n\ } else {\n\ simpleCopy(target, name, source);\n\ }\n\ }\n\ },\n\ STRICT: {\n\ keysFn: ownKeys,\n\ copyFn: function strictCopy(target, name, source) {\n\ if (source[name] !== undefined) {\n\ simpleCopy(target, name, source);\n\ }\n\ }\n\ },\n\ FALLBACK: {\n\ keysFn: function fallbackCopy(target, name, source) {\n\ if (target[name] === undefined) {\n\ simpleCopy(target, name, source);\n\ }\n\ },\n\ copyFn: simpleCopy\n\ }\n\ };\n\ \n\ var assimilate = bind(assimilateWithStrategy, strategies.DEFAULT);\n\ assimilate.strategies = strategies;\n\ assimilate.withStrategy = function withStrategy(strategy) {\n\ if (typeof strategy === 'string') {\n\ strategy = strategies[strategy.toUpperCase()];\n\ }\n\ if (!strategy) {\n\ throw new Error('Unknwon or invalid strategy:' + strategy);\n\ }\n\ if (typeof strategy.copyFn !== 'function') {\n\ throw new Error('Strategy missing copy function:' + strategy);\n\ }\n\ if (typeof strategy.keysFn !== 'function') {\n\ throw new Error('Strategy missing keys function:' + strategy);\n\ }\n\ return bind(assimilateWithStrategy, strategy);\n\ };\n\ \n\ module.exports = assimilate;//@ sourceURL=pluma-assimilate/dist/assimilate.js" )); require.register("component-type/index.js", Function("exports, require, module", "\n\ /**\n\ * toString ref.\n\ */\n\ \n\ var toString = Object.prototype.toString;\n\ \n\ /**\n\ * Return the type of `val`.\n\ *\n\ * @param {Mixed} val\n\ * @return {String}\n\ * @api public\n\ */\n\ \n\ module.exports = function(val){\n\ switch (toString.call(val)) {\n\ case '[object Function]': return 'function';\n\ case '[object Date]': return 'date';\n\ case '[object RegExp]': return 'regexp';\n\ case '[object Arguments]': return 'arguments';\n\ case '[object Array]': return 'array';\n\ case '[object String]': return 'string';\n\ }\n\ \n\ if (val === null) return 'null';\n\ if (val === undefined) return 'undefined';\n\ if (val && val.nodeType === 1) return 'element';\n\ if (val === Object(val)) return 'object';\n\ \n\ return typeof val;\n\ };\n\ //@ sourceURL=component-type/index.js" )); require.register("component-bind/index.js", Function("exports, require, module", "\n\ /**\n\ * Slice reference.\n\ */\n\ \n\ var slice = [].slice;\n\ \n\ /**\n\ * Bind `obj` to `fn`.\n\ *\n\ * @param {Object} obj\n\ * @param {Function|String} fn or string\n\ * @return {Function}\n\ * @api public\n\ */\n\ \n\ module.exports = function(obj, fn){\n\ if ('string' == typeof fn) fn = obj[fn];\n\ if ('function' != typeof fn) throw new Error('bind() requires a function');\n\ var args = [].slice.call(arguments, 2);\n\ return function(){\n\ return fn.apply(obj, args.concat(slice.call(arguments)));\n\ }\n\ };\n\ //@ sourceURL=component-bind/index.js" )); require.register("component-jquery/index.js", Function("exports, require, module", "/*!\n\ * jQuery JavaScript Library v1.9.1\n\ * http://jquery.com/\n\ *\n\ * Includes Sizzle.js\n\ * http://sizzlejs.com/\n\ *\n\ * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors\n\ * Released under the MIT license\n\ * http://jquery.org/license\n\ *\n\ * Date: 2013-2-4\n\ */\n\ (function( window, undefined ) {\n\ \n\ // Can't do this because several apps including ASP.NET trace\n\ // the stack via arguments.caller.callee and Firefox dies if\n\ // you try to trace through \"use strict\" call chains. (#13335)\n\ // Support: Firefox 18+\n\ //\"use strict\";\n\ var\n\ \t// The deferred used on DOM ready\n\ \treadyList,\n\ \n\ \t// A central reference to the root jQuery(document)\n\ \trootjQuery,\n\ \n\ \t// Support: IE<9\n\ \t// For `typeof node.method` instead of `node.method !== undefined`\n\ \tcore_strundefined = typeof undefined,\n\ \n\ \t// Use the correct document accordingly with window argument (sandbox)\n\ \tdocument = window.document,\n\ \tlocation = window.location,\n\ \n\ \t// Map over jQuery in case of overwrite\n\ \t_jQuery = window.jQuery,\n\ \n\ \t// Map over the $ in case of overwrite\n\ \t_$ = window.$,\n\ \n\ \t// [[Class]] -> type pairs\n\ \tclass2type = {},\n\ \n\ \t// List of deleted data cache ids, so we can reuse them\n\ \tcore_deletedIds = [],\n\ \n\ \tcore_version = \"1.9.1\",\n\ \n\ \t// Save a reference to some core methods\n\ \tcore_concat = core_deletedIds.concat,\n\ \tcore_push = core_deletedIds.push,\n\ \tcore_slice = core_deletedIds.slice,\n\ \tcore_indexOf = core_deletedIds.indexOf,\n\ \tcore_toString = class2type.toString,\n\ \tcore_hasOwn = class2type.hasOwnProperty,\n\ \tcore_trim = core_version.trim,\n\ \n\ \t// Define a local copy of jQuery\n\ \tjQuery = function( selector, context ) {\n\ \t\t// The jQuery object is actually just the init constructor 'enhanced'\n\ \t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\ \t},\n\ \n\ \t// Used for matching numbers\n\ \tcore_pnum = /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source,\n\ \n\ \t// Used for splitting on whitespace\n\ \tcore_rnotwhite = /\\S+/g,\n\ \n\ \t// Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)\n\ \trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\ \n\ \t// A simple way to check for HTML strings\n\ \t// Prioritize #id over to avoid XSS via location.hash (#9521)\n\ \t// Strict HTML recognition (#11290: must start with <)\n\ \trquickExpr = /^(?:(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\ \n\ \t// Match a standalone tag\n\ \trsingleTag = /^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/,\n\ \n\ \t// JSON RegExp\n\ \trvalidchars = /^[\\],:{}\\s]*$/,\n\ \trvalidbraces = /(?:^|:|,)(?:\\s*\\[)+/g,\n\ \trvalidescape = /\\\\(?:[\"\\\\\\/bfnrt]|u[\\da-fA-F]{4})/g,\n\ \trvalidtokens = /\"[^\"\\\\\\r\\n\ ]*\"|true|false|null|-?(?:\\d+\\.|)\\d+(?:[eE][+-]?\\d+|)/g,\n\ \n\ \t// Matches dashed string for camelizing\n\ \trmsPrefix = /^-ms-/,\n\ \trdashAlpha = /-([\\da-z])/gi,\n\ \n\ \t// Used by jQuery.camelCase as callback to replace()\n\ \tfcamelCase = function( all, letter ) {\n\ \t\treturn letter.toUpperCase();\n\ \t},\n\ \n\ \t// The ready event handler\n\ \tcompleted = function( event ) {\n\ \n\ \t\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\ \t\tif ( document.addEventListener || event.type === \"load\" || document.readyState === \"complete\" ) {\n\ \t\t\tdetach();\n\ \t\t\tjQuery.ready();\n\ \t\t}\n\ \t},\n\ \t// Clean-up method for dom ready events\n\ \tdetach = function() {\n\ \t\tif ( document.addEventListener ) {\n\ \t\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed, false );\n\ \t\t\twindow.removeEventListener( \"load\", completed, false );\n\ \n\ \t\t} else {\n\ \t\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\ \t\t\twindow.detachEvent( \"onload\", completed );\n\ \t\t}\n\ \t};\n\ \n\ jQuery.fn = jQuery.prototype = {\n\ \t// The current version of jQuery being used\n\ \tjquery: core_version,\n\ \n\ \tconstructor: jQuery,\n\ \tinit: function( selector, context, rootjQuery ) {\n\ \t\tvar match, elem;\n\ \n\ \t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\ \t\tif ( !selector ) {\n\ \t\t\treturn this;\n\ \t\t}\n\ \n\ \t\t// Handle HTML strings\n\ \t\tif ( typeof selector === \"string\" ) {\n\ \t\t\tif ( selector.charAt(0) === \"<\" && selector.charAt( selector.length - 1 ) === \">\" && selector.length >= 3 ) {\n\ \t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\ \t\t\t\tmatch = [ null, selector, null ];\n\ \n\ \t\t\t} else {\n\ \t\t\t\tmatch = rquickExpr.exec( selector );\n\ \t\t\t}\n\ \n\ \t\t\t// Match html or make sure no context is specified for #id\n\ \t\t\tif ( match && (match[1] || !context) ) {\n\ \n\ \t\t\t\t// HANDLE: $(html) -> $(array)\n\ \t\t\t\tif ( match[1] ) {\n\ \t\t\t\t\tcontext = context instanceof jQuery ? context[0] : context;\n\ \n\ \t\t\t\t\t// scripts is true for back-compat\n\ \t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\ \t\t\t\t\t\tmatch[1],\n\ \t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\ \t\t\t\t\t\ttrue\n\ \t\t\t\t\t) );\n\ \n\ \t\t\t\t\t// HANDLE: $(html, props)\n\ \t\t\t\t\tif ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {\n\ \t\t\t\t\t\tfor ( match in context ) {\n\ \t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\ \t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\ \t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\ \n\ \t\t\t\t\t\t\t// ...and otherwise set as attributes\n\ \t\t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\treturn this;\n\ \n\ \t\t\t\t// HANDLE: $(#id)\n\ \t\t\t\t} else {\n\ \t\t\t\t\telem = document.getElementById( match[2] );\n\ \n\ \t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\ \t\t\t\t\t// nodes that are no longer in the document #6963\n\ \t\t\t\t\tif ( elem && elem.parentNode ) {\n\ \t\t\t\t\t\t// Handle the case where IE and Opera return items\n\ \t\t\t\t\t\t// by name instead of ID\n\ \t\t\t\t\t\tif ( elem.id !== match[2] ) {\n\ \t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\ \t\t\t\t\t\tthis.length = 1;\n\ \t\t\t\t\t\tthis[0] = elem;\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\tthis.context = document;\n\ \t\t\t\t\tthis.selector = selector;\n\ \t\t\t\t\treturn this;\n\ \t\t\t\t}\n\ \n\ \t\t\t// HANDLE: $(expr, $(...))\n\ \t\t\t} else if ( !context || context.jquery ) {\n\ \t\t\t\treturn ( context || rootjQuery ).find( selector );\n\ \n\ \t\t\t// HANDLE: $(expr, context)\n\ \t\t\t// (which is just equivalent to: $(context).find(expr)\n\ \t\t\t} else {\n\ \t\t\t\treturn this.constructor( context ).find( selector );\n\ \t\t\t}\n\ \n\ \t\t// HANDLE: $(DOMElement)\n\ \t\t} else if ( selector.nodeType ) {\n\ \t\t\tthis.context = this[0] = selector;\n\ \t\t\tthis.length = 1;\n\ \t\t\treturn this;\n\ \n\ \t\t// HANDLE: $(function)\n\ \t\t// Shortcut for document ready\n\ \t\t} else if ( jQuery.isFunction( selector ) ) {\n\ \t\t\treturn rootjQuery.ready( selector );\n\ \t\t}\n\ \n\ \t\tif ( selector.selector !== undefined ) {\n\ \t\t\tthis.selector = selector.selector;\n\ \t\t\tthis.context = selector.context;\n\ \t\t}\n\ \n\ \t\treturn jQuery.makeArray( selector, this );\n\ \t},\n\ \n\ \t// Start with an empty selector\n\ \tselector: \"\",\n\ \n\ \t// The default length of a jQuery object is 0\n\ \tlength: 0,\n\ \n\ \t// The number of elements contained in the matched element set\n\ \tsize: function() {\n\ \t\treturn this.length;\n\ \t},\n\ \n\ \ttoArray: function() {\n\ \t\treturn core_slice.call( this );\n\ \t},\n\ \n\ \t// Get the Nth element in the matched element set OR\n\ \t// Get the whole matched element set as a clean array\n\ \tget: function( num ) {\n\ \t\treturn num == null ?\n\ \n\ \t\t\t// Return a 'clean' array\n\ \t\t\tthis.toArray() :\n\ \n\ \t\t\t// Return just the object\n\ \t\t\t( num < 0 ? this[ this.length + num ] : this[ num ] );\n\ \t},\n\ \n\ \t// Take an array of elements and push it onto the stack\n\ \t// (returning the new matched element set)\n\ \tpushStack: function( elems ) {\n\ \n\ \t\t// Build a new jQuery matched element set\n\ \t\tvar ret = jQuery.merge( this.constructor(), elems );\n\ \n\ \t\t// Add the old object onto the stack (as a reference)\n\ \t\tret.prevObject = this;\n\ \t\tret.context = this.context;\n\ \n\ \t\t// Return the newly-formed element set\n\ \t\treturn ret;\n\ \t},\n\ \n\ \t// Execute a callback for every element in the matched set.\n\ \t// (You can seed the arguments with an array of args, but this is\n\ \t// only used internally.)\n\ \teach: function( callback, args ) {\n\ \t\treturn jQuery.each( this, callback, args );\n\ \t},\n\ \n\ \tready: function( fn ) {\n\ \t\t// Add the callback\n\ \t\tjQuery.ready.promise().done( fn );\n\ \n\ \t\treturn this;\n\ \t},\n\ \n\ \tslice: function() {\n\ \t\treturn this.pushStack( core_slice.apply( this, arguments ) );\n\ \t},\n\ \n\ \tfirst: function() {\n\ \t\treturn this.eq( 0 );\n\ \t},\n\ \n\ \tlast: function() {\n\ \t\treturn this.eq( -1 );\n\ \t},\n\ \n\ \teq: function( i ) {\n\ \t\tvar len = this.length,\n\ \t\t\tj = +i + ( i < 0 ? len : 0 );\n\ \t\treturn this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );\n\ \t},\n\ \n\ \tmap: function( callback ) {\n\ \t\treturn this.pushStack( jQuery.map(this, function( elem, i ) {\n\ \t\t\treturn callback.call( elem, i, elem );\n\ \t\t}));\n\ \t},\n\ \n\ \tend: function() {\n\ \t\treturn this.prevObject || this.constructor(null);\n\ \t},\n\ \n\ \t// For internal use only.\n\ \t// Behaves like an Array's method, not like a jQuery method.\n\ \tpush: core_push,\n\ \tsort: [].sort,\n\ \tsplice: [].splice\n\ };\n\ \n\ // Give the init function the jQuery prototype for later instantiation\n\ jQuery.fn.init.prototype = jQuery.fn;\n\ \n\ jQuery.extend = jQuery.fn.extend = function() {\n\ \tvar src, copyIsArray, copy, name, options, clone,\n\ \t\ttarget = arguments[0] || {},\n\ \t\ti = 1,\n\ \t\tlength = arguments.length,\n\ \t\tdeep = false;\n\ \n\ \t// Handle a deep copy situation\n\ \tif ( typeof target === \"boolean\" ) {\n\ \t\tdeep = target;\n\ \t\ttarget = arguments[1] || {};\n\ \t\t// skip the boolean and the target\n\ \t\ti = 2;\n\ \t}\n\ \n\ \t// Handle case when target is a string or something (possible in deep copy)\n\ \tif ( typeof target !== \"object\" && !jQuery.isFunction(target) ) {\n\ \t\ttarget = {};\n\ \t}\n\ \n\ \t// extend jQuery itself if only one argument is passed\n\ \tif ( length === i ) {\n\ \t\ttarget = this;\n\ \t\t--i;\n\ \t}\n\ \n\ \tfor ( ; i < length; i++ ) {\n\ \t\t// Only deal with non-null/undefined values\n\ \t\tif ( (options = arguments[ i ]) != null ) {\n\ \t\t\t// Extend the base object\n\ \t\t\tfor ( name in options ) {\n\ \t\t\t\tsrc = target[ name ];\n\ \t\t\t\tcopy = options[ name ];\n\ \n\ \t\t\t\t// Prevent never-ending loop\n\ \t\t\t\tif ( target === copy ) {\n\ \t\t\t\t\tcontinue;\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// Recurse if we're merging plain objects or arrays\n\ \t\t\t\tif ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {\n\ \t\t\t\t\tif ( copyIsArray ) {\n\ \t\t\t\t\t\tcopyIsArray = false;\n\ \t\t\t\t\t\tclone = src && jQuery.isArray(src) ? src : [];\n\ \n\ \t\t\t\t\t} else {\n\ \t\t\t\t\t\tclone = src && jQuery.isPlainObject(src) ? src : {};\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Never move original objects, clone them\n\ \t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\ \n\ \t\t\t\t// Don't bring in undefined values\n\ \t\t\t\t} else if ( copy !== undefined ) {\n\ \t\t\t\t\ttarget[ name ] = copy;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \t// Return the modified object\n\ \treturn target;\n\ };\n\ \n\ jQuery.extend({\n\ \tnoConflict: function( deep ) {\n\ \t\tif ( window.$ === jQuery ) {\n\ \t\t\twindow.$ = _$;\n\ \t\t}\n\ \n\ \t\tif ( deep && window.jQuery === jQuery ) {\n\ \t\t\twindow.jQuery = _jQuery;\n\ \t\t}\n\ \n\ \t\treturn jQuery;\n\ \t},\n\ \n\ \t// Is the DOM ready to be used? Set to true once it occurs.\n\ \tisReady: false,\n\ \n\ \t// A counter to track how many items to wait for before\n\ \t// the ready event fires. See #6781\n\ \treadyWait: 1,\n\ \n\ \t// Hold (or release) the ready event\n\ \tholdReady: function( hold ) {\n\ \t\tif ( hold ) {\n\ \t\t\tjQuery.readyWait++;\n\ \t\t} else {\n\ \t\t\tjQuery.ready( true );\n\ \t\t}\n\ \t},\n\ \n\ \t// Handle when the DOM is ready\n\ \tready: function( wait ) {\n\ \n\ \t\t// Abort if there are pending holds or we're already ready\n\ \t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).\n\ \t\tif ( !document.body ) {\n\ \t\t\treturn setTimeout( jQuery.ready );\n\ \t\t}\n\ \n\ \t\t// Remember that the DOM is ready\n\ \t\tjQuery.isReady = true;\n\ \n\ \t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\ \t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// If there are functions bound, to execute\n\ \t\treadyList.resolveWith( document, [ jQuery ] );\n\ \n\ \t\t// Trigger any bound ready events\n\ \t\tif ( jQuery.fn.trigger ) {\n\ \t\t\tjQuery( document ).trigger(\"ready\").off(\"ready\");\n\ \t\t}\n\ \t},\n\ \n\ \t// See test/unit/core.js for details concerning isFunction.\n\ \t// Since version 1.3, DOM methods and functions like alert\n\ \t// aren't supported. They return false on IE (#2968).\n\ \tisFunction: function( obj ) {\n\ \t\treturn jQuery.type(obj) === \"function\";\n\ \t},\n\ \n\ \tisArray: Array.isArray || function( obj ) {\n\ \t\treturn jQuery.type(obj) === \"array\";\n\ \t},\n\ \n\ \tisWindow: function( obj ) {\n\ \t\treturn obj != null && obj == obj.window;\n\ \t},\n\ \n\ \tisNumeric: function( obj ) {\n\ \t\treturn !isNaN( parseFloat(obj) ) && isFinite( obj );\n\ \t},\n\ \n\ \ttype: function( obj ) {\n\ \t\tif ( obj == null ) {\n\ \t\t\treturn String( obj );\n\ \t\t}\n\ \t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\ \t\t\tclass2type[ core_toString.call(obj) ] || \"object\" :\n\ \t\t\ttypeof obj;\n\ \t},\n\ \n\ \tisPlainObject: function( obj ) {\n\ \t\t// Must be an Object.\n\ \t\t// Because of IE, we also have to check the presence of the constructor property.\n\ \t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\ \t\tif ( !obj || jQuery.type(obj) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\ \t\t\treturn false;\n\ \t\t}\n\ \n\ \t\ttry {\n\ \t\t\t// Not own constructor property must be Object\n\ \t\t\tif ( obj.constructor &&\n\ \t\t\t\t!core_hasOwn.call(obj, \"constructor\") &&\n\ \t\t\t\t!core_hasOwn.call(obj.constructor.prototype, \"isPrototypeOf\") ) {\n\ \t\t\t\treturn false;\n\ \t\t\t}\n\ \t\t} catch ( e ) {\n\ \t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\ \t\t\treturn false;\n\ \t\t}\n\ \n\ \t\t// Own properties are enumerated firstly, so to speed up,\n\ \t\t// if last one is own, then all properties are own.\n\ \n\ \t\tvar key;\n\ \t\tfor ( key in obj ) {}\n\ \n\ \t\treturn key === undefined || core_hasOwn.call( obj, key );\n\ \t},\n\ \n\ \tisEmptyObject: function( obj ) {\n\ \t\tvar name;\n\ \t\tfor ( name in obj ) {\n\ \t\t\treturn false;\n\ \t\t}\n\ \t\treturn true;\n\ \t},\n\ \n\ \terror: function( msg ) {\n\ \t\tthrow new Error( msg );\n\ \t},\n\ \n\ \t// data: string of html\n\ \t// context (optional): If specified, the fragment will be created in this context, defaults to document\n\ \t// keepScripts (optional): If true, will include scripts passed in the html string\n\ \tparseHTML: function( data, context, keepScripts ) {\n\ \t\tif ( !data || typeof data !== \"string\" ) {\n\ \t\t\treturn null;\n\ \t\t}\n\ \t\tif ( typeof context === \"boolean\" ) {\n\ \t\t\tkeepScripts = context;\n\ \t\t\tcontext = false;\n\ \t\t}\n\ \t\tcontext = context || document;\n\ \n\ \t\tvar parsed = rsingleTag.exec( data ),\n\ \t\t\tscripts = !keepScripts && [];\n\ \n\ \t\t// Single tag\n\ \t\tif ( parsed ) {\n\ \t\t\treturn [ context.createElement( parsed[1] ) ];\n\ \t\t}\n\ \n\ \t\tparsed = jQuery.buildFragment( [ data ], context, scripts );\n\ \t\tif ( scripts ) {\n\ \t\t\tjQuery( scripts ).remove();\n\ \t\t}\n\ \t\treturn jQuery.merge( [], parsed.childNodes );\n\ \t},\n\ \n\ \tparseJSON: function( data ) {\n\ \t\t// Attempt to parse using the native JSON parser first\n\ \t\tif ( window.JSON && window.JSON.parse ) {\n\ \t\t\treturn window.JSON.parse( data );\n\ \t\t}\n\ \n\ \t\tif ( data === null ) {\n\ \t\t\treturn data;\n\ \t\t}\n\ \n\ \t\tif ( typeof data === \"string\" ) {\n\ \n\ \t\t\t// Make sure leading/trailing whitespace is removed (IE can't handle it)\n\ \t\t\tdata = jQuery.trim( data );\n\ \n\ \t\t\tif ( data ) {\n\ \t\t\t\t// Make sure the incoming data is actual JSON\n\ \t\t\t\t// Logic borrowed from http://json.org/json2.js\n\ \t\t\t\tif ( rvalidchars.test( data.replace( rvalidescape, \"@\" )\n\ \t\t\t\t\t.replace( rvalidtokens, \"]\" )\n\ \t\t\t\t\t.replace( rvalidbraces, \"\")) ) {\n\ \n\ \t\t\t\t\treturn ( new Function( \"return \" + data ) )();\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\tjQuery.error( \"Invalid JSON: \" + data );\n\ \t},\n\ \n\ \t// Cross-browser xml parsing\n\ \tparseXML: function( data ) {\n\ \t\tvar xml, tmp;\n\ \t\tif ( !data || typeof data !== \"string\" ) {\n\ \t\t\treturn null;\n\ \t\t}\n\ \t\ttry {\n\ \t\t\tif ( window.DOMParser ) { // Standard\n\ \t\t\t\ttmp = new DOMParser();\n\ \t\t\t\txml = tmp.parseFromString( data , \"text/xml\" );\n\ \t\t\t} else { // IE\n\ \t\t\t\txml = new ActiveXObject( \"Microsoft.XMLDOM\" );\n\ \t\t\t\txml.async = \"false\";\n\ \t\t\t\txml.loadXML( data );\n\ \t\t\t}\n\ \t\t} catch( e ) {\n\ \t\t\txml = undefined;\n\ \t\t}\n\ \t\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\ \t\t\tjQuery.error( \"Invalid XML: \" + data );\n\ \t\t}\n\ \t\treturn xml;\n\ \t},\n\ \n\ \tnoop: function() {},\n\ \n\ \t// Evaluates a script in a global context\n\ \t// Workarounds based on findings by Jim Driscoll\n\ \t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\ \tglobalEval: function( data ) {\n\ \t\tif ( data && jQuery.trim( data ) ) {\n\ \t\t\t// We use execScript on Internet Explorer\n\ \t\t\t// We use an anonymous function so that context is window\n\ \t\t\t// rather than jQuery in Firefox\n\ \t\t\t( window.execScript || function( data ) {\n\ \t\t\t\twindow[ \"eval\" ].call( window, data );\n\ \t\t\t} )( data );\n\ \t\t}\n\ \t},\n\ \n\ \t// Convert dashed to camelCase; used by the css and data modules\n\ \t// Microsoft forgot to hump their vendor prefix (#9572)\n\ \tcamelCase: function( string ) {\n\ \t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\ \t},\n\ \n\ \tnodeName: function( elem, name ) {\n\ \t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\ \t},\n\ \n\ \t// args is for internal usage only\n\ \teach: function( obj, callback, args ) {\n\ \t\tvar value,\n\ \t\t\ti = 0,\n\ \t\t\tlength = obj.length,\n\ \t\t\tisArray = isArraylike( obj );\n\ \n\ \t\tif ( args ) {\n\ \t\t\tif ( isArray ) {\n\ \t\t\t\tfor ( ; i < length; i++ ) {\n\ \t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\ \n\ \t\t\t\t\tif ( value === false ) {\n\ \t\t\t\t\t\tbreak;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t} else {\n\ \t\t\t\tfor ( i in obj ) {\n\ \t\t\t\t\tvalue = callback.apply( obj[ i ], args );\n\ \n\ \t\t\t\t\tif ( value === false ) {\n\ \t\t\t\t\t\tbreak;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t// A special, fast, case for the most common use of each\n\ \t\t} else {\n\ \t\t\tif ( isArray ) {\n\ \t\t\t\tfor ( ; i < length; i++ ) {\n\ \t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\ \n\ \t\t\t\t\tif ( value === false ) {\n\ \t\t\t\t\t\tbreak;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t} else {\n\ \t\t\t\tfor ( i in obj ) {\n\ \t\t\t\t\tvalue = callback.call( obj[ i ], i, obj[ i ] );\n\ \n\ \t\t\t\t\tif ( value === false ) {\n\ \t\t\t\t\t\tbreak;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn obj;\n\ \t},\n\ \n\ \t// Use native String.trim function wherever possible\n\ \ttrim: core_trim && !core_trim.call(\"\\uFEFF\\xA0\") ?\n\ \t\tfunction( text ) {\n\ \t\t\treturn text == null ?\n\ \t\t\t\t\"\" :\n\ \t\t\t\tcore_trim.call( text );\n\ \t\t} :\n\ \n\ \t\t// Otherwise use our own trimming functionality\n\ \t\tfunction( text ) {\n\ \t\t\treturn text == null ?\n\ \t\t\t\t\"\" :\n\ \t\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\ \t\t},\n\ \n\ \t// results is for internal usage only\n\ \tmakeArray: function( arr, results ) {\n\ \t\tvar ret = results || [];\n\ \n\ \t\tif ( arr != null ) {\n\ \t\t\tif ( isArraylike( Object(arr) ) ) {\n\ \t\t\t\tjQuery.merge( ret,\n\ \t\t\t\t\ttypeof arr === \"string\" ?\n\ \t\t\t\t\t[ arr ] : arr\n\ \t\t\t\t);\n\ \t\t\t} else {\n\ \t\t\t\tcore_push.call( ret, arr );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn ret;\n\ \t},\n\ \n\ \tinArray: function( elem, arr, i ) {\n\ \t\tvar len;\n\ \n\ \t\tif ( arr ) {\n\ \t\t\tif ( core_indexOf ) {\n\ \t\t\t\treturn core_indexOf.call( arr, elem, i );\n\ \t\t\t}\n\ \n\ \t\t\tlen = arr.length;\n\ \t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\ \n\ \t\t\tfor ( ; i < len; i++ ) {\n\ \t\t\t\t// Skip accessing in sparse arrays\n\ \t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\ \t\t\t\t\treturn i;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn -1;\n\ \t},\n\ \n\ \tmerge: function( first, second ) {\n\ \t\tvar l = second.length,\n\ \t\t\ti = first.length,\n\ \t\t\tj = 0;\n\ \n\ \t\tif ( typeof l === \"number\" ) {\n\ \t\t\tfor ( ; j < l; j++ ) {\n\ \t\t\t\tfirst[ i++ ] = second[ j ];\n\ \t\t\t}\n\ \t\t} else {\n\ \t\t\twhile ( second[j] !== undefined ) {\n\ \t\t\t\tfirst[ i++ ] = second[ j++ ];\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\tfirst.length = i;\n\ \n\ \t\treturn first;\n\ \t},\n\ \n\ \tgrep: function( elems, callback, inv ) {\n\ \t\tvar retVal,\n\ \t\t\tret = [],\n\ \t\t\ti = 0,\n\ \t\t\tlength = elems.length;\n\ \t\tinv = !!inv;\n\ \n\ \t\t// Go through the array, only saving the items\n\ \t\t// that pass the validator function\n\ \t\tfor ( ; i < length; i++ ) {\n\ \t\t\tretVal = !!callback( elems[ i ], i );\n\ \t\t\tif ( inv !== retVal ) {\n\ \t\t\t\tret.push( elems[ i ] );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn ret;\n\ \t},\n\ \n\ \t// arg is for internal usage only\n\ \tmap: function( elems, callback, arg ) {\n\ \t\tvar value,\n\ \t\t\ti = 0,\n\ \t\t\tlength = elems.length,\n\ \t\t\tisArray = isArraylike( elems ),\n\ \t\t\tret = [];\n\ \n\ \t\t// Go through the array, translating each of the items to their\n\ \t\tif ( isArray ) {\n\ \t\t\tfor ( ; i < length; i++ ) {\n\ \t\t\t\tvalue = callback( elems[ i ], i, arg );\n\ \n\ \t\t\t\tif ( value != null ) {\n\ \t\t\t\t\tret[ ret.length ] = value;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t// Go through every key on the object,\n\ \t\t} else {\n\ \t\t\tfor ( i in elems ) {\n\ \t\t\t\tvalue = callback( elems[ i ], i, arg );\n\ \n\ \t\t\t\tif ( value != null ) {\n\ \t\t\t\t\tret[ ret.length ] = value;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Flatten any nested arrays\n\ \t\treturn core_concat.apply( [], ret );\n\ \t},\n\ \n\ \t// A global GUID counter for objects\n\ \tguid: 1,\n\ \n\ \t// Bind a function to a context, optionally partially applying any\n\ \t// arguments.\n\ \tproxy: function( fn, context ) {\n\ \t\tvar args, proxy, tmp;\n\ \n\ \t\tif ( typeof context === \"string\" ) {\n\ \t\t\ttmp = fn[ context ];\n\ \t\t\tcontext = fn;\n\ \t\t\tfn = tmp;\n\ \t\t}\n\ \n\ \t\t// Quick check to determine if target is callable, in the spec\n\ \t\t// this throws a TypeError, but we will just return undefined.\n\ \t\tif ( !jQuery.isFunction( fn ) ) {\n\ \t\t\treturn undefined;\n\ \t\t}\n\ \n\ \t\t// Simulated bind\n\ \t\targs = core_slice.call( arguments, 2 );\n\ \t\tproxy = function() {\n\ \t\t\treturn fn.apply( context || this, args.concat( core_slice.call( arguments ) ) );\n\ \t\t};\n\ \n\ \t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\ \t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\ \n\ \t\treturn proxy;\n\ \t},\n\ \n\ \t// Multifunctional method to get and set values of a collection\n\ \t// The value/s can optionally be executed if it's a function\n\ \taccess: function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\ \t\tvar i = 0,\n\ \t\t\tlength = elems.length,\n\ \t\t\tbulk = key == null;\n\ \n\ \t\t// Sets many values\n\ \t\tif ( jQuery.type( key ) === \"object\" ) {\n\ \t\t\tchainable = true;\n\ \t\t\tfor ( i in key ) {\n\ \t\t\t\tjQuery.access( elems, fn, i, key[i], true, emptyGet, raw );\n\ \t\t\t}\n\ \n\ \t\t// Sets one value\n\ \t\t} else if ( value !== undefined ) {\n\ \t\t\tchainable = true;\n\ \n\ \t\t\tif ( !jQuery.isFunction( value ) ) {\n\ \t\t\t\traw = true;\n\ \t\t\t}\n\ \n\ \t\t\tif ( bulk ) {\n\ \t\t\t\t// Bulk operations run against the entire set\n\ \t\t\t\tif ( raw ) {\n\ \t\t\t\t\tfn.call( elems, value );\n\ \t\t\t\t\tfn = null;\n\ \n\ \t\t\t\t// ...except when executing function values\n\ \t\t\t\t} else {\n\ \t\t\t\t\tbulk = fn;\n\ \t\t\t\t\tfn = function( elem, key, value ) {\n\ \t\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\ \t\t\t\t\t};\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\tif ( fn ) {\n\ \t\t\t\tfor ( ; i < length; i++ ) {\n\ \t\t\t\t\tfn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn chainable ?\n\ \t\t\telems :\n\ \n\ \t\t\t// Gets\n\ \t\t\tbulk ?\n\ \t\t\t\tfn.call( elems ) :\n\ \t\t\t\tlength ? fn( elems[0], key ) : emptyGet;\n\ \t},\n\ \n\ \tnow: function() {\n\ \t\treturn ( new Date() ).getTime();\n\ \t}\n\ });\n\ \n\ jQuery.ready.promise = function( obj ) {\n\ \tif ( !readyList ) {\n\ \n\ \t\treadyList = jQuery.Deferred();\n\ \n\ \t\t// Catch cases where $(document).ready() is called after the browser event has already occurred.\n\ \t\t// we once tried to use readyState \"interactive\" here, but it caused issues like the one\n\ \t\t// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15\n\ \t\tif ( document.readyState === \"complete\" ) {\n\ \t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\ \t\t\tsetTimeout( jQuery.ready );\n\ \n\ \t\t// Standards-based browsers support DOMContentLoaded\n\ \t\t} else if ( document.addEventListener ) {\n\ \t\t\t// Use the handy event callback\n\ \t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed, false );\n\ \n\ \t\t\t// A fallback to window.onload, that will always work\n\ \t\t\twindow.addEventListener( \"load\", completed, false );\n\ \n\ \t\t// If IE event model is used\n\ \t\t} else {\n\ \t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\ \t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\ \n\ \t\t\t// A fallback to window.onload, that will always work\n\ \t\t\twindow.attachEvent( \"onload\", completed );\n\ \n\ \t\t\t// If IE and not a frame\n\ \t\t\t// continually check to see if the document is ready\n\ \t\t\tvar top = false;\n\ \n\ \t\t\ttry {\n\ \t\t\t\ttop = window.frameElement == null && document.documentElement;\n\ \t\t\t} catch(e) {}\n\ \n\ \t\t\tif ( top && top.doScroll ) {\n\ \t\t\t\t(function doScrollCheck() {\n\ \t\t\t\t\tif ( !jQuery.isReady ) {\n\ \n\ \t\t\t\t\t\ttry {\n\ \t\t\t\t\t\t\t// Use the trick by Diego Perini\n\ \t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\ \t\t\t\t\t\t\ttop.doScroll(\"left\");\n\ \t\t\t\t\t\t} catch(e) {\n\ \t\t\t\t\t\t\treturn setTimeout( doScrollCheck, 50 );\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\t// detach all dom ready events\n\ \t\t\t\t\t\tdetach();\n\ \n\ \t\t\t\t\t\t// and execute any waiting functions\n\ \t\t\t\t\t\tjQuery.ready();\n\ \t\t\t\t\t}\n\ \t\t\t\t})();\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \treturn readyList.promise( obj );\n\ };\n\ \n\ // Populate the class2type map\n\ jQuery.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"), function(i, name) {\n\ \tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n\ });\n\ \n\ function isArraylike( obj ) {\n\ \tvar length = obj.length,\n\ \t\ttype = jQuery.type( obj );\n\ \n\ \tif ( jQuery.isWindow( obj ) ) {\n\ \t\treturn false;\n\ \t}\n\ \n\ \tif ( obj.nodeType === 1 && length ) {\n\ \t\treturn true;\n\ \t}\n\ \n\ \treturn type === \"array\" || type !== \"function\" &&\n\ \t\t( length === 0 ||\n\ \t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj );\n\ }\n\ \n\ // All jQuery objects should point back to these\n\ rootjQuery = jQuery(document);\n\ // String to Object options format cache\n\ var optionsCache = {};\n\ \n\ // Convert String-formatted options into Object-formatted ones and store in cache\n\ function createOptions( options ) {\n\ \tvar object = optionsCache[ options ] = {};\n\ \tjQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) {\n\ \t\tobject[ flag ] = true;\n\ \t});\n\ \treturn object;\n\ }\n\ \n\ /*\n\ * Create a callback list using the following parameters:\n\ *\n\ *\toptions: an optional list of space-separated options that will change how\n\ *\t\t\tthe callback list behaves or a more traditional option object\n\ *\n\ * By default a callback list will act like an event callback list and can be\n\ * \"fired\" multiple times.\n\ *\n\ * Possible options:\n\ *\n\ *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n\ *\n\ *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n\ *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n\ *\t\t\t\t\tvalues (like a Deferred)\n\ *\n\ *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n\ *\n\ *\tstopOnFalse:\tinterrupt callings when a callback returns false\n\ *\n\ */\n\ jQuery.Callbacks = function( options ) {\n\ \n\ \t// Convert options from String-formatted to Object-formatted if needed\n\ \t// (we check in cache first)\n\ \toptions = typeof options === \"string\" ?\n\ \t\t( optionsCache[ options ] || createOptions( options ) ) :\n\ \t\tjQuery.extend( {}, options );\n\ \n\ \tvar // Flag to know if list is currently firing\n\ \t\tfiring,\n\ \t\t// Last fire value (for non-forgettable lists)\n\ \t\tmemory,\n\ \t\t// Flag to know if list was already fired\n\ \t\tfired,\n\ \t\t// End of the loop when firing\n\ \t\tfiringLength,\n\ \t\t// Index of currently firing callback (modified by remove if needed)\n\ \t\tfiringIndex,\n\ \t\t// First callback to fire (used internally by add and fireWith)\n\ \t\tfiringStart,\n\ \t\t// Actual callback list\n\ \t\tlist = [],\n\ \t\t// Stack of fire calls for repeatable lists\n\ \t\tstack = !options.once && [],\n\ \t\t// Fire callbacks\n\ \t\tfire = function( data ) {\n\ \t\t\tmemory = options.memory && data;\n\ \t\t\tfired = true;\n\ \t\t\tfiringIndex = firingStart || 0;\n\ \t\t\tfiringStart = 0;\n\ \t\t\tfiringLength = list.length;\n\ \t\t\tfiring = true;\n\ \t\t\tfor ( ; list && firingIndex < firingLength; firingIndex++ ) {\n\ \t\t\t\tif ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {\n\ \t\t\t\t\tmemory = false; // To prevent further calls using add\n\ \t\t\t\t\tbreak;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t\tfiring = false;\n\ \t\t\tif ( list ) {\n\ \t\t\t\tif ( stack ) {\n\ \t\t\t\t\tif ( stack.length ) {\n\ \t\t\t\t\t\tfire( stack.shift() );\n\ \t\t\t\t\t}\n\ \t\t\t\t} else if ( memory ) {\n\ \t\t\t\t\tlist = [];\n\ \t\t\t\t} else {\n\ \t\t\t\t\tself.disable();\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t},\n\ \t\t// Actual Callbacks object\n\ \t\tself = {\n\ \t\t\t// Add a callback or a collection of callbacks to the list\n\ \t\t\tadd: function() {\n\ \t\t\t\tif ( list ) {\n\ \t\t\t\t\t// First, we save the current length\n\ \t\t\t\t\tvar start = list.length;\n\ \t\t\t\t\t(function add( args ) {\n\ \t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\ \t\t\t\t\t\t\tvar type = jQuery.type( arg );\n\ \t\t\t\t\t\t\tif ( type === \"function\" ) {\n\ \t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\ \t\t\t\t\t\t\t\t\tlist.push( arg );\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t} else if ( arg && arg.length && type !== \"string\" ) {\n\ \t\t\t\t\t\t\t\t// Inspect recursively\n\ \t\t\t\t\t\t\t\tadd( arg );\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t});\n\ \t\t\t\t\t})( arguments );\n\ \t\t\t\t\t// Do we need to add the callbacks to the\n\ \t\t\t\t\t// current firing batch?\n\ \t\t\t\t\tif ( firing ) {\n\ \t\t\t\t\t\tfiringLength = list.length;\n\ \t\t\t\t\t// With memory, if we're not firing then\n\ \t\t\t\t\t// we should call right away\n\ \t\t\t\t\t} else if ( memory ) {\n\ \t\t\t\t\t\tfiringStart = start;\n\ \t\t\t\t\t\tfire( memory );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// Remove a callback from the list\n\ \t\t\tremove: function() {\n\ \t\t\t\tif ( list ) {\n\ \t\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\ \t\t\t\t\t\tvar index;\n\ \t\t\t\t\t\twhile( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\ \t\t\t\t\t\t\tlist.splice( index, 1 );\n\ \t\t\t\t\t\t\t// Handle firing indexes\n\ \t\t\t\t\t\t\tif ( firing ) {\n\ \t\t\t\t\t\t\t\tif ( index <= firingLength ) {\n\ \t\t\t\t\t\t\t\t\tfiringLength--;\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t\tif ( index <= firingIndex ) {\n\ \t\t\t\t\t\t\t\t\tfiringIndex--;\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t});\n\ \t\t\t\t}\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// Check if a given callback is in the list.\n\ \t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\ \t\t\thas: function( fn ) {\n\ \t\t\t\treturn fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );\n\ \t\t\t},\n\ \t\t\t// Remove all callbacks from the list\n\ \t\t\tempty: function() {\n\ \t\t\t\tlist = [];\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// Have the list do nothing anymore\n\ \t\t\tdisable: function() {\n\ \t\t\t\tlist = stack = memory = undefined;\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// Is it disabled?\n\ \t\t\tdisabled: function() {\n\ \t\t\t\treturn !list;\n\ \t\t\t},\n\ \t\t\t// Lock the list in its current state\n\ \t\t\tlock: function() {\n\ \t\t\t\tstack = undefined;\n\ \t\t\t\tif ( !memory ) {\n\ \t\t\t\t\tself.disable();\n\ \t\t\t\t}\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// Is it locked?\n\ \t\t\tlocked: function() {\n\ \t\t\t\treturn !stack;\n\ \t\t\t},\n\ \t\t\t// Call all callbacks with the given context and arguments\n\ \t\t\tfireWith: function( context, args ) {\n\ \t\t\t\targs = args || [];\n\ \t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\ \t\t\t\tif ( list && ( !fired || stack ) ) {\n\ \t\t\t\t\tif ( firing ) {\n\ \t\t\t\t\t\tstack.push( args );\n\ \t\t\t\t\t} else {\n\ \t\t\t\t\t\tfire( args );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// Call all the callbacks with the given arguments\n\ \t\t\tfire: function() {\n\ \t\t\t\tself.fireWith( this, arguments );\n\ \t\t\t\treturn this;\n\ \t\t\t},\n\ \t\t\t// To know if the callbacks have already been called at least once\n\ \t\t\tfired: function() {\n\ \t\t\t\treturn !!fired;\n\ \t\t\t}\n\ \t\t};\n\ \n\ \treturn self;\n\ };\n\ jQuery.extend({\n\ \n\ \tDeferred: function( func ) {\n\ \t\tvar tuples = [\n\ \t\t\t\t// action, add listener, listener list, final state\n\ \t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks(\"once memory\"), \"resolved\" ],\n\ \t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks(\"once memory\"), \"rejected\" ],\n\ \t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks(\"memory\") ]\n\ \t\t\t],\n\ \t\t\tstate = \"pending\",\n\ \t\t\tpromise = {\n\ \t\t\t\tstate: function() {\n\ \t\t\t\t\treturn state;\n\ \t\t\t\t},\n\ \t\t\t\talways: function() {\n\ \t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\ \t\t\t\t\treturn this;\n\ \t\t\t\t},\n\ \t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\ \t\t\t\t\tvar fns = arguments;\n\ \t\t\t\t\treturn jQuery.Deferred(function( newDefer ) {\n\ \t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\ \t\t\t\t\t\t\tvar action = tuple[ 0 ],\n\ \t\t\t\t\t\t\t\tfn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\ \t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\ \t\t\t\t\t\t\tdeferred[ tuple[1] ](function() {\n\ \t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\ \t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\ \t\t\t\t\t\t\t\t\treturned.promise()\n\ \t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\ \t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject )\n\ \t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify );\n\ \t\t\t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\t\t\tnewDefer[ action + \"With\" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t});\n\ \t\t\t\t\t\t});\n\ \t\t\t\t\t\tfns = null;\n\ \t\t\t\t\t}).promise();\n\ \t\t\t\t},\n\ \t\t\t\t// Get a promise for this deferred\n\ \t\t\t\t// If obj is provided, the promise aspect is added to the object\n\ \t\t\t\tpromise: function( obj ) {\n\ \t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\ \t\t\t\t}\n\ \t\t\t},\n\ \t\t\tdeferred = {};\n\ \n\ \t\t// Keep pipe for back-compat\n\ \t\tpromise.pipe = promise.then;\n\ \n\ \t\t// Add list-specific methods\n\ \t\tjQuery.each( tuples, function( i, tuple ) {\n\ \t\t\tvar list = tuple[ 2 ],\n\ \t\t\t\tstateString = tuple[ 3 ];\n\ \n\ \t\t\t// promise[ done | fail | progress ] = list.add\n\ \t\t\tpromise[ tuple[1] ] = list.add;\n\ \n\ \t\t\t// Handle state\n\ \t\t\tif ( stateString ) {\n\ \t\t\t\tlist.add(function() {\n\ \t\t\t\t\t// state = [ resolved | rejected ]\n\ \t\t\t\t\tstate = stateString;\n\ \n\ \t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\ \t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\ \t\t\t}\n\ \n\ \t\t\t// deferred[ resolve | reject | notify ]\n\ \t\t\tdeferred[ tuple[0] ] = function() {\n\ \t\t\t\tdeferred[ tuple[0] + \"With\" ]( this === deferred ? promise : this, arguments );\n\ \t\t\t\treturn this;\n\ \t\t\t};\n\ \t\t\tdeferred[ tuple[0] + \"With\" ] = list.fireWith;\n\ \t\t});\n\ \n\ \t\t// Make the deferred a promise\n\ \t\tpromise.promise( deferred );\n\ \n\ \t\t// Call given func if any\n\ \t\tif ( func ) {\n\ \t\t\tfunc.call( deferred, deferred );\n\ \t\t}\n\ \n\ \t\t// All done!\n\ \t\treturn deferred;\n\ \t},\n\ \n\ \t// Deferred helper\n\ \twhen: function( subordinate /* , ..., subordinateN */ ) {\n\ \t\tvar i = 0,\n\ \t\t\tresolveValues = core_slice.call( arguments ),\n\ \t\t\tlength = resolveValues.length,\n\ \n\ \t\t\t// the count of uncompleted subordinates\n\ \t\t\tremaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\ \n\ \t\t\t// the master Deferred. If resolveValues consist of only a single Deferred, just use that.\n\ \t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\ \n\ \t\t\t// Update function for both resolve and progress values\n\ \t\t\tupdateFunc = function( i, contexts, values ) {\n\ \t\t\t\treturn function( value ) {\n\ \t\t\t\t\tcontexts[ i ] = this;\n\ \t\t\t\t\tvalues[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value;\n\ \t\t\t\t\tif( values === progressValues ) {\n\ \t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\ \t\t\t\t\t} else if ( !( --remaining ) ) {\n\ \t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\ \t\t\t\t\t}\n\ \t\t\t\t};\n\ \t\t\t},\n\ \n\ \t\t\tprogressValues, progressContexts, resolveContexts;\n\ \n\ \t\t// add listeners to Deferred subordinates; treat others as resolved\n\ \t\tif ( length > 1 ) {\n\ \t\t\tprogressValues = new Array( length );\n\ \t\t\tprogressContexts = new Array( length );\n\ \t\t\tresolveContexts = new Array( length );\n\ \t\t\tfor ( ; i < length; i++ ) {\n\ \t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\ \t\t\t\t\tresolveValues[ i ].promise()\n\ \t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\ \t\t\t\t\t\t.fail( deferred.reject )\n\ \t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) );\n\ \t\t\t\t} else {\n\ \t\t\t\t\t--remaining;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// if we're not waiting on anything, resolve the master\n\ \t\tif ( !remaining ) {\n\ \t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\ \t\t}\n\ \n\ \t\treturn deferred.promise();\n\ \t}\n\ });\n\ jQuery.support = (function() {\n\ \n\ \tvar support, all, a,\n\ \t\tinput, select, fragment,\n\ \t\topt, eventName, isSupported, i,\n\ \t\tdiv = document.createElement(\"div\");\n\ \n\ \t// Setup\n\ \tdiv.setAttribute( \"className\", \"t\" );\n\ \tdiv.innerHTML = \"
a\";\n\ \n\ \t// Support tests won't run in some limited or non-browser environments\n\ \tall = div.getElementsByTagName(\"*\");\n\ \ta = div.getElementsByTagName(\"a\")[ 0 ];\n\ \tif ( !all || !a || !all.length ) {\n\ \t\treturn {};\n\ \t}\n\ \n\ \t// First batch of tests\n\ \tselect = document.createElement(\"select\");\n\ \topt = select.appendChild( document.createElement(\"option\") );\n\ \tinput = div.getElementsByTagName(\"input\")[ 0 ];\n\ \n\ \ta.style.cssText = \"top:1px;float:left;opacity:.5\";\n\ \tsupport = {\n\ \t\t// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\ \t\tgetSetAttribute: div.className !== \"t\",\n\ \n\ \t\t// IE strips leading whitespace when .innerHTML is used\n\ \t\tleadingWhitespace: div.firstChild.nodeType === 3,\n\ \n\ \t\t// Make sure that tbody elements aren't automatically inserted\n\ \t\t// IE will insert them into empty tables\n\ \t\ttbody: !div.getElementsByTagName(\"tbody\").length,\n\ \n\ \t\t// Make sure that link elements get serialized correctly by innerHTML\n\ \t\t// This requires a wrapper element in IE\n\ \t\thtmlSerialize: !!div.getElementsByTagName(\"link\").length,\n\ \n\ \t\t// Get the style information from getAttribute\n\ \t\t// (IE uses .cssText instead)\n\ \t\tstyle: /top/.test( a.getAttribute(\"style\") ),\n\ \n\ \t\t// Make sure that URLs aren't manipulated\n\ \t\t// (IE normalizes it by default)\n\ \t\threfNormalized: a.getAttribute(\"href\") === \"/a\",\n\ \n\ \t\t// Make sure that element opacity exists\n\ \t\t// (IE uses filter instead)\n\ \t\t// Use a regex to work around a WebKit issue. See #5145\n\ \t\topacity: /^0.5/.test( a.style.opacity ),\n\ \n\ \t\t// Verify style float existence\n\ \t\t// (IE uses styleFloat instead of cssFloat)\n\ \t\tcssFloat: !!a.style.cssFloat,\n\ \n\ \t\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\ \t\tcheckOn: !!input.value,\n\ \n\ \t\t// Make sure that a selected-by-default option has a working selected property.\n\ \t\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\ \t\toptSelected: opt.selected,\n\ \n\ \t\t// Tests for enctype support on a form (#6743)\n\ \t\tenctype: !!document.createElement(\"form\").enctype,\n\ \n\ \t\t// Makes sure cloning an html5 element does not cause problems\n\ \t\t// Where outerHTML is undefined, this still works\n\ \t\thtml5Clone: document.createElement(\"nav\").cloneNode( true ).outerHTML !== \"<:nav>\",\n\ \n\ \t\t// jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode\n\ \t\tboxModel: document.compatMode === \"CSS1Compat\",\n\ \n\ \t\t// Will be defined later\n\ \t\tdeleteExpando: true,\n\ \t\tnoCloneEvent: true,\n\ \t\tinlineBlockNeedsLayout: false,\n\ \t\tshrinkWrapBlocks: false,\n\ \t\treliableMarginRight: true,\n\ \t\tboxSizingReliable: true,\n\ \t\tpixelPosition: false\n\ \t};\n\ \n\ \t// Make sure checked status is properly cloned\n\ \tinput.checked = true;\n\ \tsupport.noCloneChecked = input.cloneNode( true ).checked;\n\ \n\ \t// Make sure that the options inside disabled selects aren't marked as disabled\n\ \t// (WebKit marks them as disabled)\n\ \tselect.disabled = true;\n\ \tsupport.optDisabled = !opt.disabled;\n\ \n\ \t// Support: IE<9\n\ \ttry {\n\ \t\tdelete div.test;\n\ \t} catch( e ) {\n\ \t\tsupport.deleteExpando = false;\n\ \t}\n\ \n\ \t// Check if we can trust getAttribute(\"value\")\n\ \tinput = document.createElement(\"input\");\n\ \tinput.setAttribute( \"value\", \"\" );\n\ \tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\ \n\ \t// Check if an input maintains its value after becoming a radio\n\ \tinput.value = \"t\";\n\ \tinput.setAttribute( \"type\", \"radio\" );\n\ \tsupport.radioValue = input.value === \"t\";\n\ \n\ \t// #11217 - WebKit loses check when the name is after the checked attribute\n\ \tinput.setAttribute( \"checked\", \"t\" );\n\ \tinput.setAttribute( \"name\", \"t\" );\n\ \n\ \tfragment = document.createDocumentFragment();\n\ \tfragment.appendChild( input );\n\ \n\ \t// Check if a disconnected checkbox will retain its checked\n\ \t// value of true after appended to the DOM (IE6/7)\n\ \tsupport.appendChecked = input.checked;\n\ \n\ \t// WebKit doesn't clone checked state correctly in fragments\n\ \tsupport.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\ \n\ \t// Support: IE<9\n\ \t// Opera does not clone events (and typeof div.attachEvent === undefined).\n\ \t// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()\n\ \tif ( div.attachEvent ) {\n\ \t\tdiv.attachEvent( \"onclick\", function() {\n\ \t\t\tsupport.noCloneEvent = false;\n\ \t\t});\n\ \n\ \t\tdiv.cloneNode( true ).click();\n\ \t}\n\ \n\ \t// Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event)\n\ \t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php\n\ \tfor ( i in { submit: true, change: true, focusin: true }) {\n\ \t\tdiv.setAttribute( eventName = \"on\" + i, \"t\" );\n\ \n\ \t\tsupport[ i + \"Bubbles\" ] = eventName in window || div.attributes[ eventName ].expando === false;\n\ \t}\n\ \n\ \tdiv.style.backgroundClip = \"content-box\";\n\ \tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\ \tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\ \n\ \t// Run tests that need a body at doc ready\n\ \tjQuery(function() {\n\ \t\tvar container, marginDiv, tds,\n\ \t\t\tdivReset = \"padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;\",\n\ \t\t\tbody = document.getElementsByTagName(\"body\")[0];\n\ \n\ \t\tif ( !body ) {\n\ \t\t\t// Return for frameset docs that don't have a body\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\tcontainer = document.createElement(\"div\");\n\ \t\tcontainer.style.cssText = \"border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px\";\n\ \n\ \t\tbody.appendChild( container ).appendChild( div );\n\ \n\ \t\t// Support: IE8\n\ \t\t// Check if table cells still have offsetWidth/Height when they are set\n\ \t\t// to display:none and there are still other visible table cells in a\n\ \t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\ \t\t// determining if an element has been hidden directly using\n\ \t\t// display:none (it is still safe to use offsets if a parent element is\n\ \t\t// hidden; don safety goggles and see bug #4512 for more information).\n\ \t\tdiv.innerHTML = \"
t
\";\n\ \t\ttds = div.getElementsByTagName(\"td\");\n\ \t\ttds[ 0 ].style.cssText = \"padding:0;margin:0;border:0;display:none\";\n\ \t\tisSupported = ( tds[ 0 ].offsetHeight === 0 );\n\ \n\ \t\ttds[ 0 ].style.display = \"\";\n\ \t\ttds[ 1 ].style.display = \"none\";\n\ \n\ \t\t// Support: IE8\n\ \t\t// Check if empty table cells still have offsetWidth/Height\n\ \t\tsupport.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );\n\ \n\ \t\t// Check box-sizing and margin behavior\n\ \t\tdiv.innerHTML = \"\";\n\ \t\tdiv.style.cssText = \"box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;\";\n\ \t\tsupport.boxSizing = ( div.offsetWidth === 4 );\n\ \t\tsupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 );\n\ \n\ \t\t// Use window.getComputedStyle because jsdom on node.js will break without it.\n\ \t\tif ( window.getComputedStyle ) {\n\ \t\t\tsupport.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== \"1%\";\n\ \t\t\tsupport.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: \"4px\" } ).width === \"4px\";\n\ \n\ \t\t\t// Check if div with explicit width and no margin-right incorrectly\n\ \t\t\t// gets computed margin-right based on width of container. (#3333)\n\ \t\t\t// Fails in WebKit before Feb 2011 nightlies\n\ \t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\ \t\t\tmarginDiv = div.appendChild( document.createElement(\"div\") );\n\ \t\t\tmarginDiv.style.cssText = div.style.cssText = divReset;\n\ \t\t\tmarginDiv.style.marginRight = marginDiv.style.width = \"0\";\n\ \t\t\tdiv.style.width = \"1px\";\n\ \n\ \t\t\tsupport.reliableMarginRight =\n\ \t\t\t\t!parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight );\n\ \t\t}\n\ \n\ \t\tif ( typeof div.style.zoom !== core_strundefined ) {\n\ \t\t\t// Support: IE<8\n\ \t\t\t// Check if natively block-level elements act like inline-block\n\ \t\t\t// elements when setting their display to 'inline' and giving\n\ \t\t\t// them layout\n\ \t\t\tdiv.innerHTML = \"\";\n\ \t\t\tdiv.style.cssText = divReset + \"width:1px;padding:1px;display:inline;zoom:1\";\n\ \t\t\tsupport.inlineBlockNeedsLayout = ( div.offsetWidth === 3 );\n\ \n\ \t\t\t// Support: IE6\n\ \t\t\t// Check if elements with layout shrink-wrap their children\n\ \t\t\tdiv.style.display = \"block\";\n\ \t\t\tdiv.innerHTML = \"
\";\n\ \t\t\tdiv.firstChild.style.width = \"5px\";\n\ \t\t\tsupport.shrinkWrapBlocks = ( div.offsetWidth !== 3 );\n\ \n\ \t\t\tif ( support.inlineBlockNeedsLayout ) {\n\ \t\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\ \t\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\ \t\t\t\t// Support: IE<8\n\ \t\t\t\tbody.style.zoom = 1;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\tbody.removeChild( container );\n\ \n\ \t\t// Null elements to avoid leaks in IE\n\ \t\tcontainer = div = tds = marginDiv = null;\n\ \t});\n\ \n\ \t// Null elements to avoid leaks in IE\n\ \tall = select = fragment = opt = a = input = null;\n\ \n\ \treturn support;\n\ })();\n\ \n\ var rbrace = /(?:\\{[\\s\\S]*\\}|\\[[\\s\\S]*\\])$/,\n\ \trmultiDash = /([A-Z])/g;\n\ \n\ function internalData( elem, name, data, pvt /* Internal Use Only */ ){\n\ \tif ( !jQuery.acceptData( elem ) ) {\n\ \t\treturn;\n\ \t}\n\ \n\ \tvar thisCache, ret,\n\ \t\tinternalKey = jQuery.expando,\n\ \t\tgetByName = typeof name === \"string\",\n\ \n\ \t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\ \t\t// can't GC object references properly across the DOM-JS boundary\n\ \t\tisNode = elem.nodeType,\n\ \n\ \t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\ \t\t// attached directly to the object so GC can occur automatically\n\ \t\tcache = isNode ? jQuery.cache : elem,\n\ \n\ \t\t// Only defining an ID for JS objects if its cache already exists allows\n\ \t\t// the code to shortcut on the same path as a DOM node with no cache\n\ \t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\ \n\ \t// Avoid doing any more work than we need to when trying to get data on an\n\ \t// object that has no data at all\n\ \tif ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) {\n\ \t\treturn;\n\ \t}\n\ \n\ \tif ( !id ) {\n\ \t\t// Only DOM nodes need a new unique ID for each element since their data\n\ \t\t// ends up in the global cache\n\ \t\tif ( isNode ) {\n\ \t\t\telem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++;\n\ \t\t} else {\n\ \t\t\tid = internalKey;\n\ \t\t}\n\ \t}\n\ \n\ \tif ( !cache[ id ] ) {\n\ \t\tcache[ id ] = {};\n\ \n\ \t\t// Avoids exposing jQuery metadata on plain JS objects when the object\n\ \t\t// is serialized using JSON.stringify\n\ \t\tif ( !isNode ) {\n\ \t\t\tcache[ id ].toJSON = jQuery.noop;\n\ \t\t}\n\ \t}\n\ \n\ \t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\ \t// shallow copied over onto the existing cache\n\ \tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\ \t\tif ( pvt ) {\n\ \t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\ \t\t} else {\n\ \t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\ \t\t}\n\ \t}\n\ \n\ \tthisCache = cache[ id ];\n\ \n\ \t// jQuery data() is stored in a separate object inside the object's internal data\n\ \t// cache in order to avoid key collisions between internal data and user-defined\n\ \t// data.\n\ \tif ( !pvt ) {\n\ \t\tif ( !thisCache.data ) {\n\ \t\t\tthisCache.data = {};\n\ \t\t}\n\ \n\ \t\tthisCache = thisCache.data;\n\ \t}\n\ \n\ \tif ( data !== undefined ) {\n\ \t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\ \t}\n\ \n\ \t// Check for both converted-to-camel and non-converted data property names\n\ \t// If a data property was specified\n\ \tif ( getByName ) {\n\ \n\ \t\t// First Try to find as-is property data\n\ \t\tret = thisCache[ name ];\n\ \n\ \t\t// Test for null|undefined property data\n\ \t\tif ( ret == null ) {\n\ \n\ \t\t\t// Try to find the camelCased property\n\ \t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\ \t\t}\n\ \t} else {\n\ \t\tret = thisCache;\n\ \t}\n\ \n\ \treturn ret;\n\ }\n\ \n\ function internalRemoveData( elem, name, pvt ) {\n\ \tif ( !jQuery.acceptData( elem ) ) {\n\ \t\treturn;\n\ \t}\n\ \n\ \tvar i, l, thisCache,\n\ \t\tisNode = elem.nodeType,\n\ \n\ \t\t// See jQuery.data for more information\n\ \t\tcache = isNode ? jQuery.cache : elem,\n\ \t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\ \n\ \t// If there is already no cache entry for this object, there is no\n\ \t// purpose in continuing\n\ \tif ( !cache[ id ] ) {\n\ \t\treturn;\n\ \t}\n\ \n\ \tif ( name ) {\n\ \n\ \t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\ \n\ \t\tif ( thisCache ) {\n\ \n\ \t\t\t// Support array or space separated string names for data keys\n\ \t\t\tif ( !jQuery.isArray( name ) ) {\n\ \n\ \t\t\t\t// try the string as a key before any manipulation\n\ \t\t\t\tif ( name in thisCache ) {\n\ \t\t\t\t\tname = [ name ];\n\ \t\t\t\t} else {\n\ \n\ \t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\ \t\t\t\t\tname = jQuery.camelCase( name );\n\ \t\t\t\t\tif ( name in thisCache ) {\n\ \t\t\t\t\t\tname = [ name ];\n\ \t\t\t\t\t} else {\n\ \t\t\t\t\t\tname = name.split(\" \");\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t} else {\n\ \t\t\t\t// If \"name\" is an array of keys...\n\ \t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\ \t\t\t\t// keys will be converted to camelCase.\n\ \t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\ \t\t\t\t// both plain key and camelCase key. #12786\n\ \t\t\t\t// This will only penalize the array argument path.\n\ \t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\ \t\t\t}\n\ \n\ \t\t\tfor ( i = 0, l = name.length; i < l; i++ ) {\n\ \t\t\t\tdelete thisCache[ name[i] ];\n\ \t\t\t}\n\ \n\ \t\t\t// If there is no data left in the cache, we want to continue\n\ \t\t\t// and let the cache object itself get destroyed\n\ \t\t\tif ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {\n\ \t\t\t\treturn;\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \t// See jQuery.data for more information\n\ \tif ( !pvt ) {\n\ \t\tdelete cache[ id ].data;\n\ \n\ \t\t// Don't destroy the parent cache unless the internal data object\n\ \t\t// had been the only thing left in it\n\ \t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \t}\n\ \n\ \t// Destroy the cache\n\ \tif ( isNode ) {\n\ \t\tjQuery.cleanData( [ elem ], true );\n\ \n\ \t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\ \t} else if ( jQuery.support.deleteExpando || cache != cache.window ) {\n\ \t\tdelete cache[ id ];\n\ \n\ \t// When all else fails, null\n\ \t} else {\n\ \t\tcache[ id ] = null;\n\ \t}\n\ }\n\ \n\ jQuery.extend({\n\ \tcache: {},\n\ \n\ \t// Unique for each copy of jQuery on the page\n\ \t// Non-digits removed to match rinlinejQuery\n\ \texpando: \"jQuery\" + ( core_version + Math.random() ).replace( /\\D/g, \"\" ),\n\ \n\ \t// The following elements throw uncatchable exceptions if you\n\ \t// attempt to add expando properties to them.\n\ \tnoData: {\n\ \t\t\"embed\": true,\n\ \t\t// Ban all objects except for Flash (which handle expandos)\n\ \t\t\"object\": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\",\n\ \t\t\"applet\": true\n\ \t},\n\ \n\ \thasData: function( elem ) {\n\ \t\telem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];\n\ \t\treturn !!elem && !isEmptyDataObject( elem );\n\ \t},\n\ \n\ \tdata: function( elem, name, data ) {\n\ \t\treturn internalData( elem, name, data );\n\ \t},\n\ \n\ \tremoveData: function( elem, name ) {\n\ \t\treturn internalRemoveData( elem, name );\n\ \t},\n\ \n\ \t// For internal use only.\n\ \t_data: function( elem, name, data ) {\n\ \t\treturn internalData( elem, name, data, true );\n\ \t},\n\ \n\ \t_removeData: function( elem, name ) {\n\ \t\treturn internalRemoveData( elem, name, true );\n\ \t},\n\ \n\ \t// A method for determining if a DOM node can handle the data expando\n\ \tacceptData: function( elem ) {\n\ \t\t// Do not set data on non-element because it will not be cleared (#8335).\n\ \t\tif ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) {\n\ \t\t\treturn false;\n\ \t\t}\n\ \n\ \t\tvar noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];\n\ \n\ \t\t// nodes accept data unless otherwise specified; rejection can be conditional\n\ \t\treturn !noData || noData !== true && elem.getAttribute(\"classid\") === noData;\n\ \t}\n\ });\n\ \n\ jQuery.fn.extend({\n\ \tdata: function( key, value ) {\n\ \t\tvar attrs, name,\n\ \t\t\telem = this[0],\n\ \t\t\ti = 0,\n\ \t\t\tdata = null;\n\ \n\ \t\t// Gets all values\n\ \t\tif ( key === undefined ) {\n\ \t\t\tif ( this.length ) {\n\ \t\t\t\tdata = jQuery.data( elem );\n\ \n\ \t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\ \t\t\t\t\tattrs = elem.attributes;\n\ \t\t\t\t\tfor ( ; i < attrs.length; i++ ) {\n\ \t\t\t\t\t\tname = attrs[i].name;\n\ \n\ \t\t\t\t\t\tif ( !name.indexOf( \"data-\" ) ) {\n\ \t\t\t\t\t\t\tname = jQuery.camelCase( name.slice(5) );\n\ \n\ \t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\treturn data;\n\ \t\t}\n\ \n\ \t\t// Sets multiple values\n\ \t\tif ( typeof key === \"object\" ) {\n\ \t\t\treturn this.each(function() {\n\ \t\t\t\tjQuery.data( this, key );\n\ \t\t\t});\n\ \t\t}\n\ \n\ \t\treturn jQuery.access( this, function( value ) {\n\ \n\ \t\t\tif ( value === undefined ) {\n\ \t\t\t\t// Try to fetch any internally stored data first\n\ \t\t\t\treturn elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null;\n\ \t\t\t}\n\ \n\ \t\t\tthis.each(function() {\n\ \t\t\t\tjQuery.data( this, key, value );\n\ \t\t\t});\n\ \t\t}, null, value, arguments.length > 1, null, true );\n\ \t},\n\ \n\ \tremoveData: function( key ) {\n\ \t\treturn this.each(function() {\n\ \t\t\tjQuery.removeData( this, key );\n\ \t\t});\n\ \t}\n\ });\n\ \n\ function dataAttr( elem, key, data ) {\n\ \t// If nothing was found internally, try to fetch any\n\ \t// data from the HTML5 data-* attribute\n\ \tif ( data === undefined && elem.nodeType === 1 ) {\n\ \n\ \t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\ \n\ \t\tdata = elem.getAttribute( name );\n\ \n\ \t\tif ( typeof data === \"string\" ) {\n\ \t\t\ttry {\n\ \t\t\t\tdata = data === \"true\" ? true :\n\ \t\t\t\t\tdata === \"false\" ? false :\n\ \t\t\t\t\tdata === \"null\" ? null :\n\ \t\t\t\t\t// Only convert to a number if it doesn't change the string\n\ \t\t\t\t\t+data + \"\" === data ? +data :\n\ \t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\ \t\t\t\t\t\tdata;\n\ \t\t\t} catch( e ) {}\n\ \n\ \t\t\t// Make sure we set the data so it isn't changed later\n\ \t\t\tjQuery.data( elem, key, data );\n\ \n\ \t\t} else {\n\ \t\t\tdata = undefined;\n\ \t\t}\n\ \t}\n\ \n\ \treturn data;\n\ }\n\ \n\ // checks a cache object for emptiness\n\ function isEmptyDataObject( obj ) {\n\ \tvar name;\n\ \tfor ( name in obj ) {\n\ \n\ \t\t// if the public data object is empty, the private is still empty\n\ \t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[name] ) ) {\n\ \t\t\tcontinue;\n\ \t\t}\n\ \t\tif ( name !== \"toJSON\" ) {\n\ \t\t\treturn false;\n\ \t\t}\n\ \t}\n\ \n\ \treturn true;\n\ }\n\ jQuery.extend({\n\ \tqueue: function( elem, type, data ) {\n\ \t\tvar queue;\n\ \n\ \t\tif ( elem ) {\n\ \t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\ \t\t\tqueue = jQuery._data( elem, type );\n\ \n\ \t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\ \t\t\tif ( data ) {\n\ \t\t\t\tif ( !queue || jQuery.isArray(data) ) {\n\ \t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray(data) );\n\ \t\t\t\t} else {\n\ \t\t\t\t\tqueue.push( data );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t\treturn queue || [];\n\ \t\t}\n\ \t},\n\ \n\ \tdequeue: function( elem, type ) {\n\ \t\ttype = type || \"fx\";\n\ \n\ \t\tvar queue = jQuery.queue( elem, type ),\n\ \t\t\tstartLength = queue.length,\n\ \t\t\tfn = queue.shift(),\n\ \t\t\thooks = jQuery._queueHooks( elem, type ),\n\ \t\t\tnext = function() {\n\ \t\t\t\tjQuery.dequeue( elem, type );\n\ \t\t\t};\n\ \n\ \t\t// If the fx queue is dequeued, always remove the progress sentinel\n\ \t\tif ( fn === \"inprogress\" ) {\n\ \t\t\tfn = queue.shift();\n\ \t\t\tstartLength--;\n\ \t\t}\n\ \n\ \t\thooks.cur = fn;\n\ \t\tif ( fn ) {\n\ \n\ \t\t\t// Add a progress sentinel to prevent the fx queue from being\n\ \t\t\t// automatically dequeued\n\ \t\t\tif ( type === \"fx\" ) {\n\ \t\t\t\tqueue.unshift( \"inprogress\" );\n\ \t\t\t}\n\ \n\ \t\t\t// clear up the last queue stop function\n\ \t\t\tdelete hooks.stop;\n\ \t\t\tfn.call( elem, next, hooks );\n\ \t\t}\n\ \n\ \t\tif ( !startLength && hooks ) {\n\ \t\t\thooks.empty.fire();\n\ \t\t}\n\ \t},\n\ \n\ \t// not intended for public consumption - generates a queueHooks object, or returns the current one\n\ \t_queueHooks: function( elem, type ) {\n\ \t\tvar key = type + \"queueHooks\";\n\ \t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\ \t\t\tempty: jQuery.Callbacks(\"once memory\").add(function() {\n\ \t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\ \t\t\t\tjQuery._removeData( elem, key );\n\ \t\t\t})\n\ \t\t});\n\ \t}\n\ });\n\ \n\ jQuery.fn.extend({\n\ \tqueue: function( type, data ) {\n\ \t\tvar setter = 2;\n\ \n\ \t\tif ( typeof type !== \"string\" ) {\n\ \t\t\tdata = type;\n\ \t\t\ttype = \"fx\";\n\ \t\t\tsetter--;\n\ \t\t}\n\ \n\ \t\tif ( arguments.length < setter ) {\n\ \t\t\treturn jQuery.queue( this[0], type );\n\ \t\t}\n\ \n\ \t\treturn data === undefined ?\n\ \t\t\tthis :\n\ \t\t\tthis.each(function() {\n\ \t\t\t\tvar queue = jQuery.queue( this, type, data );\n\ \n\ \t\t\t\t// ensure a hooks for this queue\n\ \t\t\t\tjQuery._queueHooks( this, type );\n\ \n\ \t\t\t\tif ( type === \"fx\" && queue[0] !== \"inprogress\" ) {\n\ \t\t\t\t\tjQuery.dequeue( this, type );\n\ \t\t\t\t}\n\ \t\t\t});\n\ \t},\n\ \tdequeue: function( type ) {\n\ \t\treturn this.each(function() {\n\ \t\t\tjQuery.dequeue( this, type );\n\ \t\t});\n\ \t},\n\ \t// Based off of the plugin by Clint Helfers, with permission.\n\ \t// http://blindsignals.com/index.php/2009/07/jquery-delay/\n\ \tdelay: function( time, type ) {\n\ \t\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ \t\ttype = type || \"fx\";\n\ \n\ \t\treturn this.queue( type, function( next, hooks ) {\n\ \t\t\tvar timeout = setTimeout( next, time );\n\ \t\t\thooks.stop = function() {\n\ \t\t\t\tclearTimeout( timeout );\n\ \t\t\t};\n\ \t\t});\n\ \t},\n\ \tclearQueue: function( type ) {\n\ \t\treturn this.queue( type || \"fx\", [] );\n\ \t},\n\ \t// Get a promise resolved when queues of a certain type\n\ \t// are emptied (fx is the type by default)\n\ \tpromise: function( type, obj ) {\n\ \t\tvar tmp,\n\ \t\t\tcount = 1,\n\ \t\t\tdefer = jQuery.Deferred(),\n\ \t\t\telements = this,\n\ \t\t\ti = this.length,\n\ \t\t\tresolve = function() {\n\ \t\t\t\tif ( !( --count ) ) {\n\ \t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\ \t\t\t\t}\n\ \t\t\t};\n\ \n\ \t\tif ( typeof type !== \"string\" ) {\n\ \t\t\tobj = type;\n\ \t\t\ttype = undefined;\n\ \t\t}\n\ \t\ttype = type || \"fx\";\n\ \n\ \t\twhile( i-- ) {\n\ \t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\ \t\t\tif ( tmp && tmp.empty ) {\n\ \t\t\t\tcount++;\n\ \t\t\t\ttmp.empty.add( resolve );\n\ \t\t\t}\n\ \t\t}\n\ \t\tresolve();\n\ \t\treturn defer.promise( obj );\n\ \t}\n\ });\n\ var nodeHook, boolHook,\n\ \trclass = /[\\t\\r\\n\ ]/g,\n\ \trreturn = /\\r/g,\n\ \trfocusable = /^(?:input|select|textarea|button|object)$/i,\n\ \trclickable = /^(?:a|area)$/i,\n\ \trboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,\n\ \truseDefault = /^(?:checked|selected)$/i,\n\ \tgetSetAttribute = jQuery.support.getSetAttribute,\n\ \tgetSetInput = jQuery.support.input;\n\ \n\ jQuery.fn.extend({\n\ \tattr: function( name, value ) {\n\ \t\treturn jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );\n\ \t},\n\ \n\ \tremoveAttr: function( name ) {\n\ \t\treturn this.each(function() {\n\ \t\t\tjQuery.removeAttr( this, name );\n\ \t\t});\n\ \t},\n\ \n\ \tprop: function( name, value ) {\n\ \t\treturn jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );\n\ \t},\n\ \n\ \tremoveProp: function( name ) {\n\ \t\tname = jQuery.propFix[ name ] || name;\n\ \t\treturn this.each(function() {\n\ \t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\ \t\t\ttry {\n\ \t\t\t\tthis[ name ] = undefined;\n\ \t\t\t\tdelete this[ name ];\n\ \t\t\t} catch( e ) {}\n\ \t\t});\n\ \t},\n\ \n\ \taddClass: function( value ) {\n\ \t\tvar classes, elem, cur, clazz, j,\n\ \t\t\ti = 0,\n\ \t\t\tlen = this.length,\n\ \t\t\tproceed = typeof value === \"string\" && value;\n\ \n\ \t\tif ( jQuery.isFunction( value ) ) {\n\ \t\t\treturn this.each(function( j ) {\n\ \t\t\t\tjQuery( this ).addClass( value.call( this, j, this.className ) );\n\ \t\t\t});\n\ \t\t}\n\ \n\ \t\tif ( proceed ) {\n\ \t\t\t// The disjunction here is for better compressibility (see removeClass)\n\ \t\t\tclasses = ( value || \"\" ).match( core_rnotwhite ) || [];\n\ \n\ \t\t\tfor ( ; i < len; i++ ) {\n\ \t\t\t\telem = this[ i ];\n\ \t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\ \t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\ \t\t\t\t\t\" \"\n\ \t\t\t\t);\n\ \n\ \t\t\t\tif ( cur ) {\n\ \t\t\t\t\tj = 0;\n\ \t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\ \t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\ \t\t\t\t\t\t\tcur += clazz + \" \";\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t\telem.className = jQuery.trim( cur );\n\ \n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn this;\n\ \t},\n\ \n\ \tremoveClass: function( value ) {\n\ \t\tvar classes, elem, cur, clazz, j,\n\ \t\t\ti = 0,\n\ \t\t\tlen = this.length,\n\ \t\t\tproceed = arguments.length === 0 || typeof value === \"string\" && value;\n\ \n\ \t\tif ( jQuery.isFunction( value ) ) {\n\ \t\t\treturn this.each(function( j ) {\n\ \t\t\t\tjQuery( this ).removeClass( value.call( this, j, this.className ) );\n\ \t\t\t});\n\ \t\t}\n\ \t\tif ( proceed ) {\n\ \t\t\tclasses = ( value || \"\" ).match( core_rnotwhite ) || [];\n\ \n\ \t\t\tfor ( ; i < len; i++ ) {\n\ \t\t\t\telem = this[ i ];\n\ \t\t\t\t// This expression is here for better compressibility (see addClass)\n\ \t\t\t\tcur = elem.nodeType === 1 && ( elem.className ?\n\ \t\t\t\t\t( \" \" + elem.className + \" \" ).replace( rclass, \" \" ) :\n\ \t\t\t\t\t\"\"\n\ \t\t\t\t);\n\ \n\ \t\t\t\tif ( cur ) {\n\ \t\t\t\t\tj = 0;\n\ \t\t\t\t\twhile ( (clazz = classes[j++]) ) {\n\ \t\t\t\t\t\t// Remove *all* instances\n\ \t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) >= 0 ) {\n\ \t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t\telem.className = value ? jQuery.trim( cur ) : \"\";\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn this;\n\ \t},\n\ \n\ \ttoggleClass: function( value, stateVal ) {\n\ \t\tvar type = typeof value,\n\ \t\t\tisBool = typeof stateVal === \"boolean\";\n\ \n\ \t\tif ( jQuery.isFunction( value ) ) {\n\ \t\t\treturn this.each(function( i ) {\n\ \t\t\t\tjQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );\n\ \t\t\t});\n\ \t\t}\n\ \n\ \t\treturn this.each(function() {\n\ \t\t\tif ( type === \"string\" ) {\n\ \t\t\t\t// toggle individual class names\n\ \t\t\t\tvar className,\n\ \t\t\t\t\ti = 0,\n\ \t\t\t\t\tself = jQuery( this ),\n\ \t\t\t\t\tstate = stateVal,\n\ \t\t\t\t\tclassNames = value.match( core_rnotwhite ) || [];\n\ \n\ \t\t\t\twhile ( (className = classNames[ i++ ]) ) {\n\ \t\t\t\t\t// check each className given, space separated list\n\ \t\t\t\t\tstate = isBool ? state : !self.hasClass( className );\n\ \t\t\t\t\tself[ state ? \"addClass\" : \"removeClass\" ]( className );\n\ \t\t\t\t}\n\ \n\ \t\t\t// Toggle whole class name\n\ \t\t\t} else if ( type === core_strundefined || type === \"boolean\" ) {\n\ \t\t\t\tif ( this.className ) {\n\ \t\t\t\t\t// store className if set\n\ \t\t\t\t\tjQuery._data( this, \"__className__\", this.className );\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// If the element has a class name or if we're passed \"false\",\n\ \t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\ \t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\ \t\t\t\t// falling back to the empty string if nothing was stored.\n\ \t\t\t\tthis.className = this.className || value === false ? \"\" : jQuery._data( this, \"__className__\" ) || \"\";\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \thasClass: function( selector ) {\n\ \t\tvar className = \" \" + selector + \" \",\n\ \t\t\ti = 0,\n\ \t\t\tl = this.length;\n\ \t\tfor ( ; i < l; i++ ) {\n\ \t\t\tif ( this[i].nodeType === 1 && (\" \" + this[i].className + \" \").replace(rclass, \" \").indexOf( className ) >= 0 ) {\n\ \t\t\t\treturn true;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn false;\n\ \t},\n\ \n\ \tval: function( value ) {\n\ \t\tvar ret, hooks, isFunction,\n\ \t\t\telem = this[0];\n\ \n\ \t\tif ( !arguments.length ) {\n\ \t\t\tif ( elem ) {\n\ \t\t\t\thooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\ \n\ \t\t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, \"value\" )) !== undefined ) {\n\ \t\t\t\t\treturn ret;\n\ \t\t\t\t}\n\ \n\ \t\t\t\tret = elem.value;\n\ \n\ \t\t\t\treturn typeof ret === \"string\" ?\n\ \t\t\t\t\t// handle most common string cases\n\ \t\t\t\t\tret.replace(rreturn, \"\") :\n\ \t\t\t\t\t// handle cases where value is null/undef or number\n\ \t\t\t\t\tret == null ? \"\" : ret;\n\ \t\t\t}\n\ \n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\tisFunction = jQuery.isFunction( value );\n\ \n\ \t\treturn this.each(function( i ) {\n\ \t\t\tvar val,\n\ \t\t\t\tself = jQuery(this);\n\ \n\ \t\t\tif ( this.nodeType !== 1 ) {\n\ \t\t\t\treturn;\n\ \t\t\t}\n\ \n\ \t\t\tif ( isFunction ) {\n\ \t\t\t\tval = value.call( this, i, self.val() );\n\ \t\t\t} else {\n\ \t\t\t\tval = value;\n\ \t\t\t}\n\ \n\ \t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\ \t\t\tif ( val == null ) {\n\ \t\t\t\tval = \"\";\n\ \t\t\t} else if ( typeof val === \"number\" ) {\n\ \t\t\t\tval += \"\";\n\ \t\t\t} else if ( jQuery.isArray( val ) ) {\n\ \t\t\t\tval = jQuery.map(val, function ( value ) {\n\ \t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\ \t\t\t\t});\n\ \t\t\t}\n\ \n\ \t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\ \n\ \t\t\t// If set returns undefined, fall back to normal setting\n\ \t\t\tif ( !hooks || !(\"set\" in hooks) || hooks.set( this, val, \"value\" ) === undefined ) {\n\ \t\t\t\tthis.value = val;\n\ \t\t\t}\n\ \t\t});\n\ \t}\n\ });\n\ \n\ jQuery.extend({\n\ \tvalHooks: {\n\ \t\toption: {\n\ \t\t\tget: function( elem ) {\n\ \t\t\t\t// attributes.value is undefined in Blackberry 4.7 but\n\ \t\t\t\t// uses .value. See #6932\n\ \t\t\t\tvar val = elem.attributes.value;\n\ \t\t\t\treturn !val || val.specified ? elem.value : elem.text;\n\ \t\t\t}\n\ \t\t},\n\ \t\tselect: {\n\ \t\t\tget: function( elem ) {\n\ \t\t\t\tvar value, option,\n\ \t\t\t\t\toptions = elem.options,\n\ \t\t\t\t\tindex = elem.selectedIndex,\n\ \t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\ \t\t\t\t\tvalues = one ? null : [],\n\ \t\t\t\t\tmax = one ? index + 1 : options.length,\n\ \t\t\t\t\ti = index < 0 ?\n\ \t\t\t\t\t\tmax :\n\ \t\t\t\t\t\tone ? index : 0;\n\ \n\ \t\t\t\t// Loop through all the selected options\n\ \t\t\t\tfor ( ; i < max; i++ ) {\n\ \t\t\t\t\toption = options[ i ];\n\ \n\ \t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\ \t\t\t\t\tif ( ( option.selected || i === index ) &&\n\ \t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\ \t\t\t\t\t\t\t( jQuery.support.optDisabled ? !option.disabled : option.getAttribute(\"disabled\") === null ) &&\n\ \t\t\t\t\t\t\t( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\ \n\ \t\t\t\t\t\t// Get the specific value for the option\n\ \t\t\t\t\t\tvalue = jQuery( option ).val();\n\ \n\ \t\t\t\t\t\t// We don't need an array for one selects\n\ \t\t\t\t\t\tif ( one ) {\n\ \t\t\t\t\t\t\treturn value;\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\t// Multi-Selects return an array\n\ \t\t\t\t\t\tvalues.push( value );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \n\ \t\t\t\treturn values;\n\ \t\t\t},\n\ \n\ \t\t\tset: function( elem, value ) {\n\ \t\t\t\tvar values = jQuery.makeArray( value );\n\ \n\ \t\t\t\tjQuery(elem).find(\"option\").each(function() {\n\ \t\t\t\t\tthis.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;\n\ \t\t\t\t});\n\ \n\ \t\t\t\tif ( !values.length ) {\n\ \t\t\t\t\telem.selectedIndex = -1;\n\ \t\t\t\t}\n\ \t\t\t\treturn values;\n\ \t\t\t}\n\ \t\t}\n\ \t},\n\ \n\ \tattr: function( elem, name, value ) {\n\ \t\tvar hooks, notxml, ret,\n\ \t\t\tnType = elem.nodeType;\n\ \n\ \t\t// don't get/set attributes on text, comment and attribute nodes\n\ \t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Fallback to prop when attributes are not supported\n\ \t\tif ( typeof elem.getAttribute === core_strundefined ) {\n\ \t\t\treturn jQuery.prop( elem, name, value );\n\ \t\t}\n\ \n\ \t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\ \n\ \t\t// All attributes are lowercase\n\ \t\t// Grab necessary hook if one is defined\n\ \t\tif ( notxml ) {\n\ \t\t\tname = name.toLowerCase();\n\ \t\t\thooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );\n\ \t\t}\n\ \n\ \t\tif ( value !== undefined ) {\n\ \n\ \t\t\tif ( value === null ) {\n\ \t\t\t\tjQuery.removeAttr( elem, name );\n\ \n\ \t\t\t} else if ( hooks && notxml && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\ \t\t\t\treturn ret;\n\ \n\ \t\t\t} else {\n\ \t\t\t\telem.setAttribute( name, value + \"\" );\n\ \t\t\t\treturn value;\n\ \t\t\t}\n\ \n\ \t\t} else if ( hooks && notxml && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\ \t\t\treturn ret;\n\ \n\ \t\t} else {\n\ \n\ \t\t\t// In IE9+, Flash objects don't have .getAttribute (#12945)\n\ \t\t\t// Support: IE9+\n\ \t\t\tif ( typeof elem.getAttribute !== core_strundefined ) {\n\ \t\t\t\tret = elem.getAttribute( name );\n\ \t\t\t}\n\ \n\ \t\t\t// Non-existent attributes return null, we normalize to undefined\n\ \t\t\treturn ret == null ?\n\ \t\t\t\tundefined :\n\ \t\t\t\tret;\n\ \t\t}\n\ \t},\n\ \n\ \tremoveAttr: function( elem, value ) {\n\ \t\tvar name, propName,\n\ \t\t\ti = 0,\n\ \t\t\tattrNames = value && value.match( core_rnotwhite );\n\ \n\ \t\tif ( attrNames && elem.nodeType === 1 ) {\n\ \t\t\twhile ( (name = attrNames[i++]) ) {\n\ \t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\ \n\ \t\t\t\t// Boolean attributes get special treatment (#10870)\n\ \t\t\t\tif ( rboolean.test( name ) ) {\n\ \t\t\t\t\t// Set corresponding property to false for boolean attributes\n\ \t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate) for IE<8\n\ \t\t\t\t\tif ( !getSetAttribute && ruseDefault.test( name ) ) {\n\ \t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\ \t\t\t\t\t\t\telem[ propName ] = false;\n\ \t\t\t\t\t} else {\n\ \t\t\t\t\t\telem[ propName ] = false;\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\ \t\t\t\t} else {\n\ \t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\ \t\t\t\t}\n\ \n\ \t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\ \t\t\t}\n\ \t\t}\n\ \t},\n\ \n\ \tattrHooks: {\n\ \t\ttype: {\n\ \t\t\tset: function( elem, value ) {\n\ \t\t\t\tif ( !jQuery.support.radioValue && value === \"radio\" && jQuery.nodeName(elem, \"input\") ) {\n\ \t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE6-9\n\ \t\t\t\t\t// Reset value to default in case type is set after value during creation\n\ \t\t\t\t\tvar val = elem.value;\n\ \t\t\t\t\telem.setAttribute( \"type\", value );\n\ \t\t\t\t\tif ( val ) {\n\ \t\t\t\t\t\telem.value = val;\n\ \t\t\t\t\t}\n\ \t\t\t\t\treturn value;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t},\n\ \n\ \tpropFix: {\n\ \t\ttabindex: \"tabIndex\",\n\ \t\treadonly: \"readOnly\",\n\ \t\t\"for\": \"htmlFor\",\n\ \t\t\"class\": \"className\",\n\ \t\tmaxlength: \"maxLength\",\n\ \t\tcellspacing: \"cellSpacing\",\n\ \t\tcellpadding: \"cellPadding\",\n\ \t\trowspan: \"rowSpan\",\n\ \t\tcolspan: \"colSpan\",\n\ \t\tusemap: \"useMap\",\n\ \t\tframeborder: \"frameBorder\",\n\ \t\tcontenteditable: \"contentEditable\"\n\ \t},\n\ \n\ \tprop: function( elem, name, value ) {\n\ \t\tvar ret, hooks, notxml,\n\ \t\t\tnType = elem.nodeType;\n\ \n\ \t\t// don't get/set properties on text, comment and attribute nodes\n\ \t\tif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\tnotxml = nType !== 1 || !jQuery.isXMLDoc( elem );\n\ \n\ \t\tif ( notxml ) {\n\ \t\t\t// Fix name and attach hooks\n\ \t\t\tname = jQuery.propFix[ name ] || name;\n\ \t\t\thooks = jQuery.propHooks[ name ];\n\ \t\t}\n\ \n\ \t\tif ( value !== undefined ) {\n\ \t\t\tif ( hooks && \"set\" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {\n\ \t\t\t\treturn ret;\n\ \n\ \t\t\t} else {\n\ \t\t\t\treturn ( elem[ name ] = value );\n\ \t\t\t}\n\ \n\ \t\t} else {\n\ \t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, name )) !== null ) {\n\ \t\t\t\treturn ret;\n\ \n\ \t\t\t} else {\n\ \t\t\t\treturn elem[ name ];\n\ \t\t\t}\n\ \t\t}\n\ \t},\n\ \n\ \tpropHooks: {\n\ \t\ttabIndex: {\n\ \t\t\tget: function( elem ) {\n\ \t\t\t\t// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set\n\ \t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\ \t\t\t\tvar attributeNode = elem.getAttributeNode(\"tabindex\");\n\ \n\ \t\t\t\treturn attributeNode && attributeNode.specified ?\n\ \t\t\t\t\tparseInt( attributeNode.value, 10 ) :\n\ \t\t\t\t\trfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?\n\ \t\t\t\t\t\t0 :\n\ \t\t\t\t\t\tundefined;\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ });\n\ \n\ // Hook for boolean attributes\n\ boolHook = {\n\ \tget: function( elem, name ) {\n\ \t\tvar\n\ \t\t\t// Use .prop to determine if this attribute is understood as boolean\n\ \t\t\tprop = jQuery.prop( elem, name ),\n\ \n\ \t\t\t// Fetch it accordingly\n\ \t\t\tattr = typeof prop === \"boolean\" && elem.getAttribute( name ),\n\ \t\t\tdetail = typeof prop === \"boolean\" ?\n\ \n\ \t\t\t\tgetSetInput && getSetAttribute ?\n\ \t\t\t\t\tattr != null :\n\ \t\t\t\t\t// oldIE fabricates an empty string for missing boolean attributes\n\ \t\t\t\t\t// and conflates checked/selected into attroperties\n\ \t\t\t\t\truseDefault.test( name ) ?\n\ \t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] :\n\ \t\t\t\t\t\t!!attr :\n\ \n\ \t\t\t\t// fetch an attribute node for properties not recognized as boolean\n\ \t\t\t\telem.getAttributeNode( name );\n\ \n\ \t\treturn detail && detail.value !== false ?\n\ \t\t\tname.toLowerCase() :\n\ \t\t\tundefined;\n\ \t},\n\ \tset: function( elem, value, name ) {\n\ \t\tif ( value === false ) {\n\ \t\t\t// Remove boolean attributes when set to false\n\ \t\t\tjQuery.removeAttr( elem, name );\n\ \t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\ \t\t\t// IE<8 needs the *property* name\n\ \t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\ \n\ \t\t// Use defaultChecked and defaultSelected for oldIE\n\ \t\t} else {\n\ \t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\ \t\t}\n\ \n\ \t\treturn name;\n\ \t}\n\ };\n\ \n\ // fix oldIE value attroperty\n\ if ( !getSetInput || !getSetAttribute ) {\n\ \tjQuery.attrHooks.value = {\n\ \t\tget: function( elem, name ) {\n\ \t\t\tvar ret = elem.getAttributeNode( name );\n\ \t\t\treturn jQuery.nodeName( elem, \"input\" ) ?\n\ \n\ \t\t\t\t// Ignore the value *property* by using defaultValue\n\ \t\t\t\telem.defaultValue :\n\ \n\ \t\t\t\tret && ret.specified ? ret.value : undefined;\n\ \t\t},\n\ \t\tset: function( elem, value, name ) {\n\ \t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\ \t\t\t\t// Does not return so that setAttribute is also used\n\ \t\t\t\telem.defaultValue = value;\n\ \t\t\t} else {\n\ \t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\ \t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\ \t\t\t}\n\ \t\t}\n\ \t};\n\ }\n\ \n\ // IE6/7 do not support getting/setting some attributes with get/setAttribute\n\ if ( !getSetAttribute ) {\n\ \n\ \t// Use this for any attribute in IE6/7\n\ \t// This fixes almost every IE6/7 issue\n\ \tnodeHook = jQuery.valHooks.button = {\n\ \t\tget: function( elem, name ) {\n\ \t\t\tvar ret = elem.getAttributeNode( name );\n\ \t\t\treturn ret && ( name === \"id\" || name === \"name\" || name === \"coords\" ? ret.value !== \"\" : ret.specified ) ?\n\ \t\t\t\tret.value :\n\ \t\t\t\tundefined;\n\ \t\t},\n\ \t\tset: function( elem, value, name ) {\n\ \t\t\t// Set the existing or create a new attribute node\n\ \t\t\tvar ret = elem.getAttributeNode( name );\n\ \t\t\tif ( !ret ) {\n\ \t\t\t\telem.setAttributeNode(\n\ \t\t\t\t\t(ret = elem.ownerDocument.createAttribute( name ))\n\ \t\t\t\t);\n\ \t\t\t}\n\ \n\ \t\t\tret.value = value += \"\";\n\ \n\ \t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\ \t\t\treturn name === \"value\" || value === elem.getAttribute( name ) ?\n\ \t\t\t\tvalue :\n\ \t\t\t\tundefined;\n\ \t\t}\n\ \t};\n\ \n\ \t// Set contenteditable to false on removals(#10429)\n\ \t// Setting to empty string throws an error as an invalid value\n\ \tjQuery.attrHooks.contenteditable = {\n\ \t\tget: nodeHook.get,\n\ \t\tset: function( elem, value, name ) {\n\ \t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\ \t\t}\n\ \t};\n\ \n\ \t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\ \t// This is for removals\n\ \tjQuery.each([ \"width\", \"height\" ], function( i, name ) {\n\ \t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\ \t\t\tset: function( elem, value ) {\n\ \t\t\t\tif ( value === \"\" ) {\n\ \t\t\t\t\telem.setAttribute( name, \"auto\" );\n\ \t\t\t\t\treturn value;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t});\n\ \t});\n\ }\n\ \n\ \n\ // Some attributes require a special call on IE\n\ // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\n\ if ( !jQuery.support.hrefNormalized ) {\n\ \tjQuery.each([ \"href\", \"src\", \"width\", \"height\" ], function( i, name ) {\n\ \t\tjQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {\n\ \t\t\tget: function( elem ) {\n\ \t\t\t\tvar ret = elem.getAttribute( name, 2 );\n\ \t\t\t\treturn ret == null ? undefined : ret;\n\ \t\t\t}\n\ \t\t});\n\ \t});\n\ \n\ \t// href/src property should get the full normalized URL (#10299/#12915)\n\ \tjQuery.each([ \"href\", \"src\" ], function( i, name ) {\n\ \t\tjQuery.propHooks[ name ] = {\n\ \t\t\tget: function( elem ) {\n\ \t\t\t\treturn elem.getAttribute( name, 4 );\n\ \t\t\t}\n\ \t\t};\n\ \t});\n\ }\n\ \n\ if ( !jQuery.support.style ) {\n\ \tjQuery.attrHooks.style = {\n\ \t\tget: function( elem ) {\n\ \t\t\t// Return undefined in the case of empty string\n\ \t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\ \t\t\t// .cssText, that would destroy case senstitivity in URL's, like in \"background\"\n\ \t\t\treturn elem.style.cssText || undefined;\n\ \t\t},\n\ \t\tset: function( elem, value ) {\n\ \t\t\treturn ( elem.style.cssText = value + \"\" );\n\ \t\t}\n\ \t};\n\ }\n\ \n\ // Safari mis-reports the default selected property of an option\n\ // Accessing the parent's selectedIndex property fixes it\n\ if ( !jQuery.support.optSelected ) {\n\ \tjQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {\n\ \t\tget: function( elem ) {\n\ \t\t\tvar parent = elem.parentNode;\n\ \n\ \t\t\tif ( parent ) {\n\ \t\t\t\tparent.selectedIndex;\n\ \n\ \t\t\t\t// Make sure that it also works with optgroups, see #5701\n\ \t\t\t\tif ( parent.parentNode ) {\n\ \t\t\t\t\tparent.parentNode.selectedIndex;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t\treturn null;\n\ \t\t}\n\ \t});\n\ }\n\ \n\ // IE6/7 call enctype encoding\n\ if ( !jQuery.support.enctype ) {\n\ \tjQuery.propFix.enctype = \"encoding\";\n\ }\n\ \n\ // Radios and checkboxes getter/setter\n\ if ( !jQuery.support.checkOn ) {\n\ \tjQuery.each([ \"radio\", \"checkbox\" ], function() {\n\ \t\tjQuery.valHooks[ this ] = {\n\ \t\t\tget: function( elem ) {\n\ \t\t\t\t// Handle the case where in Webkit \"\" is returned instead of \"on\" if a value isn't specified\n\ \t\t\t\treturn elem.getAttribute(\"value\") === null ? \"on\" : elem.value;\n\ \t\t\t}\n\ \t\t};\n\ \t});\n\ }\n\ jQuery.each([ \"radio\", \"checkbox\" ], function() {\n\ \tjQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {\n\ \t\tset: function( elem, value ) {\n\ \t\t\tif ( jQuery.isArray( value ) ) {\n\ \t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );\n\ \t\t\t}\n\ \t\t}\n\ \t});\n\ });\n\ var rformElems = /^(?:input|select|textarea)$/i,\n\ \trkeyEvent = /^key/,\n\ \trmouseEvent = /^(?:mouse|contextmenu)|click/,\n\ \trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\ \trtypenamespace = /^([^.]*)(?:\\.(.+)|)$/;\n\ \n\ function returnTrue() {\n\ \treturn true;\n\ }\n\ \n\ function returnFalse() {\n\ \treturn false;\n\ }\n\ \n\ /*\n\ * Helper functions for managing events -- not part of the public interface.\n\ * Props to Dean Edwards' addEvent library for many of the ideas.\n\ */\n\ jQuery.event = {\n\ \n\ \tglobal: {},\n\ \n\ \tadd: function( elem, types, handler, data, selector ) {\n\ \t\tvar tmp, events, t, handleObjIn,\n\ \t\t\tspecial, eventHandle, handleObj,\n\ \t\t\thandlers, type, namespaces, origType,\n\ \t\t\telemData = jQuery._data( elem );\n\ \n\ \t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\ \t\tif ( !elemData ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Caller can pass in an object of custom data in lieu of the handler\n\ \t\tif ( handler.handler ) {\n\ \t\t\thandleObjIn = handler;\n\ \t\t\thandler = handleObjIn.handler;\n\ \t\t\tselector = handleObjIn.selector;\n\ \t\t}\n\ \n\ \t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\ \t\tif ( !handler.guid ) {\n\ \t\t\thandler.guid = jQuery.guid++;\n\ \t\t}\n\ \n\ \t\t// Init the element's event structure and main handler, if this is the first\n\ \t\tif ( !(events = elemData.events) ) {\n\ \t\t\tevents = elemData.events = {};\n\ \t\t}\n\ \t\tif ( !(eventHandle = elemData.handle) ) {\n\ \t\t\teventHandle = elemData.handle = function( e ) {\n\ \t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\ \t\t\t\t// when an event is called after a page has unloaded\n\ \t\t\t\treturn typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ?\n\ \t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\ \t\t\t\t\tundefined;\n\ \t\t\t};\n\ \t\t\t// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events\n\ \t\t\teventHandle.elem = elem;\n\ \t\t}\n\ \n\ \t\t// Handle multiple events separated by a space\n\ \t\t// jQuery(...).bind(\"mouseover mouseout\", fn);\n\ \t\ttypes = ( types || \"\" ).match( core_rnotwhite ) || [\"\"];\n\ \t\tt = types.length;\n\ \t\twhile ( t-- ) {\n\ \t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\ \t\t\ttype = origType = tmp[1];\n\ \t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\ \n\ \t\t\t// If event changes its type, use the special event handlers for the changed type\n\ \t\t\tspecial = jQuery.event.special[ type ] || {};\n\ \n\ \t\t\t// If selector defined, determine special event api type, otherwise given type\n\ \t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\ \n\ \t\t\t// Update special based on newly reset type\n\ \t\t\tspecial = jQuery.event.special[ type ] || {};\n\ \n\ \t\t\t// handleObj is passed to all event handlers\n\ \t\t\thandleObj = jQuery.extend({\n\ \t\t\t\ttype: type,\n\ \t\t\t\torigType: origType,\n\ \t\t\t\tdata: data,\n\ \t\t\t\thandler: handler,\n\ \t\t\t\tguid: handler.guid,\n\ \t\t\t\tselector: selector,\n\ \t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\ \t\t\t\tnamespace: namespaces.join(\".\")\n\ \t\t\t}, handleObjIn );\n\ \n\ \t\t\t// Init the event handler queue if we're the first\n\ \t\t\tif ( !(handlers = events[ type ]) ) {\n\ \t\t\t\thandlers = events[ type ] = [];\n\ \t\t\t\thandlers.delegateCount = 0;\n\ \n\ \t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\ \t\t\t\tif ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\ \t\t\t\t\t// Bind the global event handler to the element\n\ \t\t\t\t\tif ( elem.addEventListener ) {\n\ \t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\ \n\ \t\t\t\t\t} else if ( elem.attachEvent ) {\n\ \t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\tif ( special.add ) {\n\ \t\t\t\tspecial.add.call( elem, handleObj );\n\ \n\ \t\t\t\tif ( !handleObj.handler.guid ) {\n\ \t\t\t\t\thandleObj.handler.guid = handler.guid;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\t// Add to the element's handler list, delegates in front\n\ \t\t\tif ( selector ) {\n\ \t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\ \t\t\t} else {\n\ \t\t\t\thandlers.push( handleObj );\n\ \t\t\t}\n\ \n\ \t\t\t// Keep track of which events have ever been used, for event optimization\n\ \t\t\tjQuery.event.global[ type ] = true;\n\ \t\t}\n\ \n\ \t\t// Nullify elem to prevent memory leaks in IE\n\ \t\telem = null;\n\ \t},\n\ \n\ \t// Detach an event or set of events from an element\n\ \tremove: function( elem, types, handler, selector, mappedTypes ) {\n\ \t\tvar j, handleObj, tmp,\n\ \t\t\torigCount, t, events,\n\ \t\t\tspecial, handlers, type,\n\ \t\t\tnamespaces, origType,\n\ \t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\ \n\ \t\tif ( !elemData || !(events = elemData.events) ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Once for each type.namespace in types; type may be omitted\n\ \t\ttypes = ( types || \"\" ).match( core_rnotwhite ) || [\"\"];\n\ \t\tt = types.length;\n\ \t\twhile ( t-- ) {\n\ \t\t\ttmp = rtypenamespace.exec( types[t] ) || [];\n\ \t\t\ttype = origType = tmp[1];\n\ \t\t\tnamespaces = ( tmp[2] || \"\" ).split( \".\" ).sort();\n\ \n\ \t\t\t// Unbind all events (on this namespace, if provided) for the element\n\ \t\t\tif ( !type ) {\n\ \t\t\t\tfor ( type in events ) {\n\ \t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\ \t\t\t\t}\n\ \t\t\t\tcontinue;\n\ \t\t\t}\n\ \n\ \t\t\tspecial = jQuery.event.special[ type ] || {};\n\ \t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\ \t\t\thandlers = events[ type ] || [];\n\ \t\t\ttmp = tmp[2] && new RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" );\n\ \n\ \t\t\t// Remove matching events\n\ \t\t\torigCount = j = handlers.length;\n\ \t\t\twhile ( j-- ) {\n\ \t\t\t\thandleObj = handlers[ j ];\n\ \n\ \t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\ \t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\ \t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\ \t\t\t\t\t( !selector || selector === handleObj.selector || selector === \"**\" && handleObj.selector ) ) {\n\ \t\t\t\t\thandlers.splice( j, 1 );\n\ \n\ \t\t\t\t\tif ( handleObj.selector ) {\n\ \t\t\t\t\t\thandlers.delegateCount--;\n\ \t\t\t\t\t}\n\ \t\t\t\t\tif ( special.remove ) {\n\ \t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\ \t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\ \t\t\tif ( origCount && !handlers.length ) {\n\ \t\t\t\tif ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\ \t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\ \t\t\t\t}\n\ \n\ \t\t\t\tdelete events[ type ];\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Remove the expando if it's no longer used\n\ \t\tif ( jQuery.isEmptyObject( events ) ) {\n\ \t\t\tdelete elemData.handle;\n\ \n\ \t\t\t// removeData also checks for emptiness and clears the expando if empty\n\ \t\t\t// so use it instead of delete\n\ \t\t\tjQuery._removeData( elem, \"events\" );\n\ \t\t}\n\ \t},\n\ \n\ \ttrigger: function( event, data, elem, onlyHandlers ) {\n\ \t\tvar handle, ontype, cur,\n\ \t\t\tbubbleType, special, tmp, i,\n\ \t\t\teventPath = [ elem || document ],\n\ \t\t\ttype = core_hasOwn.call( event, \"type\" ) ? event.type : event,\n\ \t\t\tnamespaces = core_hasOwn.call( event, \"namespace\" ) ? event.namespace.split(\".\") : [];\n\ \n\ \t\tcur = tmp = elem = elem || document;\n\ \n\ \t\t// Don't do events on text and comment nodes\n\ \t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\ \t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\tif ( type.indexOf(\".\") >= 0 ) {\n\ \t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\ \t\t\tnamespaces = type.split(\".\");\n\ \t\t\ttype = namespaces.shift();\n\ \t\t\tnamespaces.sort();\n\ \t\t}\n\ \t\tontype = type.indexOf(\":\") < 0 && \"on\" + type;\n\ \n\ \t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\ \t\tevent = event[ jQuery.expando ] ?\n\ \t\t\tevent :\n\ \t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\ \n\ \t\tevent.isTrigger = true;\n\ \t\tevent.namespace = namespaces.join(\".\");\n\ \t\tevent.namespace_re = event.namespace ?\n\ \t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join(\"\\\\.(?:.*\\\\.|)\") + \"(\\\\.|$)\" ) :\n\ \t\t\tnull;\n\ \n\ \t\t// Clean up the event in case it is being reused\n\ \t\tevent.result = undefined;\n\ \t\tif ( !event.target ) {\n\ \t\t\tevent.target = elem;\n\ \t\t}\n\ \n\ \t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\ \t\tdata = data == null ?\n\ \t\t\t[ event ] :\n\ \t\t\tjQuery.makeArray( data, [ event ] );\n\ \n\ \t\t// Allow special events to draw outside the lines\n\ \t\tspecial = jQuery.event.special[ type ] || {};\n\ \t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\ \t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\ \t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\ \n\ \t\t\tbubbleType = special.delegateType || type;\n\ \t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\ \t\t\t\tcur = cur.parentNode;\n\ \t\t\t}\n\ \t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\ \t\t\t\teventPath.push( cur );\n\ \t\t\t\ttmp = cur;\n\ \t\t\t}\n\ \n\ \t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\ \t\t\tif ( tmp === (elem.ownerDocument || document) ) {\n\ \t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Fire handlers on the event path\n\ \t\ti = 0;\n\ \t\twhile ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {\n\ \n\ \t\t\tevent.type = i > 1 ?\n\ \t\t\t\tbubbleType :\n\ \t\t\t\tspecial.bindType || type;\n\ \n\ \t\t\t// jQuery handler\n\ \t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] && jQuery._data( cur, \"handle\" );\n\ \t\t\tif ( handle ) {\n\ \t\t\t\thandle.apply( cur, data );\n\ \t\t\t}\n\ \n\ \t\t\t// Native handler\n\ \t\t\thandle = ontype && cur[ ontype ];\n\ \t\t\tif ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) {\n\ \t\t\t\tevent.preventDefault();\n\ \t\t\t}\n\ \t\t}\n\ \t\tevent.type = type;\n\ \n\ \t\t// If nobody prevented the default action, do it now\n\ \t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\ \n\ \t\t\tif ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&\n\ \t\t\t\t!(type === \"click\" && jQuery.nodeName( elem, \"a\" )) && jQuery.acceptData( elem ) ) {\n\ \n\ \t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\ \t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\ \t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\ \t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\ \n\ \t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\ \t\t\t\t\ttmp = elem[ ontype ];\n\ \n\ \t\t\t\t\tif ( tmp ) {\n\ \t\t\t\t\t\telem[ ontype ] = null;\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\ \t\t\t\t\tjQuery.event.triggered = type;\n\ \t\t\t\t\ttry {\n\ \t\t\t\t\t\telem[ type ]();\n\ \t\t\t\t\t} catch ( e ) {\n\ \t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\ \t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\ \t\t\t\t\t}\n\ \t\t\t\t\tjQuery.event.triggered = undefined;\n\ \n\ \t\t\t\t\tif ( tmp ) {\n\ \t\t\t\t\t\telem[ ontype ] = tmp;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn event.result;\n\ \t},\n\ \n\ \tdispatch: function( event ) {\n\ \n\ \t\t// Make a writable jQuery.Event from the native event object\n\ \t\tevent = jQuery.event.fix( event );\n\ \n\ \t\tvar i, ret, handleObj, matched, j,\n\ \t\t\thandlerQueue = [],\n\ \t\t\targs = core_slice.call( arguments ),\n\ \t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\ \t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\ \n\ \t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\ \t\targs[0] = event;\n\ \t\tevent.delegateTarget = this;\n\ \n\ \t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\ \t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Determine handlers\n\ \t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\ \n\ \t\t// Run delegates first; they may want to stop propagation beneath us\n\ \t\ti = 0;\n\ \t\twhile ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {\n\ \t\t\tevent.currentTarget = matched.elem;\n\ \n\ \t\t\tj = 0;\n\ \t\t\twhile ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {\n\ \n\ \t\t\t\t// Triggered event must either 1) have no namespace, or\n\ \t\t\t\t// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).\n\ \t\t\t\tif ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {\n\ \n\ \t\t\t\t\tevent.handleObj = handleObj;\n\ \t\t\t\t\tevent.data = handleObj.data;\n\ \n\ \t\t\t\t\tret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )\n\ \t\t\t\t\t\t\t.apply( matched.elem, args );\n\ \n\ \t\t\t\t\tif ( ret !== undefined ) {\n\ \t\t\t\t\t\tif ( (event.result = ret) === false ) {\n\ \t\t\t\t\t\t\tevent.preventDefault();\n\ \t\t\t\t\t\t\tevent.stopPropagation();\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Call the postDispatch hook for the mapped type\n\ \t\tif ( special.postDispatch ) {\n\ \t\t\tspecial.postDispatch.call( this, event );\n\ \t\t}\n\ \n\ \t\treturn event.result;\n\ \t},\n\ \n\ \thandlers: function( event, handlers ) {\n\ \t\tvar sel, handleObj, matches, i,\n\ \t\t\thandlerQueue = [],\n\ \t\t\tdelegateCount = handlers.delegateCount,\n\ \t\t\tcur = event.target;\n\ \n\ \t\t// Find delegate handlers\n\ \t\t// Black-hole SVG instance trees (#13180)\n\ \t\t// Avoid non-left-click bubbling in Firefox (#3861)\n\ \t\tif ( delegateCount && cur.nodeType && (!event.button || event.type !== \"click\") ) {\n\ \n\ \t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\ \n\ \t\t\t\t// Don't check non-elements (#13208)\n\ \t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\ \t\t\t\tif ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== \"click\") ) {\n\ \t\t\t\t\tmatches = [];\n\ \t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\ \t\t\t\t\t\thandleObj = handlers[ i ];\n\ \n\ \t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\ \t\t\t\t\t\tsel = handleObj.selector + \" \";\n\ \n\ \t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\ \t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\ \t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) >= 0 :\n\ \t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t\tif ( matches[ sel ] ) {\n\ \t\t\t\t\t\t\tmatches.push( handleObj );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t\tif ( matches.length ) {\n\ \t\t\t\t\t\thandlerQueue.push({ elem: cur, handlers: matches });\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Add the remaining (directly-bound) handlers\n\ \t\tif ( delegateCount < handlers.length ) {\n\ \t\t\thandlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });\n\ \t\t}\n\ \n\ \t\treturn handlerQueue;\n\ \t},\n\ \n\ \tfix: function( event ) {\n\ \t\tif ( event[ jQuery.expando ] ) {\n\ \t\t\treturn event;\n\ \t\t}\n\ \n\ \t\t// Create a writable copy of the event object and normalize some properties\n\ \t\tvar i, prop, copy,\n\ \t\t\ttype = event.type,\n\ \t\t\toriginalEvent = event,\n\ \t\t\tfixHook = this.fixHooks[ type ];\n\ \n\ \t\tif ( !fixHook ) {\n\ \t\t\tthis.fixHooks[ type ] = fixHook =\n\ \t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\ \t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\ \t\t\t\t{};\n\ \t\t}\n\ \t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\ \n\ \t\tevent = new jQuery.Event( originalEvent );\n\ \n\ \t\ti = copy.length;\n\ \t\twhile ( i-- ) {\n\ \t\t\tprop = copy[ i ];\n\ \t\t\tevent[ prop ] = originalEvent[ prop ];\n\ \t\t}\n\ \n\ \t\t// Support: IE<9\n\ \t\t// Fix target property (#1925)\n\ \t\tif ( !event.target ) {\n\ \t\t\tevent.target = originalEvent.srcElement || document;\n\ \t\t}\n\ \n\ \t\t// Support: Chrome 23+, Safari?\n\ \t\t// Target should not be a text node (#504, #13143)\n\ \t\tif ( event.target.nodeType === 3 ) {\n\ \t\t\tevent.target = event.target.parentNode;\n\ \t\t}\n\ \n\ \t\t// Support: IE<9\n\ \t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\ \t\tevent.metaKey = !!event.metaKey;\n\ \n\ \t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\ \t},\n\ \n\ \t// Includes some event props shared by KeyEvent and MouseEvent\n\ \tprops: \"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),\n\ \n\ \tfixHooks: {},\n\ \n\ \tkeyHooks: {\n\ \t\tprops: \"char charCode key keyCode\".split(\" \"),\n\ \t\tfilter: function( event, original ) {\n\ \n\ \t\t\t// Add which for key events\n\ \t\t\tif ( event.which == null ) {\n\ \t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\ \t\t\t}\n\ \n\ \t\t\treturn event;\n\ \t\t}\n\ \t},\n\ \n\ \tmouseHooks: {\n\ \t\tprops: \"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),\n\ \t\tfilter: function( event, original ) {\n\ \t\t\tvar body, eventDoc, doc,\n\ \t\t\t\tbutton = original.button,\n\ \t\t\t\tfromElement = original.fromElement;\n\ \n\ \t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\ \t\t\tif ( event.pageX == null && original.clientX != null ) {\n\ \t\t\t\teventDoc = event.target.ownerDocument || document;\n\ \t\t\t\tdoc = eventDoc.documentElement;\n\ \t\t\t\tbody = eventDoc.body;\n\ \n\ \t\t\t\tevent.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\ \t\t\t\tevent.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );\n\ \t\t\t}\n\ \n\ \t\t\t// Add relatedTarget, if necessary\n\ \t\t\tif ( !event.relatedTarget && fromElement ) {\n\ \t\t\t\tevent.relatedTarget = fromElement === event.target ? original.toElement : fromElement;\n\ \t\t\t}\n\ \n\ \t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\ \t\t\t// Note: button is not normalized, so don't use it\n\ \t\t\tif ( !event.which && button !== undefined ) {\n\ \t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\ \t\t\t}\n\ \n\ \t\t\treturn event;\n\ \t\t}\n\ \t},\n\ \n\ \tspecial: {\n\ \t\tload: {\n\ \t\t\t// Prevent triggered image.load events from bubbling to window.load\n\ \t\t\tnoBubble: true\n\ \t\t},\n\ \t\tclick: {\n\ \t\t\t// For checkbox, fire native event so checked state will be right\n\ \t\t\ttrigger: function() {\n\ \t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\ \t\t\t\t\tthis.click();\n\ \t\t\t\t\treturn false;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t},\n\ \t\tfocus: {\n\ \t\t\t// Fire native event if possible so blur/focus sequence is correct\n\ \t\t\ttrigger: function() {\n\ \t\t\t\tif ( this !== document.activeElement && this.focus ) {\n\ \t\t\t\t\ttry {\n\ \t\t\t\t\t\tthis.focus();\n\ \t\t\t\t\t\treturn false;\n\ \t\t\t\t\t} catch ( e ) {\n\ \t\t\t\t\t\t// Support: IE<9\n\ \t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\ \t\t\t\t\t\t// let .trigger() run the handlers\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t},\n\ \t\t\tdelegateType: \"focusin\"\n\ \t\t},\n\ \t\tblur: {\n\ \t\t\ttrigger: function() {\n\ \t\t\t\tif ( this === document.activeElement && this.blur ) {\n\ \t\t\t\t\tthis.blur();\n\ \t\t\t\t\treturn false;\n\ \t\t\t\t}\n\ \t\t\t},\n\ \t\t\tdelegateType: \"focusout\"\n\ \t\t},\n\ \n\ \t\tbeforeunload: {\n\ \t\t\tpostDispatch: function( event ) {\n\ \n\ \t\t\t\t// Even when returnValue equals to undefined Firefox will still show alert\n\ \t\t\t\tif ( event.result !== undefined ) {\n\ \t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t},\n\ \n\ \tsimulate: function( type, elem, event, bubble ) {\n\ \t\t// Piggyback on a donor event to simulate a different one.\n\ \t\t// Fake originalEvent to avoid donor's stopPropagation, but if the\n\ \t\t// simulated event prevents default then we do the same on the donor.\n\ \t\tvar e = jQuery.extend(\n\ \t\t\tnew jQuery.Event(),\n\ \t\t\tevent,\n\ \t\t\t{ type: type,\n\ \t\t\t\tisSimulated: true,\n\ \t\t\t\toriginalEvent: {}\n\ \t\t\t}\n\ \t\t);\n\ \t\tif ( bubble ) {\n\ \t\t\tjQuery.event.trigger( e, null, elem );\n\ \t\t} else {\n\ \t\t\tjQuery.event.dispatch.call( elem, e );\n\ \t\t}\n\ \t\tif ( e.isDefaultPrevented() ) {\n\ \t\t\tevent.preventDefault();\n\ \t\t}\n\ \t}\n\ };\n\ \n\ jQuery.removeEvent = document.removeEventListener ?\n\ \tfunction( elem, type, handle ) {\n\ \t\tif ( elem.removeEventListener ) {\n\ \t\t\telem.removeEventListener( type, handle, false );\n\ \t\t}\n\ \t} :\n\ \tfunction( elem, type, handle ) {\n\ \t\tvar name = \"on\" + type;\n\ \n\ \t\tif ( elem.detachEvent ) {\n\ \n\ \t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\ \t\t\t// detachEvent needed property on element, by name of that event, to properly expose it to GC\n\ \t\t\tif ( typeof elem[ name ] === core_strundefined ) {\n\ \t\t\t\telem[ name ] = null;\n\ \t\t\t}\n\ \n\ \t\t\telem.detachEvent( name, handle );\n\ \t\t}\n\ \t};\n\ \n\ jQuery.Event = function( src, props ) {\n\ \t// Allow instantiation without the 'new' keyword\n\ \tif ( !(this instanceof jQuery.Event) ) {\n\ \t\treturn new jQuery.Event( src, props );\n\ \t}\n\ \n\ \t// Event object\n\ \tif ( src && src.type ) {\n\ \t\tthis.originalEvent = src;\n\ \t\tthis.type = src.type;\n\ \n\ \t\t// Events bubbling up the document may have been marked as prevented\n\ \t\t// by a handler lower down the tree; reflect the correct value.\n\ \t\tthis.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||\n\ \t\t\tsrc.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;\n\ \n\ \t// Event type\n\ \t} else {\n\ \t\tthis.type = src;\n\ \t}\n\ \n\ \t// Put explicitly provided properties onto the event object\n\ \tif ( props ) {\n\ \t\tjQuery.extend( this, props );\n\ \t}\n\ \n\ \t// Create a timestamp if incoming event doesn't have one\n\ \tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\ \n\ \t// Mark it as fixed\n\ \tthis[ jQuery.expando ] = true;\n\ };\n\ \n\ // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n\ // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\n\ jQuery.Event.prototype = {\n\ \tisDefaultPrevented: returnFalse,\n\ \tisPropagationStopped: returnFalse,\n\ \tisImmediatePropagationStopped: returnFalse,\n\ \n\ \tpreventDefault: function() {\n\ \t\tvar e = this.originalEvent;\n\ \n\ \t\tthis.isDefaultPrevented = returnTrue;\n\ \t\tif ( !e ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// If preventDefault exists, run it on the original event\n\ \t\tif ( e.preventDefault ) {\n\ \t\t\te.preventDefault();\n\ \n\ \t\t// Support: IE\n\ \t\t// Otherwise set the returnValue property of the original event to false\n\ \t\t} else {\n\ \t\t\te.returnValue = false;\n\ \t\t}\n\ \t},\n\ \tstopPropagation: function() {\n\ \t\tvar e = this.originalEvent;\n\ \n\ \t\tthis.isPropagationStopped = returnTrue;\n\ \t\tif ( !e ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \t\t// If stopPropagation exists, run it on the original event\n\ \t\tif ( e.stopPropagation ) {\n\ \t\t\te.stopPropagation();\n\ \t\t}\n\ \n\ \t\t// Support: IE\n\ \t\t// Set the cancelBubble property of the original event to true\n\ \t\te.cancelBubble = true;\n\ \t},\n\ \tstopImmediatePropagation: function() {\n\ \t\tthis.isImmediatePropagationStopped = returnTrue;\n\ \t\tthis.stopPropagation();\n\ \t}\n\ };\n\ \n\ // Create mouseenter/leave events using mouseover/out and event-time checks\n\ jQuery.each({\n\ \tmouseenter: \"mouseover\",\n\ \tmouseleave: \"mouseout\"\n\ }, function( orig, fix ) {\n\ \tjQuery.event.special[ orig ] = {\n\ \t\tdelegateType: fix,\n\ \t\tbindType: fix,\n\ \n\ \t\thandle: function( event ) {\n\ \t\t\tvar ret,\n\ \t\t\t\ttarget = this,\n\ \t\t\t\trelated = event.relatedTarget,\n\ \t\t\t\thandleObj = event.handleObj;\n\ \n\ \t\t\t// For mousenter/leave call the handler if related is outside the target.\n\ \t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\ \t\t\tif ( !related || (related !== target && !jQuery.contains( target, related )) ) {\n\ \t\t\t\tevent.type = handleObj.origType;\n\ \t\t\t\tret = handleObj.handler.apply( this, arguments );\n\ \t\t\t\tevent.type = fix;\n\ \t\t\t}\n\ \t\t\treturn ret;\n\ \t\t}\n\ \t};\n\ });\n\ \n\ // IE submit delegation\n\ if ( !jQuery.support.submitBubbles ) {\n\ \n\ \tjQuery.event.special.submit = {\n\ \t\tsetup: function() {\n\ \t\t\t// Only need this for delegated form submit events\n\ \t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\ \t\t\t\treturn false;\n\ \t\t\t}\n\ \n\ \t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\ \t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\ \t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\ \t\t\t\tvar elem = e.target,\n\ \t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ? elem.form : undefined;\n\ \t\t\t\tif ( form && !jQuery._data( form, \"submitBubbles\" ) ) {\n\ \t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\ \t\t\t\t\t\tevent._submit_bubble = true;\n\ \t\t\t\t\t});\n\ \t\t\t\t\tjQuery._data( form, \"submitBubbles\", true );\n\ \t\t\t\t}\n\ \t\t\t});\n\ \t\t\t// return undefined since we don't need an event listener\n\ \t\t},\n\ \n\ \t\tpostDispatch: function( event ) {\n\ \t\t\t// If form was submitted by the user, bubble the event up the tree\n\ \t\t\tif ( event._submit_bubble ) {\n\ \t\t\t\tdelete event._submit_bubble;\n\ \t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\ \t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event, true );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t},\n\ \n\ \t\tteardown: function() {\n\ \t\t\t// Only need this for delegated form submit events\n\ \t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\ \t\t\t\treturn false;\n\ \t\t\t}\n\ \n\ \t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\ \t\t\tjQuery.event.remove( this, \"._submit\" );\n\ \t\t}\n\ \t};\n\ }\n\ \n\ // IE change delegation and checkbox/radio fix\n\ if ( !jQuery.support.changeBubbles ) {\n\ \n\ \tjQuery.event.special.change = {\n\ \n\ \t\tsetup: function() {\n\ \n\ \t\t\tif ( rformElems.test( this.nodeName ) ) {\n\ \t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\ \t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\ \t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\ \t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\ \t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\ \t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\ \t\t\t\t\t\t\tthis._just_changed = true;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t});\n\ \t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\ \t\t\t\t\t\tif ( this._just_changed && !event.isTrigger ) {\n\ \t\t\t\t\t\t\tthis._just_changed = false;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\ \t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event, true );\n\ \t\t\t\t\t});\n\ \t\t\t\t}\n\ \t\t\t\treturn false;\n\ \t\t\t}\n\ \t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\ \t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\ \t\t\t\tvar elem = e.target;\n\ \n\ \t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"changeBubbles\" ) ) {\n\ \t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\ \t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\ \t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event, true );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t});\n\ \t\t\t\t\tjQuery._data( elem, \"changeBubbles\", true );\n\ \t\t\t\t}\n\ \t\t\t});\n\ \t\t},\n\ \n\ \t\thandle: function( event ) {\n\ \t\t\tvar elem = event.target;\n\ \n\ \t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\ \t\t\tif ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== \"radio\" && elem.type !== \"checkbox\") ) {\n\ \t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\ \t\t\t}\n\ \t\t},\n\ \n\ \t\tteardown: function() {\n\ \t\t\tjQuery.event.remove( this, \"._change\" );\n\ \n\ \t\t\treturn !rformElems.test( this.nodeName );\n\ \t\t}\n\ \t};\n\ }\n\ \n\ // Create \"bubbling\" focus and blur events\n\ if ( !jQuery.support.focusinBubbles ) {\n\ \tjQuery.each({ focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\ \n\ \t\t// Attach a single capturing handler while someone wants focusin/focusout\n\ \t\tvar attaches = 0,\n\ \t\t\thandler = function( event ) {\n\ \t\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );\n\ \t\t\t};\n\ \n\ \t\tjQuery.event.special[ fix ] = {\n\ \t\t\tsetup: function() {\n\ \t\t\t\tif ( attaches++ === 0 ) {\n\ \t\t\t\t\tdocument.addEventListener( orig, handler, true );\n\ \t\t\t\t}\n\ \t\t\t},\n\ \t\t\tteardown: function() {\n\ \t\t\t\tif ( --attaches === 0 ) {\n\ \t\t\t\t\tdocument.removeEventListener( orig, handler, true );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t};\n\ \t});\n\ }\n\ \n\ jQuery.fn.extend({\n\ \n\ \ton: function( types, selector, data, fn, /*INTERNAL*/ one ) {\n\ \t\tvar type, origFn;\n\ \n\ \t\t// Types can be a map of types/handlers\n\ \t\tif ( typeof types === \"object\" ) {\n\ \t\t\t// ( types-Object, selector, data )\n\ \t\t\tif ( typeof selector !== \"string\" ) {\n\ \t\t\t\t// ( types-Object, data )\n\ \t\t\t\tdata = data || selector;\n\ \t\t\t\tselector = undefined;\n\ \t\t\t}\n\ \t\t\tfor ( type in types ) {\n\ \t\t\t\tthis.on( type, selector, data, types[ type ], one );\n\ \t\t\t}\n\ \t\t\treturn this;\n\ \t\t}\n\ \n\ \t\tif ( data == null && fn == null ) {\n\ \t\t\t// ( types, fn )\n\ \t\t\tfn = selector;\n\ \t\t\tdata = selector = undefined;\n\ \t\t} else if ( fn == null ) {\n\ \t\t\tif ( typeof selector === \"string\" ) {\n\ \t\t\t\t// ( types, selector, fn )\n\ \t\t\t\tfn = data;\n\ \t\t\t\tdata = undefined;\n\ \t\t\t} else {\n\ \t\t\t\t// ( types, data, fn )\n\ \t\t\t\tfn = data;\n\ \t\t\t\tdata = selector;\n\ \t\t\t\tselector = undefined;\n\ \t\t\t}\n\ \t\t}\n\ \t\tif ( fn === false ) {\n\ \t\t\tfn = returnFalse;\n\ \t\t} else if ( !fn ) {\n\ \t\t\treturn this;\n\ \t\t}\n\ \n\ \t\tif ( one === 1 ) {\n\ \t\t\torigFn = fn;\n\ \t\t\tfn = function( event ) {\n\ \t\t\t\t// Can use an empty set, since event contains the info\n\ \t\t\t\tjQuery().off( event );\n\ \t\t\t\treturn origFn.apply( this, arguments );\n\ \t\t\t};\n\ \t\t\t// Use same guid so caller can remove using origFn\n\ \t\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\ \t\t}\n\ \t\treturn this.each( function() {\n\ \t\t\tjQuery.event.add( this, types, fn, data, selector );\n\ \t\t});\n\ \t},\n\ \tone: function( types, selector, data, fn ) {\n\ \t\treturn this.on( types, selector, data, fn, 1 );\n\ \t},\n\ \toff: function( types, selector, fn ) {\n\ \t\tvar handleObj, type;\n\ \t\tif ( types && types.preventDefault && types.handleObj ) {\n\ \t\t\t// ( event ) dispatched jQuery.Event\n\ \t\t\thandleObj = types.handleObj;\n\ \t\t\tjQuery( types.delegateTarget ).off(\n\ \t\t\t\thandleObj.namespace ? handleObj.origType + \".\" + handleObj.namespace : handleObj.origType,\n\ \t\t\t\thandleObj.selector,\n\ \t\t\t\thandleObj.handler\n\ \t\t\t);\n\ \t\t\treturn this;\n\ \t\t}\n\ \t\tif ( typeof types === \"object\" ) {\n\ \t\t\t// ( types-object [, selector] )\n\ \t\t\tfor ( type in types ) {\n\ \t\t\t\tthis.off( type, selector, types[ type ] );\n\ \t\t\t}\n\ \t\t\treturn this;\n\ \t\t}\n\ \t\tif ( selector === false || typeof selector === \"function\" ) {\n\ \t\t\t// ( types [, fn] )\n\ \t\t\tfn = selector;\n\ \t\t\tselector = undefined;\n\ \t\t}\n\ \t\tif ( fn === false ) {\n\ \t\t\tfn = returnFalse;\n\ \t\t}\n\ \t\treturn this.each(function() {\n\ \t\t\tjQuery.event.remove( this, types, fn, selector );\n\ \t\t});\n\ \t},\n\ \n\ \tbind: function( types, data, fn ) {\n\ \t\treturn this.on( types, null, data, fn );\n\ \t},\n\ \tunbind: function( types, fn ) {\n\ \t\treturn this.off( types, null, fn );\n\ \t},\n\ \n\ \tdelegate: function( selector, types, data, fn ) {\n\ \t\treturn this.on( types, selector, data, fn );\n\ \t},\n\ \tundelegate: function( selector, types, fn ) {\n\ \t\t// ( namespace ) or ( selector, types [, fn] )\n\ \t\treturn arguments.length === 1 ? this.off( selector, \"**\" ) : this.off( types, selector || \"**\", fn );\n\ \t},\n\ \n\ \ttrigger: function( type, data ) {\n\ \t\treturn this.each(function() {\n\ \t\t\tjQuery.event.trigger( type, data, this );\n\ \t\t});\n\ \t},\n\ \ttriggerHandler: function( type, data ) {\n\ \t\tvar elem = this[0];\n\ \t\tif ( elem ) {\n\ \t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\ \t\t}\n\ \t}\n\ });\n\ /*!\n\ * Sizzle CSS Selector Engine\n\ * Copyright 2012 jQuery Foundation and other contributors\n\ * Released under the MIT license\n\ * http://sizzlejs.com/\n\ */\n\ (function( window, undefined ) {\n\ \n\ var i,\n\ \tcachedruns,\n\ \tExpr,\n\ \tgetText,\n\ \tisXML,\n\ \tcompile,\n\ \thasDuplicate,\n\ \toutermostContext,\n\ \n\ \t// Local document vars\n\ \tsetDocument,\n\ \tdocument,\n\ \tdocElem,\n\ \tdocumentIsXML,\n\ \trbuggyQSA,\n\ \trbuggyMatches,\n\ \tmatches,\n\ \tcontains,\n\ \tsortOrder,\n\ \n\ \t// Instance-specific data\n\ \texpando = \"sizzle\" + -(new Date()),\n\ \tpreferredDoc = window.document,\n\ \tsupport = {},\n\ \tdirruns = 0,\n\ \tdone = 0,\n\ \tclassCache = createCache(),\n\ \ttokenCache = createCache(),\n\ \tcompilerCache = createCache(),\n\ \n\ \t// General-purpose constants\n\ \tstrundefined = typeof undefined,\n\ \tMAX_NEGATIVE = 1 << 31,\n\ \n\ \t// Array methods\n\ \tarr = [],\n\ \tpop = arr.pop,\n\ \tpush = arr.push,\n\ \tslice = arr.slice,\n\ \t// Use a stripped-down indexOf if we can't use a native one\n\ \tindexOf = arr.indexOf || function( elem ) {\n\ \t\tvar i = 0,\n\ \t\t\tlen = this.length;\n\ \t\tfor ( ; i < len; i++ ) {\n\ \t\t\tif ( this[i] === elem ) {\n\ \t\t\t\treturn i;\n\ \t\t\t}\n\ \t\t}\n\ \t\treturn -1;\n\ \t},\n\ \n\ \n\ \t// Regular expressions\n\ \n\ \t// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace\n\ \twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\ \\\\f]\",\n\ \t// http://www.w3.org/TR/css3-syntax/#characters\n\ \tcharacterEncoding = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\ \n\ \t// Loosely modeled on CSS identifier characters\n\ \t// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors\n\ \t// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\ \tidentifier = characterEncoding.replace( \"w\", \"w#\" ),\n\ \n\ \t// Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors\n\ \toperators = \"([*^$|!~]?=)\",\n\ \tattributes = \"\\\\[\" + whitespace + \"*(\" + characterEncoding + \")\" + whitespace +\n\ \t\t\"*(?:\" + operators + whitespace + \"*(?:(['\\\"])((?:\\\\\\\\.|[^\\\\\\\\])*?)\\\\3|(\" + identifier + \")|)|)\" + whitespace + \"*\\\\]\",\n\ \n\ \t// Prefer arguments quoted,\n\ \t// then not containing pseudos/brackets,\n\ \t// then attribute selectors/non-parenthetical expressions,\n\ \t// then anything else\n\ \t// These preferences are here to reduce the number of selectors\n\ \t// needing tokenize in the PSEUDO preFilter\n\ \tpseudos = \":(\" + characterEncoding + \")(?:\\\\(((['\\\"])((?:\\\\\\\\.|[^\\\\\\\\])*?)\\\\3|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes.replace( 3, 8 ) + \")*)|.*)\\\\)|)\",\n\ \n\ \t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\ \trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\ \n\ \trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\ \trcombinators = new RegExp( \"^\" + whitespace + \"*([\\\\x20\\\\t\\\\r\\\\n\ \\\\f>+~])\" + whitespace + \"*\" ),\n\ \trpseudo = new RegExp( pseudos ),\n\ \tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\ \n\ \tmatchExpr = {\n\ \t\t\"ID\": new RegExp( \"^#(\" + characterEncoding + \")\" ),\n\ \t\t\"CLASS\": new RegExp( \"^\\\\.(\" + characterEncoding + \")\" ),\n\ \t\t\"NAME\": new RegExp( \"^\\\\[name=['\\\"]?(\" + characterEncoding + \")['\\\"]?\\\\]\" ),\n\ \t\t\"TAG\": new RegExp( \"^(\" + characterEncoding.replace( \"w\", \"w*\" ) + \")\" ),\n\ \t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\ \t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\ \t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\ \t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\ \t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\ \t\t// For use in libraries implementing .is()\n\ \t\t// We use this for POS matching in `select`\n\ \t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\ \t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\ \t},\n\ \n\ \trsibling = /[\\x20\\t\\r\\n\ \\f]*[+~]/,\n\ \n\ \trnative = /^[^{]+\\{\\s*\\[native code/,\n\ \n\ \t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\ \trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\ \n\ \trinputs = /^(?:input|select|textarea|button)$/i,\n\ \trheader = /^h\\d$/i,\n\ \n\ \trescape = /'|\\\\/g,\n\ \trattributeQuotes = /\\=[\\x20\\t\\r\\n\ \\f]*([^'\"\\]]*)[\\x20\\t\\r\\n\ \\f]*\\]/g,\n\ \n\ \t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\ \trunescape = /\\\\([\\da-fA-F]{1,6}[\\x20\\t\\r\\n\ \\f]?|.)/g,\n\ \tfunescape = function( _, escaped ) {\n\ \t\tvar high = \"0x\" + escaped - 0x10000;\n\ \t\t// NaN means non-codepoint\n\ \t\treturn high !== high ?\n\ \t\t\tescaped :\n\ \t\t\t// BMP codepoint\n\ \t\t\thigh < 0 ?\n\ \t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\ \t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\ \t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\ \t};\n\ \n\ // Use a stripped-down slice if we can't use a native one\n\ try {\n\ \tslice.call( preferredDoc.documentElement.childNodes, 0 )[0].nodeType;\n\ } catch ( e ) {\n\ \tslice = function( i ) {\n\ \t\tvar elem,\n\ \t\t\tresults = [];\n\ \t\twhile ( (elem = this[i++]) ) {\n\ \t\t\tresults.push( elem );\n\ \t\t}\n\ \t\treturn results;\n\ \t};\n\ }\n\ \n\ /**\n\ * For feature detection\n\ * @param {Function} fn The function to test for native support\n\ */\n\ function isNative( fn ) {\n\ \treturn rnative.test( fn + \"\" );\n\ }\n\ \n\ /**\n\ * Create key-value caches of limited size\n\ * @returns {Function(string, Object)} Returns the Object data after storing it on itself with\n\ *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n\ *\tdeleting the oldest entry\n\ */\n\ function createCache() {\n\ \tvar cache,\n\ \t\tkeys = [];\n\ \n\ \treturn (cache = function( key, value ) {\n\ \t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\ \t\tif ( keys.push( key += \" \" ) > Expr.cacheLength ) {\n\ \t\t\t// Only keep the most recent entries\n\ \t\t\tdelete cache[ keys.shift() ];\n\ \t\t}\n\ \t\treturn (cache[ key ] = value);\n\ \t});\n\ }\n\ \n\ /**\n\ * Mark a function for special use by Sizzle\n\ * @param {Function} fn The function to mark\n\ */\n\ function markFunction( fn ) {\n\ \tfn[ expando ] = true;\n\ \treturn fn;\n\ }\n\ \n\ /**\n\ * Support testing using an element\n\ * @param {Function} fn Passed the created div and expects a boolean result\n\ */\n\ function assert( fn ) {\n\ \tvar div = document.createElement(\"div\");\n\ \n\ \ttry {\n\ \t\treturn fn( div );\n\ \t} catch (e) {\n\ \t\treturn false;\n\ \t} finally {\n\ \t\t// release memory in IE\n\ \t\tdiv = null;\n\ \t}\n\ }\n\ \n\ function Sizzle( selector, context, results, seed ) {\n\ \tvar match, elem, m, nodeType,\n\ \t\t// QSA vars\n\ \t\ti, groups, old, nid, newContext, newSelector;\n\ \n\ \tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\ \t\tsetDocument( context );\n\ \t}\n\ \n\ \tcontext = context || document;\n\ \tresults = results || [];\n\ \n\ \tif ( !selector || typeof selector !== \"string\" ) {\n\ \t\treturn results;\n\ \t}\n\ \n\ \tif ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {\n\ \t\treturn [];\n\ \t}\n\ \n\ \tif ( !documentIsXML && !seed ) {\n\ \n\ \t\t// Shortcuts\n\ \t\tif ( (match = rquickExpr.exec( selector )) ) {\n\ \t\t\t// Speed-up: Sizzle(\"#ID\")\n\ \t\t\tif ( (m = match[1]) ) {\n\ \t\t\t\tif ( nodeType === 9 ) {\n\ \t\t\t\t\telem = context.getElementById( m );\n\ \t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\ \t\t\t\t\t// nodes that are no longer in the document #6963\n\ \t\t\t\t\tif ( elem && elem.parentNode ) {\n\ \t\t\t\t\t\t// Handle the case where IE, Opera, and Webkit return items\n\ \t\t\t\t\t\t// by name instead of ID\n\ \t\t\t\t\t\tif ( elem.id === m ) {\n\ \t\t\t\t\t\t\tresults.push( elem );\n\ \t\t\t\t\t\t\treturn results;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t} else {\n\ \t\t\t\t\t\treturn results;\n\ \t\t\t\t\t}\n\ \t\t\t\t} else {\n\ \t\t\t\t\t// Context is not a document\n\ \t\t\t\t\tif ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&\n\ \t\t\t\t\t\tcontains( context, elem ) && elem.id === m ) {\n\ \t\t\t\t\t\tresults.push( elem );\n\ \t\t\t\t\t\treturn results;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \n\ \t\t\t// Speed-up: Sizzle(\"TAG\")\n\ \t\t\t} else if ( match[2] ) {\n\ \t\t\t\tpush.apply( results, slice.call(context.getElementsByTagName( selector ), 0) );\n\ \t\t\t\treturn results;\n\ \n\ \t\t\t// Speed-up: Sizzle(\".CLASS\")\n\ \t\t\t} else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) {\n\ \t\t\t\tpush.apply( results, slice.call(context.getElementsByClassName( m ), 0) );\n\ \t\t\t\treturn results;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// QSA path\n\ \t\tif ( support.qsa && !rbuggyQSA.test(selector) ) {\n\ \t\t\told = true;\n\ \t\t\tnid = expando;\n\ \t\t\tnewContext = context;\n\ \t\t\tnewSelector = nodeType === 9 && selector;\n\ \n\ \t\t\t// qSA works strangely on Element-rooted queries\n\ \t\t\t// We can work around this by specifying an extra ID on the root\n\ \t\t\t// and working up from there (Thanks to Andrew Dupont for the technique)\n\ \t\t\t// IE 8 doesn't work on object elements\n\ \t\t\tif ( nodeType === 1 && context.nodeName.toLowerCase() !== \"object\" ) {\n\ \t\t\t\tgroups = tokenize( selector );\n\ \n\ \t\t\t\tif ( (old = context.getAttribute(\"id\")) ) {\n\ \t\t\t\t\tnid = old.replace( rescape, \"\\\\$&\" );\n\ \t\t\t\t} else {\n\ \t\t\t\t\tcontext.setAttribute( \"id\", nid );\n\ \t\t\t\t}\n\ \t\t\t\tnid = \"[id='\" + nid + \"'] \";\n\ \n\ \t\t\t\ti = groups.length;\n\ \t\t\t\twhile ( i-- ) {\n\ \t\t\t\t\tgroups[i] = nid + toSelector( groups[i] );\n\ \t\t\t\t}\n\ \t\t\t\tnewContext = rsibling.test( selector ) && context.parentNode || context;\n\ \t\t\t\tnewSelector = groups.join(\",\");\n\ \t\t\t}\n\ \n\ \t\t\tif ( newSelector ) {\n\ \t\t\t\ttry {\n\ \t\t\t\t\tpush.apply( results, slice.call( newContext.querySelectorAll(\n\ \t\t\t\t\t\tnewSelector\n\ \t\t\t\t\t), 0 ) );\n\ \t\t\t\t\treturn results;\n\ \t\t\t\t} catch(qsaError) {\n\ \t\t\t\t} finally {\n\ \t\t\t\t\tif ( !old ) {\n\ \t\t\t\t\t\tcontext.removeAttribute(\"id\");\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \t// All others\n\ \treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n\ }\n\ \n\ /**\n\ * Detect xml\n\ * @param {Element|Object} elem An element or a document\n\ */\n\ isXML = Sizzle.isXML = function( elem ) {\n\ \t// documentElement is verified for cases where it doesn't yet exist\n\ \t// (such as loading iframes in IE - #4833)\n\ \tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\ \treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n\ };\n\ \n\ /**\n\ * Sets document-related variables once based on the current document\n\ * @param {Element|Object} [doc] An element or document object to use to set the document\n\ * @returns {Object} Returns the current document\n\ */\n\ setDocument = Sizzle.setDocument = function( node ) {\n\ \tvar doc = node ? node.ownerDocument || node : preferredDoc;\n\ \n\ \t// If no document and documentElement is available, return\n\ \tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\ \t\treturn document;\n\ \t}\n\ \n\ \t// Set our document\n\ \tdocument = doc;\n\ \tdocElem = doc.documentElement;\n\ \n\ \t// Support tests\n\ \tdocumentIsXML = isXML( doc );\n\ \n\ \t// Check if getElementsByTagName(\"*\") returns only elements\n\ \tsupport.tagNameNoComments = assert(function( div ) {\n\ \t\tdiv.appendChild( doc.createComment(\"\") );\n\ \t\treturn !div.getElementsByTagName(\"*\").length;\n\ \t});\n\ \n\ \t// Check if attributes should be retrieved by attribute nodes\n\ \tsupport.attributes = assert(function( div ) {\n\ \t\tdiv.innerHTML = \"\";\n\ \t\tvar type = typeof div.lastChild.getAttribute(\"multiple\");\n\ \t\t// IE8 returns a string for some attributes even when not present\n\ \t\treturn type !== \"boolean\" && type !== \"string\";\n\ \t});\n\ \n\ \t// Check if getElementsByClassName can be trusted\n\ \tsupport.getByClassName = assert(function( div ) {\n\ \t\t// Opera can't find a second classname (in 9.6)\n\ \t\tdiv.innerHTML = \"\";\n\ \t\tif ( !div.getElementsByClassName || !div.getElementsByClassName(\"e\").length ) {\n\ \t\t\treturn false;\n\ \t\t}\n\ \n\ \t\t// Safari 3.2 caches class attributes and doesn't catch changes\n\ \t\tdiv.lastChild.className = \"e\";\n\ \t\treturn div.getElementsByClassName(\"e\").length === 2;\n\ \t});\n\ \n\ \t// Check if getElementById returns elements by name\n\ \t// Check if getElementsByName privileges form controls or returns elements by ID\n\ \tsupport.getByName = assert(function( div ) {\n\ \t\t// Inject content\n\ \t\tdiv.id = expando + 0;\n\ \t\tdiv.innerHTML = \"
\";\n\ \t\tdocElem.insertBefore( div, docElem.firstChild );\n\ \n\ \t\t// Test\n\ \t\tvar pass = doc.getElementsByName &&\n\ \t\t\t// buggy browsers will return fewer than the correct 2\n\ \t\t\tdoc.getElementsByName( expando ).length === 2 +\n\ \t\t\t// buggy browsers will return more than the correct 0\n\ \t\t\tdoc.getElementsByName( expando + 0 ).length;\n\ \t\tsupport.getIdNotName = !doc.getElementById( expando );\n\ \n\ \t\t// Cleanup\n\ \t\tdocElem.removeChild( div );\n\ \n\ \t\treturn pass;\n\ \t});\n\ \n\ \t// IE6/7 return modified attributes\n\ \tExpr.attrHandle = assert(function( div ) {\n\ \t\tdiv.innerHTML = \"\";\n\ \t\treturn div.firstChild && typeof div.firstChild.getAttribute !== strundefined &&\n\ \t\t\tdiv.firstChild.getAttribute(\"href\") === \"#\";\n\ \t}) ?\n\ \t\t{} :\n\ \t\t{\n\ \t\t\t\"href\": function( elem ) {\n\ \t\t\t\treturn elem.getAttribute( \"href\", 2 );\n\ \t\t\t},\n\ \t\t\t\"type\": function( elem ) {\n\ \t\t\t\treturn elem.getAttribute(\"type\");\n\ \t\t\t}\n\ \t\t};\n\ \n\ \t// ID find and filter\n\ \tif ( support.getIdNotName ) {\n\ \t\tExpr.find[\"ID\"] = function( id, context ) {\n\ \t\t\tif ( typeof context.getElementById !== strundefined && !documentIsXML ) {\n\ \t\t\t\tvar m = context.getElementById( id );\n\ \t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\ \t\t\t\t// nodes that are no longer in the document #6963\n\ \t\t\t\treturn m && m.parentNode ? [m] : [];\n\ \t\t\t}\n\ \t\t};\n\ \t\tExpr.filter[\"ID\"] = function( id ) {\n\ \t\t\tvar attrId = id.replace( runescape, funescape );\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\ \t\t\t};\n\ \t\t};\n\ \t} else {\n\ \t\tExpr.find[\"ID\"] = function( id, context ) {\n\ \t\t\tif ( typeof context.getElementById !== strundefined && !documentIsXML ) {\n\ \t\t\t\tvar m = context.getElementById( id );\n\ \n\ \t\t\t\treturn m ?\n\ \t\t\t\t\tm.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode(\"id\").value === id ?\n\ \t\t\t\t\t\t[m] :\n\ \t\t\t\t\t\tundefined :\n\ \t\t\t\t\t[];\n\ \t\t\t}\n\ \t\t};\n\ \t\tExpr.filter[\"ID\"] = function( id ) {\n\ \t\t\tvar attrId = id.replace( runescape, funescape );\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\tvar node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode(\"id\");\n\ \t\t\t\treturn node && node.value === attrId;\n\ \t\t\t};\n\ \t\t};\n\ \t}\n\ \n\ \t// Tag\n\ \tExpr.find[\"TAG\"] = support.tagNameNoComments ?\n\ \t\tfunction( tag, context ) {\n\ \t\t\tif ( typeof context.getElementsByTagName !== strundefined ) {\n\ \t\t\t\treturn context.getElementsByTagName( tag );\n\ \t\t\t}\n\ \t\t} :\n\ \t\tfunction( tag, context ) {\n\ \t\t\tvar elem,\n\ \t\t\t\ttmp = [],\n\ \t\t\t\ti = 0,\n\ \t\t\t\tresults = context.getElementsByTagName( tag );\n\ \n\ \t\t\t// Filter out possible comments\n\ \t\t\tif ( tag === \"*\" ) {\n\ \t\t\t\twhile ( (elem = results[i++]) ) {\n\ \t\t\t\t\tif ( elem.nodeType === 1 ) {\n\ \t\t\t\t\t\ttmp.push( elem );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \n\ \t\t\t\treturn tmp;\n\ \t\t\t}\n\ \t\t\treturn results;\n\ \t\t};\n\ \n\ \t// Name\n\ \tExpr.find[\"NAME\"] = support.getByName && function( tag, context ) {\n\ \t\tif ( typeof context.getElementsByName !== strundefined ) {\n\ \t\t\treturn context.getElementsByName( name );\n\ \t\t}\n\ \t};\n\ \n\ \t// Class\n\ \tExpr.find[\"CLASS\"] = support.getByClassName && function( className, context ) {\n\ \t\tif ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) {\n\ \t\t\treturn context.getElementsByClassName( className );\n\ \t\t}\n\ \t};\n\ \n\ \t// QSA and matchesSelector support\n\ \n\ \t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\ \trbuggyMatches = [];\n\ \n\ \t// qSa(:focus) reports false when true (Chrome 21),\n\ \t// no need to also add to buggyMatches since matches checks buggyQSA\n\ \t// A support test would require too much code (would include document ready)\n\ \trbuggyQSA = [ \":focus\" ];\n\ \n\ \tif ( (support.qsa = isNative(doc.querySelectorAll)) ) {\n\ \t\t// Build QSA regex\n\ \t\t// Regex strategy adopted from Diego Perini\n\ \t\tassert(function( div ) {\n\ \t\t\t// Select is set to empty string on purpose\n\ \t\t\t// This is to test IE's treatment of not explictly\n\ \t\t\t// setting a boolean content attribute,\n\ \t\t\t// since its presence should be enough\n\ \t\t\t// http://bugs.jquery.com/ticket/12359\n\ \t\t\tdiv.innerHTML = \"\";\n\ \n\ \t\t\t// IE8 - Some boolean attributes are not treated correctly\n\ \t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\ \t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:checked|disabled|ismap|multiple|readonly|selected|value)\" );\n\ \t\t\t}\n\ \n\ \t\t\t// Webkit/Opera - :checked should return selected option elements\n\ \t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\ \t\t\t// IE8 throws error here and will not see later tests\n\ \t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\ \t\t\t\trbuggyQSA.push(\":checked\");\n\ \t\t\t}\n\ \t\t});\n\ \n\ \t\tassert(function( div ) {\n\ \n\ \t\t\t// Opera 10-12/IE8 - ^= $= *= and empty values\n\ \t\t\t// Should not select anything\n\ \t\t\tdiv.innerHTML = \"\";\n\ \t\t\tif ( div.querySelectorAll(\"[i^='']\").length ) {\n\ \t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:\\\"\\\"|'')\" );\n\ \t\t\t}\n\ \n\ \t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\ \t\t\t// IE8 throws error here and will not see later tests\n\ \t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\ \t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\ \t\t\t}\n\ \n\ \t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\ \t\t\tdiv.querySelectorAll(\"*,:x\");\n\ \t\t\trbuggyQSA.push(\",.*:\");\n\ \t\t});\n\ \t}\n\ \n\ \tif ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector ||\n\ \t\tdocElem.mozMatchesSelector ||\n\ \t\tdocElem.webkitMatchesSelector ||\n\ \t\tdocElem.oMatchesSelector ||\n\ \t\tdocElem.msMatchesSelector) )) ) {\n\ \n\ \t\tassert(function( div ) {\n\ \t\t\t// Check to see if it's possible to do matchesSelector\n\ \t\t\t// on a disconnected node (IE 9)\n\ \t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\ \n\ \t\t\t// This should fail with an exception\n\ \t\t\t// Gecko does not error, returns false instead\n\ \t\t\tmatches.call( div, \"[s!='']:x\" );\n\ \t\t\trbuggyMatches.push( \"!=\", pseudos );\n\ \t\t});\n\ \t}\n\ \n\ \trbuggyQSA = new RegExp( rbuggyQSA.join(\"|\") );\n\ \trbuggyMatches = new RegExp( rbuggyMatches.join(\"|\") );\n\ \n\ \t// Element contains another\n\ \t// Purposefully does not implement inclusive descendent\n\ \t// As in, an element does not contain itself\n\ \tcontains = isNative(docElem.contains) || docElem.compareDocumentPosition ?\n\ \t\tfunction( a, b ) {\n\ \t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\ \t\t\t\tbup = b && b.parentNode;\n\ \t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\ \t\t\t\tadown.contains ?\n\ \t\t\t\t\tadown.contains( bup ) :\n\ \t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\ \t\t\t));\n\ \t\t} :\n\ \t\tfunction( a, b ) {\n\ \t\t\tif ( b ) {\n\ \t\t\t\twhile ( (b = b.parentNode) ) {\n\ \t\t\t\t\tif ( b === a ) {\n\ \t\t\t\t\t\treturn true;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t\treturn false;\n\ \t\t};\n\ \n\ \t// Document order sorting\n\ \tsortOrder = docElem.compareDocumentPosition ?\n\ \tfunction( a, b ) {\n\ \t\tvar compare;\n\ \n\ \t\tif ( a === b ) {\n\ \t\t\thasDuplicate = true;\n\ \t\t\treturn 0;\n\ \t\t}\n\ \n\ \t\tif ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) {\n\ \t\t\tif ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) {\n\ \t\t\t\tif ( a === doc || contains( preferredDoc, a ) ) {\n\ \t\t\t\t\treturn -1;\n\ \t\t\t\t}\n\ \t\t\t\tif ( b === doc || contains( preferredDoc, b ) ) {\n\ \t\t\t\t\treturn 1;\n\ \t\t\t\t}\n\ \t\t\t\treturn 0;\n\ \t\t\t}\n\ \t\t\treturn compare & 4 ? -1 : 1;\n\ \t\t}\n\ \n\ \t\treturn a.compareDocumentPosition ? -1 : 1;\n\ \t} :\n\ \tfunction( a, b ) {\n\ \t\tvar cur,\n\ \t\t\ti = 0,\n\ \t\t\taup = a.parentNode,\n\ \t\t\tbup = b.parentNode,\n\ \t\t\tap = [ a ],\n\ \t\t\tbp = [ b ];\n\ \n\ \t\t// Exit early if the nodes are identical\n\ \t\tif ( a === b ) {\n\ \t\t\thasDuplicate = true;\n\ \t\t\treturn 0;\n\ \n\ \t\t// Parentless nodes are either documents or disconnected\n\ \t\t} else if ( !aup || !bup ) {\n\ \t\t\treturn a === doc ? -1 :\n\ \t\t\t\tb === doc ? 1 :\n\ \t\t\t\taup ? -1 :\n\ \t\t\t\tbup ? 1 :\n\ \t\t\t\t0;\n\ \n\ \t\t// If the nodes are siblings, we can do a quick check\n\ \t\t} else if ( aup === bup ) {\n\ \t\t\treturn siblingCheck( a, b );\n\ \t\t}\n\ \n\ \t\t// Otherwise we need full lists of their ancestors for comparison\n\ \t\tcur = a;\n\ \t\twhile ( (cur = cur.parentNode) ) {\n\ \t\t\tap.unshift( cur );\n\ \t\t}\n\ \t\tcur = b;\n\ \t\twhile ( (cur = cur.parentNode) ) {\n\ \t\t\tbp.unshift( cur );\n\ \t\t}\n\ \n\ \t\t// Walk down the tree looking for a discrepancy\n\ \t\twhile ( ap[i] === bp[i] ) {\n\ \t\t\ti++;\n\ \t\t}\n\ \n\ \t\treturn i ?\n\ \t\t\t// Do a sibling check if the nodes have a common ancestor\n\ \t\t\tsiblingCheck( ap[i], bp[i] ) :\n\ \n\ \t\t\t// Otherwise nodes in our document sort first\n\ \t\t\tap[i] === preferredDoc ? -1 :\n\ \t\t\tbp[i] === preferredDoc ? 1 :\n\ \t\t\t0;\n\ \t};\n\ \n\ \t// Always assume the presence of duplicates if sort doesn't\n\ \t// pass them to our comparison function (as in Google Chrome).\n\ \thasDuplicate = false;\n\ \t[0, 0].sort( sortOrder );\n\ \tsupport.detectDuplicates = hasDuplicate;\n\ \n\ \treturn document;\n\ };\n\ \n\ Sizzle.matches = function( expr, elements ) {\n\ \treturn Sizzle( expr, null, null, elements );\n\ };\n\ \n\ Sizzle.matchesSelector = function( elem, expr ) {\n\ \t// Set document vars if needed\n\ \tif ( ( elem.ownerDocument || elem ) !== document ) {\n\ \t\tsetDocument( elem );\n\ \t}\n\ \n\ \t// Make sure that attribute selectors are quoted\n\ \texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\ \n\ \t// rbuggyQSA always contains :focus, so no need for an existence check\n\ \tif ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) {\n\ \t\ttry {\n\ \t\t\tvar ret = matches.call( elem, expr );\n\ \n\ \t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\ \t\t\tif ( ret || support.disconnectedMatch ||\n\ \t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\ \t\t\t\t\t// fragment in IE 9\n\ \t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\ \t\t\t\treturn ret;\n\ \t\t\t}\n\ \t\t} catch(e) {}\n\ \t}\n\ \n\ \treturn Sizzle( expr, document, null, [elem] ).length > 0;\n\ };\n\ \n\ Sizzle.contains = function( context, elem ) {\n\ \t// Set document vars if needed\n\ \tif ( ( context.ownerDocument || context ) !== document ) {\n\ \t\tsetDocument( context );\n\ \t}\n\ \treturn contains( context, elem );\n\ };\n\ \n\ Sizzle.attr = function( elem, name ) {\n\ \tvar val;\n\ \n\ \t// Set document vars if needed\n\ \tif ( ( elem.ownerDocument || elem ) !== document ) {\n\ \t\tsetDocument( elem );\n\ \t}\n\ \n\ \tif ( !documentIsXML ) {\n\ \t\tname = name.toLowerCase();\n\ \t}\n\ \tif ( (val = Expr.attrHandle[ name ]) ) {\n\ \t\treturn val( elem );\n\ \t}\n\ \tif ( documentIsXML || support.attributes ) {\n\ \t\treturn elem.getAttribute( name );\n\ \t}\n\ \treturn ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ?\n\ \t\tname :\n\ \t\tval && val.specified ? val.value : null;\n\ };\n\ \n\ Sizzle.error = function( msg ) {\n\ \tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n\ };\n\ \n\ // Document sorting and removing duplicates\n\ Sizzle.uniqueSort = function( results ) {\n\ \tvar elem,\n\ \t\tduplicates = [],\n\ \t\ti = 1,\n\ \t\tj = 0;\n\ \n\ \t// Unless we *know* we can detect duplicates, assume their presence\n\ \thasDuplicate = !support.detectDuplicates;\n\ \tresults.sort( sortOrder );\n\ \n\ \tif ( hasDuplicate ) {\n\ \t\tfor ( ; (elem = results[i]); i++ ) {\n\ \t\t\tif ( elem === results[ i - 1 ] ) {\n\ \t\t\t\tj = duplicates.push( i );\n\ \t\t\t}\n\ \t\t}\n\ \t\twhile ( j-- ) {\n\ \t\t\tresults.splice( duplicates[ j ], 1 );\n\ \t\t}\n\ \t}\n\ \n\ \treturn results;\n\ };\n\ \n\ function siblingCheck( a, b ) {\n\ \tvar cur = b && a,\n\ \t\tdiff = cur && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE );\n\ \n\ \t// Use IE sourceIndex if available on both nodes\n\ \tif ( diff ) {\n\ \t\treturn diff;\n\ \t}\n\ \n\ \t// Check if b follows a\n\ \tif ( cur ) {\n\ \t\twhile ( (cur = cur.nextSibling) ) {\n\ \t\t\tif ( cur === b ) {\n\ \t\t\t\treturn -1;\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \treturn a ? 1 : -1;\n\ }\n\ \n\ // Returns a function to use in pseudos for input types\n\ function createInputPseudo( type ) {\n\ \treturn function( elem ) {\n\ \t\tvar name = elem.nodeName.toLowerCase();\n\ \t\treturn name === \"input\" && elem.type === type;\n\ \t};\n\ }\n\ \n\ // Returns a function to use in pseudos for buttons\n\ function createButtonPseudo( type ) {\n\ \treturn function( elem ) {\n\ \t\tvar name = elem.nodeName.toLowerCase();\n\ \t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\ \t};\n\ }\n\ \n\ // Returns a function to use in pseudos for positionals\n\ function createPositionalPseudo( fn ) {\n\ \treturn markFunction(function( argument ) {\n\ \t\targument = +argument;\n\ \t\treturn markFunction(function( seed, matches ) {\n\ \t\t\tvar j,\n\ \t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\ \t\t\t\ti = matchIndexes.length;\n\ \n\ \t\t\t// Match elements found at the specified indexes\n\ \t\t\twhile ( i-- ) {\n\ \t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\ \t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t});\n\ \t});\n\ }\n\ \n\ /**\n\ * Utility function for retrieving the text value of an array of DOM nodes\n\ * @param {Array|Element} elem\n\ */\n\ getText = Sizzle.getText = function( elem ) {\n\ \tvar node,\n\ \t\tret = \"\",\n\ \t\ti = 0,\n\ \t\tnodeType = elem.nodeType;\n\ \n\ \tif ( !nodeType ) {\n\ \t\t// If no nodeType, this is expected to be an array\n\ \t\tfor ( ; (node = elem[i]); i++ ) {\n\ \t\t\t// Do not traverse comment nodes\n\ \t\t\tret += getText( node );\n\ \t\t}\n\ \t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\ \t\t// Use textContent for elements\n\ \t\t// innerText usage removed for consistency of new lines (see #11153)\n\ \t\tif ( typeof elem.textContent === \"string\" ) {\n\ \t\t\treturn elem.textContent;\n\ \t\t} else {\n\ \t\t\t// Traverse its children\n\ \t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\ \t\t\t\tret += getText( elem );\n\ \t\t\t}\n\ \t\t}\n\ \t} else if ( nodeType === 3 || nodeType === 4 ) {\n\ \t\treturn elem.nodeValue;\n\ \t}\n\ \t// Do not include comment or processing instruction nodes\n\ \n\ \treturn ret;\n\ };\n\ \n\ Expr = Sizzle.selectors = {\n\ \n\ \t// Can be adjusted by the user\n\ \tcacheLength: 50,\n\ \n\ \tcreatePseudo: markFunction,\n\ \n\ \tmatch: matchExpr,\n\ \n\ \tfind: {},\n\ \n\ \trelative: {\n\ \t\t\">\": { dir: \"parentNode\", first: true },\n\ \t\t\" \": { dir: \"parentNode\" },\n\ \t\t\"+\": { dir: \"previousSibling\", first: true },\n\ \t\t\"~\": { dir: \"previousSibling\" }\n\ \t},\n\ \n\ \tpreFilter: {\n\ \t\t\"ATTR\": function( match ) {\n\ \t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\ \n\ \t\t\t// Move the given value to match[3] whether quoted or unquoted\n\ \t\t\tmatch[3] = ( match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\ \n\ \t\t\tif ( match[2] === \"~=\" ) {\n\ \t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\ \t\t\t}\n\ \n\ \t\t\treturn match.slice( 0, 4 );\n\ \t\t},\n\ \n\ \t\t\"CHILD\": function( match ) {\n\ \t\t\t/* matches from matchExpr[\"CHILD\"]\n\ \t\t\t\t1 type (only|nth|...)\n\ \t\t\t\t2 what (child|of-type)\n\ \t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\ \t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\ \t\t\t\t5 sign of xn-component\n\ \t\t\t\t6 x of xn-component\n\ \t\t\t\t7 sign of y-component\n\ \t\t\t\t8 y of y-component\n\ \t\t\t*/\n\ \t\t\tmatch[1] = match[1].toLowerCase();\n\ \n\ \t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\ \t\t\t\t// nth-* requires argument\n\ \t\t\t\tif ( !match[3] ) {\n\ \t\t\t\t\tSizzle.error( match[0] );\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\ \t\t\t\t// remember that false/true cast respectively to 0/1\n\ \t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\ \t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\ \n\ \t\t\t// other types prohibit arguments\n\ \t\t\t} else if ( match[3] ) {\n\ \t\t\t\tSizzle.error( match[0] );\n\ \t\t\t}\n\ \n\ \t\t\treturn match;\n\ \t\t},\n\ \n\ \t\t\"PSEUDO\": function( match ) {\n\ \t\t\tvar excess,\n\ \t\t\t\tunquoted = !match[5] && match[2];\n\ \n\ \t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\ \t\t\t\treturn null;\n\ \t\t\t}\n\ \n\ \t\t\t// Accept quoted arguments as-is\n\ \t\t\tif ( match[4] ) {\n\ \t\t\t\tmatch[2] = match[4];\n\ \n\ \t\t\t// Strip excess characters from unquoted arguments\n\ \t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\ \t\t\t\t// Get excess from tokenize (recursively)\n\ \t\t\t\t(excess = tokenize( unquoted, true )) &&\n\ \t\t\t\t// advance to the next closing parenthesis\n\ \t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\ \n\ \t\t\t\t// excess is a negative index\n\ \t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\ \t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\ \t\t\t}\n\ \n\ \t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\ \t\t\treturn match.slice( 0, 3 );\n\ \t\t}\n\ \t},\n\ \n\ \tfilter: {\n\ \n\ \t\t\"TAG\": function( nodeName ) {\n\ \t\t\tif ( nodeName === \"*\" ) {\n\ \t\t\t\treturn function() { return true; };\n\ \t\t\t}\n\ \n\ \t\t\tnodeName = nodeName.replace( runescape, funescape ).toLowerCase();\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\ \t\t\t};\n\ \t\t},\n\ \n\ \t\t\"CLASS\": function( className ) {\n\ \t\t\tvar pattern = classCache[ className + \" \" ];\n\ \n\ \t\t\treturn pattern ||\n\ \t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\ \t\t\t\tclassCache( className, function( elem ) {\n\ \t\t\t\t\treturn pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute(\"class\")) || \"\" );\n\ \t\t\t\t});\n\ \t\t},\n\ \n\ \t\t\"ATTR\": function( name, operator, check ) {\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\tvar result = Sizzle.attr( elem, name );\n\ \n\ \t\t\t\tif ( result == null ) {\n\ \t\t\t\t\treturn operator === \"!=\";\n\ \t\t\t\t}\n\ \t\t\t\tif ( !operator ) {\n\ \t\t\t\t\treturn true;\n\ \t\t\t\t}\n\ \n\ \t\t\t\tresult += \"\";\n\ \n\ \t\t\t\treturn operator === \"=\" ? result === check :\n\ \t\t\t\t\toperator === \"!=\" ? result !== check :\n\ \t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\ \t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\ \t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\ \t\t\t\t\toperator === \"~=\" ? ( \" \" + result + \" \" ).indexOf( check ) > -1 :\n\ \t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\ \t\t\t\t\tfalse;\n\ \t\t\t};\n\ \t\t},\n\ \n\ \t\t\"CHILD\": function( type, what, argument, first, last ) {\n\ \t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\ \t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\ \t\t\t\tofType = what === \"of-type\";\n\ \n\ \t\t\treturn first === 1 && last === 0 ?\n\ \n\ \t\t\t\t// Shortcut for :nth-*(n)\n\ \t\t\t\tfunction( elem ) {\n\ \t\t\t\t\treturn !!elem.parentNode;\n\ \t\t\t\t} :\n\ \n\ \t\t\t\tfunction( elem, context, xml ) {\n\ \t\t\t\t\tvar cache, outerCache, node, diff, nodeIndex, start,\n\ \t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\ \t\t\t\t\t\tparent = elem.parentNode,\n\ \t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\ \t\t\t\t\t\tuseCache = !xml && !ofType;\n\ \n\ \t\t\t\t\tif ( parent ) {\n\ \n\ \t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\ \t\t\t\t\t\tif ( simple ) {\n\ \t\t\t\t\t\t\twhile ( dir ) {\n\ \t\t\t\t\t\t\t\tnode = elem;\n\ \t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\ \t\t\t\t\t\t\t\t\tif ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {\n\ \t\t\t\t\t\t\t\t\t\treturn false;\n\ \t\t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\ \t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\treturn true;\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\ \n\ \t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\ \t\t\t\t\t\tif ( forward && useCache ) {\n\ \t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\ \t\t\t\t\t\t\touterCache = parent[ expando ] || (parent[ expando ] = {});\n\ \t\t\t\t\t\t\tcache = outerCache[ type ] || [];\n\ \t\t\t\t\t\t\tnodeIndex = cache[0] === dirruns && cache[1];\n\ \t\t\t\t\t\t\tdiff = cache[0] === dirruns && cache[2];\n\ \t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\ \n\ \t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\ \n\ \t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\ \t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\ \n\ \t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\ \t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\ \t\t\t\t\t\t\t\t\touterCache[ type ] = [ dirruns, nodeIndex, diff ];\n\ \t\t\t\t\t\t\t\t\tbreak;\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\t// Use previously-cached element index if available\n\ \t\t\t\t\t\t} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {\n\ \t\t\t\t\t\t\tdiff = cache[1];\n\ \n\ \t\t\t\t\t\t// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\ \t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\ \t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\ \t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\ \n\ \t\t\t\t\t\t\t\tif ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {\n\ \t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\ \t\t\t\t\t\t\t\t\tif ( useCache ) {\n\ \t\t\t\t\t\t\t\t\t\t(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];\n\ \t\t\t\t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\ \t\t\t\t\t\t\t\t\t\tbreak;\n\ \t\t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\ \t\t\t\t\t\tdiff -= last;\n\ \t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\ \t\t\t\t\t}\n\ \t\t\t\t};\n\ \t\t},\n\ \n\ \t\t\"PSEUDO\": function( pseudo, argument ) {\n\ \t\t\t// pseudo-class names are case-insensitive\n\ \t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\ \t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\ \t\t\t// Remember that setFilters inherits from pseudos\n\ \t\t\tvar args,\n\ \t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\ \t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\ \n\ \t\t\t// The user may use createPseudo to indicate that\n\ \t\t\t// arguments are needed to create the filter function\n\ \t\t\t// just as Sizzle does\n\ \t\t\tif ( fn[ expando ] ) {\n\ \t\t\t\treturn fn( argument );\n\ \t\t\t}\n\ \n\ \t\t\t// But maintain support for old signatures\n\ \t\t\tif ( fn.length > 1 ) {\n\ \t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\ \t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\ \t\t\t\t\tmarkFunction(function( seed, matches ) {\n\ \t\t\t\t\t\tvar idx,\n\ \t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\ \t\t\t\t\t\t\ti = matched.length;\n\ \t\t\t\t\t\twhile ( i-- ) {\n\ \t\t\t\t\t\t\tidx = indexOf.call( seed, matched[i] );\n\ \t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}) :\n\ \t\t\t\t\tfunction( elem ) {\n\ \t\t\t\t\t\treturn fn( elem, 0, args );\n\ \t\t\t\t\t};\n\ \t\t\t}\n\ \n\ \t\t\treturn fn;\n\ \t\t}\n\ \t},\n\ \n\ \tpseudos: {\n\ \t\t// Potentially complex pseudos\n\ \t\t\"not\": markFunction(function( selector ) {\n\ \t\t\t// Trim the selector passed to compile\n\ \t\t\t// to avoid treating leading and trailing\n\ \t\t\t// spaces as combinators\n\ \t\t\tvar input = [],\n\ \t\t\t\tresults = [],\n\ \t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\ \n\ \t\t\treturn matcher[ expando ] ?\n\ \t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\ \t\t\t\t\tvar elem,\n\ \t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\ \t\t\t\t\t\ti = seed.length;\n\ \n\ \t\t\t\t\t// Match elements unmatched by `matcher`\n\ \t\t\t\t\twhile ( i-- ) {\n\ \t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\ \t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t}) :\n\ \t\t\t\tfunction( elem, context, xml ) {\n\ \t\t\t\t\tinput[0] = elem;\n\ \t\t\t\t\tmatcher( input, null, xml, results );\n\ \t\t\t\t\treturn !results.pop();\n\ \t\t\t\t};\n\ \t\t}),\n\ \n\ \t\t\"has\": markFunction(function( selector ) {\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\ \t\t\t};\n\ \t\t}),\n\ \n\ \t\t\"contains\": markFunction(function( text ) {\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\ \t\t\t};\n\ \t\t}),\n\ \n\ \t\t// \"Whether an element is represented by a :lang() selector\n\ \t\t// is based solely on the element's language value\n\ \t\t// being equal to the identifier C,\n\ \t\t// or beginning with the identifier C immediately followed by \"-\".\n\ \t\t// The matching of C against the element's language value is performed case-insensitively.\n\ \t\t// The identifier C does not have to be a valid language name.\"\n\ \t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\ \t\t\"lang\": markFunction( function( lang ) {\n\ \t\t\t// lang value must be a valid identifider\n\ \t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\ \t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\ \t\t\t}\n\ \t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\ \t\t\treturn function( elem ) {\n\ \t\t\t\tvar elemLang;\n\ \t\t\t\tdo {\n\ \t\t\t\t\tif ( (elemLang = documentIsXML ?\n\ \t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\") :\n\ \t\t\t\t\t\telem.lang) ) {\n\ \n\ \t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\ \t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\ \t\t\t\t\t}\n\ \t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\ \t\t\t\treturn false;\n\ \t\t\t};\n\ \t\t}),\n\ \n\ \t\t// Miscellaneous\n\ \t\t\"target\": function( elem ) {\n\ \t\t\tvar hash = window.location && window.location.hash;\n\ \t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\ \t\t},\n\ \n\ \t\t\"root\": function( elem ) {\n\ \t\t\treturn elem === docElem;\n\ \t\t},\n\ \n\ \t\t\"focus\": function( elem ) {\n\ \t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\ \t\t},\n\ \n\ \t\t// Boolean properties\n\ \t\t\"enabled\": function( elem ) {\n\ \t\t\treturn elem.disabled === false;\n\ \t\t},\n\ \n\ \t\t\"disabled\": function( elem ) {\n\ \t\t\treturn elem.disabled === true;\n\ \t\t},\n\ \n\ \t\t\"checked\": function( elem ) {\n\ \t\t\t// In CSS3, :checked should return both checked and selected elements\n\ \t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\ \t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\ \t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\ \t\t},\n\ \n\ \t\t\"selected\": function( elem ) {\n\ \t\t\t// Accessing this property makes selected-by-default\n\ \t\t\t// options in Safari work properly\n\ \t\t\tif ( elem.parentNode ) {\n\ \t\t\t\telem.parentNode.selectedIndex;\n\ \t\t\t}\n\ \n\ \t\t\treturn elem.selected === true;\n\ \t\t},\n\ \n\ \t\t// Contents\n\ \t\t\"empty\": function( elem ) {\n\ \t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\ \t\t\t// :empty is only affected by element nodes and content nodes(including text(3), cdata(4)),\n\ \t\t\t// not comment, processing instructions, or others\n\ \t\t\t// Thanks to Diego Perini for the nodeName shortcut\n\ \t\t\t// Greater than \"@\" means alpha characters (specifically not starting with \"#\" or \"?\")\n\ \t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\ \t\t\t\tif ( elem.nodeName > \"@\" || elem.nodeType === 3 || elem.nodeType === 4 ) {\n\ \t\t\t\t\treturn false;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t\treturn true;\n\ \t\t},\n\ \n\ \t\t\"parent\": function( elem ) {\n\ \t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\ \t\t},\n\ \n\ \t\t// Element/input types\n\ \t\t\"header\": function( elem ) {\n\ \t\t\treturn rheader.test( elem.nodeName );\n\ \t\t},\n\ \n\ \t\t\"input\": function( elem ) {\n\ \t\t\treturn rinputs.test( elem.nodeName );\n\ \t\t},\n\ \n\ \t\t\"button\": function( elem ) {\n\ \t\t\tvar name = elem.nodeName.toLowerCase();\n\ \t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\ \t\t},\n\ \n\ \t\t\"text\": function( elem ) {\n\ \t\t\tvar attr;\n\ \t\t\t// IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc)\n\ \t\t\t// use getAttribute instead to test this case\n\ \t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\ \t\t\t\telem.type === \"text\" &&\n\ \t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === elem.type );\n\ \t\t},\n\ \n\ \t\t// Position-in-collection\n\ \t\t\"first\": createPositionalPseudo(function() {\n\ \t\t\treturn [ 0 ];\n\ \t\t}),\n\ \n\ \t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\ \t\t\treturn [ length - 1 ];\n\ \t\t}),\n\ \n\ \t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\ \t\t\treturn [ argument < 0 ? argument + length : argument ];\n\ \t\t}),\n\ \n\ \t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\ \t\t\tvar i = 0;\n\ \t\t\tfor ( ; i < length; i += 2 ) {\n\ \t\t\t\tmatchIndexes.push( i );\n\ \t\t\t}\n\ \t\t\treturn matchIndexes;\n\ \t\t}),\n\ \n\ \t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\ \t\t\tvar i = 1;\n\ \t\t\tfor ( ; i < length; i += 2 ) {\n\ \t\t\t\tmatchIndexes.push( i );\n\ \t\t\t}\n\ \t\t\treturn matchIndexes;\n\ \t\t}),\n\ \n\ \t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\ \t\t\tvar i = argument < 0 ? argument + length : argument;\n\ \t\t\tfor ( ; --i >= 0; ) {\n\ \t\t\t\tmatchIndexes.push( i );\n\ \t\t\t}\n\ \t\t\treturn matchIndexes;\n\ \t\t}),\n\ \n\ \t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\ \t\t\tvar i = argument < 0 ? argument + length : argument;\n\ \t\t\tfor ( ; ++i < length; ) {\n\ \t\t\t\tmatchIndexes.push( i );\n\ \t\t\t}\n\ \t\t\treturn matchIndexes;\n\ \t\t})\n\ \t}\n\ };\n\ \n\ // Add button/input type pseudos\n\ for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\ \tExpr.pseudos[ i ] = createInputPseudo( i );\n\ }\n\ for ( i in { submit: true, reset: true } ) {\n\ \tExpr.pseudos[ i ] = createButtonPseudo( i );\n\ }\n\ \n\ function tokenize( selector, parseOnly ) {\n\ \tvar matched, match, tokens, type,\n\ \t\tsoFar, groups, preFilters,\n\ \t\tcached = tokenCache[ selector + \" \" ];\n\ \n\ \tif ( cached ) {\n\ \t\treturn parseOnly ? 0 : cached.slice( 0 );\n\ \t}\n\ \n\ \tsoFar = selector;\n\ \tgroups = [];\n\ \tpreFilters = Expr.preFilter;\n\ \n\ \twhile ( soFar ) {\n\ \n\ \t\t// Comma and first run\n\ \t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\ \t\t\tif ( match ) {\n\ \t\t\t\t// Don't consume trailing commas as valid\n\ \t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\ \t\t\t}\n\ \t\t\tgroups.push( tokens = [] );\n\ \t\t}\n\ \n\ \t\tmatched = false;\n\ \n\ \t\t// Combinators\n\ \t\tif ( (match = rcombinators.exec( soFar )) ) {\n\ \t\t\tmatched = match.shift();\n\ \t\t\ttokens.push( {\n\ \t\t\t\tvalue: matched,\n\ \t\t\t\t// Cast descendant combinators to space\n\ \t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\ \t\t\t} );\n\ \t\t\tsoFar = soFar.slice( matched.length );\n\ \t\t}\n\ \n\ \t\t// Filters\n\ \t\tfor ( type in Expr.filter ) {\n\ \t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\ \t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\ \t\t\t\tmatched = match.shift();\n\ \t\t\t\ttokens.push( {\n\ \t\t\t\t\tvalue: matched,\n\ \t\t\t\t\ttype: type,\n\ \t\t\t\t\tmatches: match\n\ \t\t\t\t} );\n\ \t\t\t\tsoFar = soFar.slice( matched.length );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\tif ( !matched ) {\n\ \t\t\tbreak;\n\ \t\t}\n\ \t}\n\ \n\ \t// Return the length of the invalid excess\n\ \t// if we're just parsing\n\ \t// Otherwise, throw an error or return tokens\n\ \treturn parseOnly ?\n\ \t\tsoFar.length :\n\ \t\tsoFar ?\n\ \t\t\tSizzle.error( selector ) :\n\ \t\t\t// Cache the tokens\n\ \t\t\ttokenCache( selector, groups ).slice( 0 );\n\ }\n\ \n\ function toSelector( tokens ) {\n\ \tvar i = 0,\n\ \t\tlen = tokens.length,\n\ \t\tselector = \"\";\n\ \tfor ( ; i < len; i++ ) {\n\ \t\tselector += tokens[i].value;\n\ \t}\n\ \treturn selector;\n\ }\n\ \n\ function addCombinator( matcher, combinator, base ) {\n\ \tvar dir = combinator.dir,\n\ \t\tcheckNonElements = base && dir === \"parentNode\",\n\ \t\tdoneName = done++;\n\ \n\ \treturn combinator.first ?\n\ \t\t// Check against closest ancestor/preceding element\n\ \t\tfunction( elem, context, xml ) {\n\ \t\t\twhile ( (elem = elem[ dir ]) ) {\n\ \t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\ \t\t\t\t\treturn matcher( elem, context, xml );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t} :\n\ \n\ \t\t// Check against all ancestor/preceding elements\n\ \t\tfunction( elem, context, xml ) {\n\ \t\t\tvar data, cache, outerCache,\n\ \t\t\t\tdirkey = dirruns + \" \" + doneName;\n\ \n\ \t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching\n\ \t\t\tif ( xml ) {\n\ \t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\ \t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\ \t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\ \t\t\t\t\t\t\treturn true;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t} else {\n\ \t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\ \t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\ \t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\ \t\t\t\t\t\tif ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) {\n\ \t\t\t\t\t\t\tif ( (data = cache[1]) === true || data === cachedruns ) {\n\ \t\t\t\t\t\t\t\treturn data === true;\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\tcache = outerCache[ dir ] = [ dirkey ];\n\ \t\t\t\t\t\t\tcache[1] = matcher( elem, context, xml ) || cachedruns;\n\ \t\t\t\t\t\t\tif ( cache[1] === true ) {\n\ \t\t\t\t\t\t\t\treturn true;\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t};\n\ }\n\ \n\ function elementMatcher( matchers ) {\n\ \treturn matchers.length > 1 ?\n\ \t\tfunction( elem, context, xml ) {\n\ \t\t\tvar i = matchers.length;\n\ \t\t\twhile ( i-- ) {\n\ \t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\ \t\t\t\t\treturn false;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t\treturn true;\n\ \t\t} :\n\ \t\tmatchers[0];\n\ }\n\ \n\ function condense( unmatched, map, filter, context, xml ) {\n\ \tvar elem,\n\ \t\tnewUnmatched = [],\n\ \t\ti = 0,\n\ \t\tlen = unmatched.length,\n\ \t\tmapped = map != null;\n\ \n\ \tfor ( ; i < len; i++ ) {\n\ \t\tif ( (elem = unmatched[i]) ) {\n\ \t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\ \t\t\t\tnewUnmatched.push( elem );\n\ \t\t\t\tif ( mapped ) {\n\ \t\t\t\t\tmap.push( i );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \treturn newUnmatched;\n\ }\n\ \n\ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\ \tif ( postFilter && !postFilter[ expando ] ) {\n\ \t\tpostFilter = setMatcher( postFilter );\n\ \t}\n\ \tif ( postFinder && !postFinder[ expando ] ) {\n\ \t\tpostFinder = setMatcher( postFinder, postSelector );\n\ \t}\n\ \treturn markFunction(function( seed, results, context, xml ) {\n\ \t\tvar temp, i, elem,\n\ \t\t\tpreMap = [],\n\ \t\t\tpostMap = [],\n\ \t\t\tpreexisting = results.length,\n\ \n\ \t\t\t// Get initial elements from seed or context\n\ \t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\ \n\ \t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\ \t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\ \t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\ \t\t\t\telems,\n\ \n\ \t\t\tmatcherOut = matcher ?\n\ \t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\ \t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\ \n\ \t\t\t\t\t// ...intermediate processing is necessary\n\ \t\t\t\t\t[] :\n\ \n\ \t\t\t\t\t// ...otherwise use results directly\n\ \t\t\t\t\tresults :\n\ \t\t\t\tmatcherIn;\n\ \n\ \t\t// Find primary matches\n\ \t\tif ( matcher ) {\n\ \t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\ \t\t}\n\ \n\ \t\t// Apply postFilter\n\ \t\tif ( postFilter ) {\n\ \t\t\ttemp = condense( matcherOut, postMap );\n\ \t\t\tpostFilter( temp, [], context, xml );\n\ \n\ \t\t\t// Un-match failing elements by moving them back to matcherIn\n\ \t\t\ti = temp.length;\n\ \t\t\twhile ( i-- ) {\n\ \t\t\t\tif ( (elem = temp[i]) ) {\n\ \t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\tif ( seed ) {\n\ \t\t\tif ( postFinder || preFilter ) {\n\ \t\t\t\tif ( postFinder ) {\n\ \t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\ \t\t\t\t\ttemp = [];\n\ \t\t\t\t\ti = matcherOut.length;\n\ \t\t\t\t\twhile ( i-- ) {\n\ \t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\ \t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\ \t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\ \t\t\t\ti = matcherOut.length;\n\ \t\t\t\twhile ( i-- ) {\n\ \t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\ \t\t\t\t\t\t(temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {\n\ \n\ \t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t// Add elements to results, through postFinder if defined\n\ \t\t} else {\n\ \t\t\tmatcherOut = condense(\n\ \t\t\t\tmatcherOut === results ?\n\ \t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\ \t\t\t\t\tmatcherOut\n\ \t\t\t);\n\ \t\t\tif ( postFinder ) {\n\ \t\t\t\tpostFinder( null, results, matcherOut, xml );\n\ \t\t\t} else {\n\ \t\t\t\tpush.apply( results, matcherOut );\n\ \t\t\t}\n\ \t\t}\n\ \t});\n\ }\n\ \n\ function matcherFromTokens( tokens ) {\n\ \tvar checkContext, matcher, j,\n\ \t\tlen = tokens.length,\n\ \t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\ \t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\ \t\ti = leadingRelative ? 1 : 0,\n\ \n\ \t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\ \t\tmatchContext = addCombinator( function( elem ) {\n\ \t\t\treturn elem === checkContext;\n\ \t\t}, implicitRelative, true ),\n\ \t\tmatchAnyContext = addCombinator( function( elem ) {\n\ \t\t\treturn indexOf.call( checkContext, elem ) > -1;\n\ \t\t}, implicitRelative, true ),\n\ \t\tmatchers = [ function( elem, context, xml ) {\n\ \t\t\treturn ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\ \t\t\t\t(checkContext = context).nodeType ?\n\ \t\t\t\t\tmatchContext( elem, context, xml ) :\n\ \t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\ \t\t} ];\n\ \n\ \tfor ( ; i < len; i++ ) {\n\ \t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\ \t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\ \t\t} else {\n\ \t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\ \n\ \t\t\t// Return special upon seeing a positional matcher\n\ \t\t\tif ( matcher[ expando ] ) {\n\ \t\t\t\t// Find the next relative operator (if any) for proper handling\n\ \t\t\t\tj = ++i;\n\ \t\t\t\tfor ( ; j < len; j++ ) {\n\ \t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\ \t\t\t\t\t\tbreak;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t\treturn setMatcher(\n\ \t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\ \t\t\t\t\ti > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, \"$1\" ),\n\ \t\t\t\t\tmatcher,\n\ \t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\ \t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\ \t\t\t\t\tj < len && toSelector( tokens )\n\ \t\t\t\t);\n\ \t\t\t}\n\ \t\t\tmatchers.push( matcher );\n\ \t\t}\n\ \t}\n\ \n\ \treturn elementMatcher( matchers );\n\ }\n\ \n\ function matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\ \t// A counter to specify which element is currently being matched\n\ \tvar matcherCachedRuns = 0,\n\ \t\tbySet = setMatchers.length > 0,\n\ \t\tbyElement = elementMatchers.length > 0,\n\ \t\tsuperMatcher = function( seed, context, xml, results, expandContext ) {\n\ \t\t\tvar elem, j, matcher,\n\ \t\t\t\tsetMatched = [],\n\ \t\t\t\tmatchedCount = 0,\n\ \t\t\t\ti = \"0\",\n\ \t\t\t\tunmatched = seed && [],\n\ \t\t\t\toutermost = expandContext != null,\n\ \t\t\t\tcontextBackup = outermostContext,\n\ \t\t\t\t// We must always have either seed elements or context\n\ \t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", expandContext && context.parentNode || context ),\n\ \t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\ \t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1);\n\ \n\ \t\t\tif ( outermost ) {\n\ \t\t\t\toutermostContext = context !== document && context;\n\ \t\t\t\tcachedruns = matcherCachedRuns;\n\ \t\t\t}\n\ \n\ \t\t\t// Add elements passing elementMatchers directly to results\n\ \t\t\t// Keep `i` a string if there are no elements so `matchedCount` will be \"00\" below\n\ \t\t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\ \t\t\t\tif ( byElement && elem ) {\n\ \t\t\t\t\tj = 0;\n\ \t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\ \t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\ \t\t\t\t\t\t\tresults.push( elem );\n\ \t\t\t\t\t\t\tbreak;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t\tif ( outermost ) {\n\ \t\t\t\t\t\tdirruns = dirrunsUnique;\n\ \t\t\t\t\t\tcachedruns = ++matcherCachedRuns;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// Track unmatched elements for set filters\n\ \t\t\t\tif ( bySet ) {\n\ \t\t\t\t\t// They will have gone through all possible matchers\n\ \t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\ \t\t\t\t\t\tmatchedCount--;\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Lengthen the array for every element, matched or not\n\ \t\t\t\t\tif ( seed ) {\n\ \t\t\t\t\t\tunmatched.push( elem );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\t// Apply set filters to unmatched elements\n\ \t\t\tmatchedCount += i;\n\ \t\t\tif ( bySet && i !== matchedCount ) {\n\ \t\t\t\tj = 0;\n\ \t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\ \t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\ \t\t\t\t}\n\ \n\ \t\t\t\tif ( seed ) {\n\ \t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\ \t\t\t\t\tif ( matchedCount > 0 ) {\n\ \t\t\t\t\t\twhile ( i-- ) {\n\ \t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\ \t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Discard index placeholder values to get only actual matches\n\ \t\t\t\t\tsetMatched = condense( setMatched );\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// Add matches to results\n\ \t\t\t\tpush.apply( results, setMatched );\n\ \n\ \t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\ \t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\ \t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\ \n\ \t\t\t\t\tSizzle.uniqueSort( results );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \n\ \t\t\t// Override manipulation of globals by nested matchers\n\ \t\t\tif ( outermost ) {\n\ \t\t\t\tdirruns = dirrunsUnique;\n\ \t\t\t\toutermostContext = contextBackup;\n\ \t\t\t}\n\ \n\ \t\t\treturn unmatched;\n\ \t\t};\n\ \n\ \treturn bySet ?\n\ \t\tmarkFunction( superMatcher ) :\n\ \t\tsuperMatcher;\n\ }\n\ \n\ compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {\n\ \tvar i,\n\ \t\tsetMatchers = [],\n\ \t\telementMatchers = [],\n\ \t\tcached = compilerCache[ selector + \" \" ];\n\ \n\ \tif ( !cached ) {\n\ \t\t// Generate a function of recursive functions that can be used to check each element\n\ \t\tif ( !group ) {\n\ \t\t\tgroup = tokenize( selector );\n\ \t\t}\n\ \t\ti = group.length;\n\ \t\twhile ( i-- ) {\n\ \t\t\tcached = matcherFromTokens( group[i] );\n\ \t\t\tif ( cached[ expando ] ) {\n\ \t\t\t\tsetMatchers.push( cached );\n\ \t\t\t} else {\n\ \t\t\t\telementMatchers.push( cached );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Cache the compiled function\n\ \t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\ \t}\n\ \treturn cached;\n\ };\n\ \n\ function multipleContexts( selector, contexts, results ) {\n\ \tvar i = 0,\n\ \t\tlen = contexts.length;\n\ \tfor ( ; i < len; i++ ) {\n\ \t\tSizzle( selector, contexts[i], results );\n\ \t}\n\ \treturn results;\n\ }\n\ \n\ function select( selector, context, results, seed ) {\n\ \tvar i, tokens, token, type, find,\n\ \t\tmatch = tokenize( selector );\n\ \n\ \tif ( !seed ) {\n\ \t\t// Try to minimize operations if there is only one group\n\ \t\tif ( match.length === 1 ) {\n\ \n\ \t\t\t// Take a shortcut and set the context if the root selector is an ID\n\ \t\t\ttokens = match[0] = match[0].slice( 0 );\n\ \t\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\ \t\t\t\t\tcontext.nodeType === 9 && !documentIsXML &&\n\ \t\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\ \n\ \t\t\t\tcontext = Expr.find[\"ID\"]( token.matches[0].replace( runescape, funescape ), context )[0];\n\ \t\t\t\tif ( !context ) {\n\ \t\t\t\t\treturn results;\n\ \t\t\t\t}\n\ \n\ \t\t\t\tselector = selector.slice( tokens.shift().value.length );\n\ \t\t\t}\n\ \n\ \t\t\t// Fetch a seed set for right-to-left matching\n\ \t\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\ \t\t\twhile ( i-- ) {\n\ \t\t\t\ttoken = tokens[i];\n\ \n\ \t\t\t\t// Abort if we hit a combinator\n\ \t\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\ \t\t\t\t\tbreak;\n\ \t\t\t\t}\n\ \t\t\t\tif ( (find = Expr.find[ type ]) ) {\n\ \t\t\t\t\t// Search, expanding context for leading sibling combinators\n\ \t\t\t\t\tif ( (seed = find(\n\ \t\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\ \t\t\t\t\t\trsibling.test( tokens[0].type ) && context.parentNode || context\n\ \t\t\t\t\t)) ) {\n\ \n\ \t\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\ \t\t\t\t\t\ttokens.splice( i, 1 );\n\ \t\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\ \t\t\t\t\t\tif ( !selector ) {\n\ \t\t\t\t\t\t\tpush.apply( results, slice.call( seed, 0 ) );\n\ \t\t\t\t\t\t\treturn results;\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\tbreak;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \t// Compile and execute a filtering function\n\ \t// Provide `match` to avoid retokenization if we modified the selector above\n\ \tcompile( selector, match )(\n\ \t\tseed,\n\ \t\tcontext,\n\ \t\tdocumentIsXML,\n\ \t\tresults,\n\ \t\trsibling.test( selector )\n\ \t);\n\ \treturn results;\n\ }\n\ \n\ // Deprecated\n\ Expr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\ \n\ // Easy API for creating new setFilters\n\ function setFilters() {}\n\ Expr.filters = setFilters.prototype = Expr.pseudos;\n\ Expr.setFilters = new setFilters();\n\ \n\ // Initialize with the default document\n\ setDocument();\n\ \n\ // Override sizzle attribute retrieval\n\ Sizzle.attr = jQuery.attr;\n\ jQuery.find = Sizzle;\n\ jQuery.expr = Sizzle.selectors;\n\ jQuery.expr[\":\"] = jQuery.expr.pseudos;\n\ jQuery.unique = Sizzle.uniqueSort;\n\ jQuery.text = Sizzle.getText;\n\ jQuery.isXMLDoc = Sizzle.isXML;\n\ jQuery.contains = Sizzle.contains;\n\ \n\ \n\ })( window );\n\ var runtil = /Until$/,\n\ \trparentsprev = /^(?:parents|prev(?:Until|All))/,\n\ \tisSimple = /^.[^:#\\[\\.,]*$/,\n\ \trneedsContext = jQuery.expr.match.needsContext,\n\ \t// methods guaranteed to produce a unique set when starting from a unique set\n\ \tguaranteedUnique = {\n\ \t\tchildren: true,\n\ \t\tcontents: true,\n\ \t\tnext: true,\n\ \t\tprev: true\n\ \t};\n\ \n\ jQuery.fn.extend({\n\ \tfind: function( selector ) {\n\ \t\tvar i, ret, self,\n\ \t\t\tlen = this.length;\n\ \n\ \t\tif ( typeof selector !== \"string\" ) {\n\ \t\t\tself = this;\n\ \t\t\treturn this.pushStack( jQuery( selector ).filter(function() {\n\ \t\t\t\tfor ( i = 0; i < len; i++ ) {\n\ \t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\ \t\t\t\t\t\treturn true;\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}) );\n\ \t\t}\n\ \n\ \t\tret = [];\n\ \t\tfor ( i = 0; i < len; i++ ) {\n\ \t\t\tjQuery.find( selector, this[ i ], ret );\n\ \t\t}\n\ \n\ \t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\ \t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\ \t\tret.selector = ( this.selector ? this.selector + \" \" : \"\" ) + selector;\n\ \t\treturn ret;\n\ \t},\n\ \n\ \thas: function( target ) {\n\ \t\tvar i,\n\ \t\t\ttargets = jQuery( target, this ),\n\ \t\t\tlen = targets.length;\n\ \n\ \t\treturn this.filter(function() {\n\ \t\t\tfor ( i = 0; i < len; i++ ) {\n\ \t\t\t\tif ( jQuery.contains( this, targets[i] ) ) {\n\ \t\t\t\t\treturn true;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \tnot: function( selector ) {\n\ \t\treturn this.pushStack( winnow(this, selector, false) );\n\ \t},\n\ \n\ \tfilter: function( selector ) {\n\ \t\treturn this.pushStack( winnow(this, selector, true) );\n\ \t},\n\ \n\ \tis: function( selector ) {\n\ \t\treturn !!selector && (\n\ \t\t\ttypeof selector === \"string\" ?\n\ \t\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\ \t\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\ \t\t\t\trneedsContext.test( selector ) ?\n\ \t\t\t\t\tjQuery( selector, this.context ).index( this[0] ) >= 0 :\n\ \t\t\t\t\tjQuery.filter( selector, this ).length > 0 :\n\ \t\t\t\tthis.filter( selector ).length > 0 );\n\ \t},\n\ \n\ \tclosest: function( selectors, context ) {\n\ \t\tvar cur,\n\ \t\t\ti = 0,\n\ \t\t\tl = this.length,\n\ \t\t\tret = [],\n\ \t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\ \t\t\t\tjQuery( selectors, context || this.context ) :\n\ \t\t\t\t0;\n\ \n\ \t\tfor ( ; i < l; i++ ) {\n\ \t\t\tcur = this[i];\n\ \n\ \t\t\twhile ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) {\n\ \t\t\t\tif ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {\n\ \t\t\t\t\tret.push( cur );\n\ \t\t\t\t\tbreak;\n\ \t\t\t\t}\n\ \t\t\t\tcur = cur.parentNode;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret );\n\ \t},\n\ \n\ \t// Determine the position of an element within\n\ \t// the matched set of elements\n\ \tindex: function( elem ) {\n\ \n\ \t\t// No argument, return index in parent\n\ \t\tif ( !elem ) {\n\ \t\t\treturn ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;\n\ \t\t}\n\ \n\ \t\t// index in selector\n\ \t\tif ( typeof elem === \"string\" ) {\n\ \t\t\treturn jQuery.inArray( this[0], jQuery( elem ) );\n\ \t\t}\n\ \n\ \t\t// Locate the position of the desired element\n\ \t\treturn jQuery.inArray(\n\ \t\t\t// If it receives a jQuery object, the first element is used\n\ \t\t\telem.jquery ? elem[0] : elem, this );\n\ \t},\n\ \n\ \tadd: function( selector, context ) {\n\ \t\tvar set = typeof selector === \"string\" ?\n\ \t\t\t\tjQuery( selector, context ) :\n\ \t\t\t\tjQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),\n\ \t\t\tall = jQuery.merge( this.get(), set );\n\ \n\ \t\treturn this.pushStack( jQuery.unique(all) );\n\ \t},\n\ \n\ \taddBack: function( selector ) {\n\ \t\treturn this.add( selector == null ?\n\ \t\t\tthis.prevObject : this.prevObject.filter(selector)\n\ \t\t);\n\ \t}\n\ });\n\ \n\ jQuery.fn.andSelf = jQuery.fn.addBack;\n\ \n\ function sibling( cur, dir ) {\n\ \tdo {\n\ \t\tcur = cur[ dir ];\n\ \t} while ( cur && cur.nodeType !== 1 );\n\ \n\ \treturn cur;\n\ }\n\ \n\ jQuery.each({\n\ \tparent: function( elem ) {\n\ \t\tvar parent = elem.parentNode;\n\ \t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\ \t},\n\ \tparents: function( elem ) {\n\ \t\treturn jQuery.dir( elem, \"parentNode\" );\n\ \t},\n\ \tparentsUntil: function( elem, i, until ) {\n\ \t\treturn jQuery.dir( elem, \"parentNode\", until );\n\ \t},\n\ \tnext: function( elem ) {\n\ \t\treturn sibling( elem, \"nextSibling\" );\n\ \t},\n\ \tprev: function( elem ) {\n\ \t\treturn sibling( elem, \"previousSibling\" );\n\ \t},\n\ \tnextAll: function( elem ) {\n\ \t\treturn jQuery.dir( elem, \"nextSibling\" );\n\ \t},\n\ \tprevAll: function( elem ) {\n\ \t\treturn jQuery.dir( elem, \"previousSibling\" );\n\ \t},\n\ \tnextUntil: function( elem, i, until ) {\n\ \t\treturn jQuery.dir( elem, \"nextSibling\", until );\n\ \t},\n\ \tprevUntil: function( elem, i, until ) {\n\ \t\treturn jQuery.dir( elem, \"previousSibling\", until );\n\ \t},\n\ \tsiblings: function( elem ) {\n\ \t\treturn jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );\n\ \t},\n\ \tchildren: function( elem ) {\n\ \t\treturn jQuery.sibling( elem.firstChild );\n\ \t},\n\ \tcontents: function( elem ) {\n\ \t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\ \t\t\telem.contentDocument || elem.contentWindow.document :\n\ \t\t\tjQuery.merge( [], elem.childNodes );\n\ \t}\n\ }, function( name, fn ) {\n\ \tjQuery.fn[ name ] = function( until, selector ) {\n\ \t\tvar ret = jQuery.map( this, fn, until );\n\ \n\ \t\tif ( !runtil.test( name ) ) {\n\ \t\t\tselector = until;\n\ \t\t}\n\ \n\ \t\tif ( selector && typeof selector === \"string\" ) {\n\ \t\t\tret = jQuery.filter( selector, ret );\n\ \t\t}\n\ \n\ \t\tret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;\n\ \n\ \t\tif ( this.length > 1 && rparentsprev.test( name ) ) {\n\ \t\t\tret = ret.reverse();\n\ \t\t}\n\ \n\ \t\treturn this.pushStack( ret );\n\ \t};\n\ });\n\ \n\ jQuery.extend({\n\ \tfilter: function( expr, elems, not ) {\n\ \t\tif ( not ) {\n\ \t\t\texpr = \":not(\" + expr + \")\";\n\ \t\t}\n\ \n\ \t\treturn elems.length === 1 ?\n\ \t\t\tjQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :\n\ \t\t\tjQuery.find.matches(expr, elems);\n\ \t},\n\ \n\ \tdir: function( elem, dir, until ) {\n\ \t\tvar matched = [],\n\ \t\t\tcur = elem[ dir ];\n\ \n\ \t\twhile ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {\n\ \t\t\tif ( cur.nodeType === 1 ) {\n\ \t\t\t\tmatched.push( cur );\n\ \t\t\t}\n\ \t\t\tcur = cur[dir];\n\ \t\t}\n\ \t\treturn matched;\n\ \t},\n\ \n\ \tsibling: function( n, elem ) {\n\ \t\tvar r = [];\n\ \n\ \t\tfor ( ; n; n = n.nextSibling ) {\n\ \t\t\tif ( n.nodeType === 1 && n !== elem ) {\n\ \t\t\t\tr.push( n );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn r;\n\ \t}\n\ });\n\ \n\ // Implement the identical functionality for filter and not\n\ function winnow( elements, qualifier, keep ) {\n\ \n\ \t// Can't pass null or undefined to indexOf in Firefox 4\n\ \t// Set to 0 to skip string check\n\ \tqualifier = qualifier || 0;\n\ \n\ \tif ( jQuery.isFunction( qualifier ) ) {\n\ \t\treturn jQuery.grep(elements, function( elem, i ) {\n\ \t\t\tvar retVal = !!qualifier.call( elem, i, elem );\n\ \t\t\treturn retVal === keep;\n\ \t\t});\n\ \n\ \t} else if ( qualifier.nodeType ) {\n\ \t\treturn jQuery.grep(elements, function( elem ) {\n\ \t\t\treturn ( elem === qualifier ) === keep;\n\ \t\t});\n\ \n\ \t} else if ( typeof qualifier === \"string\" ) {\n\ \t\tvar filtered = jQuery.grep(elements, function( elem ) {\n\ \t\t\treturn elem.nodeType === 1;\n\ \t\t});\n\ \n\ \t\tif ( isSimple.test( qualifier ) ) {\n\ \t\t\treturn jQuery.filter(qualifier, filtered, !keep);\n\ \t\t} else {\n\ \t\t\tqualifier = jQuery.filter( qualifier, filtered );\n\ \t\t}\n\ \t}\n\ \n\ \treturn jQuery.grep(elements, function( elem ) {\n\ \t\treturn ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;\n\ \t});\n\ }\n\ function createSafeFragment( document ) {\n\ \tvar list = nodeNames.split( \"|\" ),\n\ \t\tsafeFrag = document.createDocumentFragment();\n\ \n\ \tif ( safeFrag.createElement ) {\n\ \t\twhile ( list.length ) {\n\ \t\t\tsafeFrag.createElement(\n\ \t\t\t\tlist.pop()\n\ \t\t\t);\n\ \t\t}\n\ \t}\n\ \treturn safeFrag;\n\ }\n\ \n\ var nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|\" +\n\ \t\t\"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",\n\ \trinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\ \trnoshimcache = new RegExp(\"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\"),\n\ \trleadingWhitespace = /^\\s+/,\n\ \trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,\n\ \trtagName = /<([\\w:]+)/,\n\ \trtbody = /\\s*$/g,\n\ \n\ \t// We have to close these tags to support XHTML (#13200)\n\ \twrapMap = {\n\ \t\toption: [ 1, \"\" ],\n\ \t\tlegend: [ 1, \"
\", \"
\" ],\n\ \t\tarea: [ 1, \"\", \"\" ],\n\ \t\tparam: [ 1, \"\", \"\" ],\n\ \t\tthead: [ 1, \"\", \"
\" ],\n\ \t\ttr: [ 2, \"\", \"
\" ],\n\ \t\tcol: [ 2, \"\", \"
\" ],\n\ \t\ttd: [ 3, \"\", \"
\" ],\n\ \n\ \t\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\ \t\t// unless wrapped in a div with non-breaking characters in front of it.\n\ \t\t_default: jQuery.support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X
\", \"
\" ]\n\ \t},\n\ \tsafeFragment = createSafeFragment( document ),\n\ \tfragmentDiv = safeFragment.appendChild( document.createElement(\"div\") );\n\ \n\ wrapMap.optgroup = wrapMap.option;\n\ wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\n\ wrapMap.th = wrapMap.td;\n\ \n\ jQuery.fn.extend({\n\ \ttext: function( value ) {\n\ \t\treturn jQuery.access( this, function( value ) {\n\ \t\t\treturn value === undefined ?\n\ \t\t\t\tjQuery.text( this ) :\n\ \t\t\t\tthis.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );\n\ \t\t}, null, value, arguments.length );\n\ \t},\n\ \n\ \twrapAll: function( html ) {\n\ \t\tif ( jQuery.isFunction( html ) ) {\n\ \t\t\treturn this.each(function(i) {\n\ \t\t\t\tjQuery(this).wrapAll( html.call(this, i) );\n\ \t\t\t});\n\ \t\t}\n\ \n\ \t\tif ( this[0] ) {\n\ \t\t\t// The elements to wrap the target around\n\ \t\t\tvar wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);\n\ \n\ \t\t\tif ( this[0].parentNode ) {\n\ \t\t\t\twrap.insertBefore( this[0] );\n\ \t\t\t}\n\ \n\ \t\t\twrap.map(function() {\n\ \t\t\t\tvar elem = this;\n\ \n\ \t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\ \t\t\t\t\telem = elem.firstChild;\n\ \t\t\t\t}\n\ \n\ \t\t\t\treturn elem;\n\ \t\t\t}).append( this );\n\ \t\t}\n\ \n\ \t\treturn this;\n\ \t},\n\ \n\ \twrapInner: function( html ) {\n\ \t\tif ( jQuery.isFunction( html ) ) {\n\ \t\t\treturn this.each(function(i) {\n\ \t\t\t\tjQuery(this).wrapInner( html.call(this, i) );\n\ \t\t\t});\n\ \t\t}\n\ \n\ \t\treturn this.each(function() {\n\ \t\t\tvar self = jQuery( this ),\n\ \t\t\t\tcontents = self.contents();\n\ \n\ \t\t\tif ( contents.length ) {\n\ \t\t\t\tcontents.wrapAll( html );\n\ \n\ \t\t\t} else {\n\ \t\t\t\tself.append( html );\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \twrap: function( html ) {\n\ \t\tvar isFunction = jQuery.isFunction( html );\n\ \n\ \t\treturn this.each(function(i) {\n\ \t\t\tjQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );\n\ \t\t});\n\ \t},\n\ \n\ \tunwrap: function() {\n\ \t\treturn this.parent().each(function() {\n\ \t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\ \t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\ \t\t\t}\n\ \t\t}).end();\n\ \t},\n\ \n\ \tappend: function() {\n\ \t\treturn this.domManip(arguments, true, function( elem ) {\n\ \t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\ \t\t\t\tthis.appendChild( elem );\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \tprepend: function() {\n\ \t\treturn this.domManip(arguments, true, function( elem ) {\n\ \t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\ \t\t\t\tthis.insertBefore( elem, this.firstChild );\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \tbefore: function() {\n\ \t\treturn this.domManip( arguments, false, function( elem ) {\n\ \t\t\tif ( this.parentNode ) {\n\ \t\t\t\tthis.parentNode.insertBefore( elem, this );\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \tafter: function() {\n\ \t\treturn this.domManip( arguments, false, function( elem ) {\n\ \t\t\tif ( this.parentNode ) {\n\ \t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \t// keepData is for internal use only--do not document\n\ \tremove: function( selector, keepData ) {\n\ \t\tvar elem,\n\ \t\t\ti = 0;\n\ \n\ \t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\ \t\t\tif ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) {\n\ \t\t\t\tif ( !keepData && elem.nodeType === 1 ) {\n\ \t\t\t\t\tjQuery.cleanData( getAll( elem ) );\n\ \t\t\t\t}\n\ \n\ \t\t\t\tif ( elem.parentNode ) {\n\ \t\t\t\t\tif ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {\n\ \t\t\t\t\t\tsetGlobalEval( getAll( elem, \"script\" ) );\n\ \t\t\t\t\t}\n\ \t\t\t\t\telem.parentNode.removeChild( elem );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn this;\n\ \t},\n\ \n\ \tempty: function() {\n\ \t\tvar elem,\n\ \t\t\ti = 0;\n\ \n\ \t\tfor ( ; (elem = this[i]) != null; i++ ) {\n\ \t\t\t// Remove element nodes and prevent memory leaks\n\ \t\t\tif ( elem.nodeType === 1 ) {\n\ \t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\ \t\t\t}\n\ \n\ \t\t\t// Remove any remaining nodes\n\ \t\t\twhile ( elem.firstChild ) {\n\ \t\t\t\telem.removeChild( elem.firstChild );\n\ \t\t\t}\n\ \n\ \t\t\t// If this is a select, ensure that it displays empty (#12336)\n\ \t\t\t// Support: IE<9\n\ \t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\ \t\t\t\telem.options.length = 0;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn this;\n\ \t},\n\ \n\ \tclone: function( dataAndEvents, deepDataAndEvents ) {\n\ \t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\ \t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\ \n\ \t\treturn this.map( function () {\n\ \t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\ \t\t});\n\ \t},\n\ \n\ \thtml: function( value ) {\n\ \t\treturn jQuery.access( this, function( value ) {\n\ \t\t\tvar elem = this[0] || {},\n\ \t\t\t\ti = 0,\n\ \t\t\t\tl = this.length;\n\ \n\ \t\t\tif ( value === undefined ) {\n\ \t\t\t\treturn elem.nodeType === 1 ?\n\ \t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\ \t\t\t\t\tundefined;\n\ \t\t\t}\n\ \n\ \t\t\t// See if we can take a shortcut and just use innerHTML\n\ \t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\ \t\t\t\t( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) &&\n\ \t\t\t\t( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\ \t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [\"\", \"\"] )[1].toLowerCase() ] ) {\n\ \n\ \t\t\t\tvalue = value.replace( rxhtmlTag, \"<$1>\" );\n\ \n\ \t\t\t\ttry {\n\ \t\t\t\t\tfor (; i < l; i++ ) {\n\ \t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\ \t\t\t\t\t\telem = this[i] || {};\n\ \t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\ \t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\ \t\t\t\t\t\t\telem.innerHTML = value;\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\telem = 0;\n\ \n\ \t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\ \t\t\t\t} catch(e) {}\n\ \t\t\t}\n\ \n\ \t\t\tif ( elem ) {\n\ \t\t\t\tthis.empty().append( value );\n\ \t\t\t}\n\ \t\t}, null, value, arguments.length );\n\ \t},\n\ \n\ \treplaceWith: function( value ) {\n\ \t\tvar isFunc = jQuery.isFunction( value );\n\ \n\ \t\t// Make sure that the elements are removed from the DOM before they are inserted\n\ \t\t// this can help fix replacing a parent with child elements\n\ \t\tif ( !isFunc && typeof value !== \"string\" ) {\n\ \t\t\tvalue = jQuery( value ).not( this ).detach();\n\ \t\t}\n\ \n\ \t\treturn this.domManip( [ value ], true, function( elem ) {\n\ \t\t\tvar next = this.nextSibling,\n\ \t\t\t\tparent = this.parentNode;\n\ \n\ \t\t\tif ( parent ) {\n\ \t\t\t\tjQuery( this ).remove();\n\ \t\t\t\tparent.insertBefore( elem, next );\n\ \t\t\t}\n\ \t\t});\n\ \t},\n\ \n\ \tdetach: function( selector ) {\n\ \t\treturn this.remove( selector, true );\n\ \t},\n\ \n\ \tdomManip: function( args, table, callback ) {\n\ \n\ \t\t// Flatten any nested arrays\n\ \t\targs = core_concat.apply( [], args );\n\ \n\ \t\tvar first, node, hasScripts,\n\ \t\t\tscripts, doc, fragment,\n\ \t\t\ti = 0,\n\ \t\t\tl = this.length,\n\ \t\t\tset = this,\n\ \t\t\tiNoClone = l - 1,\n\ \t\t\tvalue = args[0],\n\ \t\t\tisFunction = jQuery.isFunction( value );\n\ \n\ \t\t// We can't cloneNode fragments that contain checked, in WebKit\n\ \t\tif ( isFunction || !( l <= 1 || typeof value !== \"string\" || jQuery.support.checkClone || !rchecked.test( value ) ) ) {\n\ \t\t\treturn this.each(function( index ) {\n\ \t\t\t\tvar self = set.eq( index );\n\ \t\t\t\tif ( isFunction ) {\n\ \t\t\t\t\targs[0] = value.call( this, index, table ? self.html() : undefined );\n\ \t\t\t\t}\n\ \t\t\t\tself.domManip( args, table, callback );\n\ \t\t\t});\n\ \t\t}\n\ \n\ \t\tif ( l ) {\n\ \t\t\tfragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );\n\ \t\t\tfirst = fragment.firstChild;\n\ \n\ \t\t\tif ( fragment.childNodes.length === 1 ) {\n\ \t\t\t\tfragment = first;\n\ \t\t\t}\n\ \n\ \t\t\tif ( first ) {\n\ \t\t\t\ttable = table && jQuery.nodeName( first, \"tr\" );\n\ \t\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\ \t\t\t\thasScripts = scripts.length;\n\ \n\ \t\t\t\t// Use the original fragment for the last item instead of the first because it can end up\n\ \t\t\t\t// being emptied incorrectly in certain situations (#8070).\n\ \t\t\t\tfor ( ; i < l; i++ ) {\n\ \t\t\t\t\tnode = fragment;\n\ \n\ \t\t\t\t\tif ( i !== iNoClone ) {\n\ \t\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\ \n\ \t\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\ \t\t\t\t\t\tif ( hasScripts ) {\n\ \t\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\tcallback.call(\n\ \t\t\t\t\t\ttable && jQuery.nodeName( this[i], \"table\" ) ?\n\ \t\t\t\t\t\t\tfindOrAppend( this[i], \"tbody\" ) :\n\ \t\t\t\t\t\t\tthis[i],\n\ \t\t\t\t\t\tnode,\n\ \t\t\t\t\t\ti\n\ \t\t\t\t\t);\n\ \t\t\t\t}\n\ \n\ \t\t\t\tif ( hasScripts ) {\n\ \t\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\ \n\ \t\t\t\t\t// Reenable scripts\n\ \t\t\t\t\tjQuery.map( scripts, restoreScript );\n\ \n\ \t\t\t\t\t// Evaluate executable scripts on first document insertion\n\ \t\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\ \t\t\t\t\t\tnode = scripts[ i ];\n\ \t\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\ \t\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) && jQuery.contains( doc, node ) ) {\n\ \n\ \t\t\t\t\t\t\tif ( node.src ) {\n\ \t\t\t\t\t\t\t\t// Hope ajax is available...\n\ \t\t\t\t\t\t\t\tjQuery.ajax({\n\ \t\t\t\t\t\t\t\t\turl: node.src,\n\ \t\t\t\t\t\t\t\t\ttype: \"GET\",\n\ \t\t\t\t\t\t\t\t\tdataType: \"script\",\n\ \t\t\t\t\t\t\t\t\tasync: false,\n\ \t\t\t\t\t\t\t\t\tglobal: false,\n\ \t\t\t\t\t\t\t\t\t\"throws\": true\n\ \t\t\t\t\t\t\t\t});\n\ \t\t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\t\tjQuery.globalEval( ( node.text || node.textContent || node.innerHTML || \"\" ).replace( rcleanScript, \"\" ) );\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \n\ \t\t\t\t// Fix #11809: Avoid leaking memory\n\ \t\t\t\tfragment = first = null;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn this;\n\ \t}\n\ });\n\ \n\ function findOrAppend( elem, tag ) {\n\ \treturn elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) );\n\ }\n\ \n\ // Replace/restore the type attribute of script elements for safe DOM manipulation\n\ function disableScript( elem ) {\n\ \tvar attr = elem.getAttributeNode(\"type\");\n\ \telem.type = ( attr && attr.specified ) + \"/\" + elem.type;\n\ \treturn elem;\n\ }\n\ function restoreScript( elem ) {\n\ \tvar match = rscriptTypeMasked.exec( elem.type );\n\ \tif ( match ) {\n\ \t\telem.type = match[1];\n\ \t} else {\n\ \t\telem.removeAttribute(\"type\");\n\ \t}\n\ \treturn elem;\n\ }\n\ \n\ // Mark scripts as having already been evaluated\n\ function setGlobalEval( elems, refElements ) {\n\ \tvar elem,\n\ \t\ti = 0;\n\ \tfor ( ; (elem = elems[i]) != null; i++ ) {\n\ \t\tjQuery._data( elem, \"globalEval\", !refElements || jQuery._data( refElements[i], \"globalEval\" ) );\n\ \t}\n\ }\n\ \n\ function cloneCopyEvent( src, dest ) {\n\ \n\ \tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\ \t\treturn;\n\ \t}\n\ \n\ \tvar type, i, l,\n\ \t\toldData = jQuery._data( src ),\n\ \t\tcurData = jQuery._data( dest, oldData ),\n\ \t\tevents = oldData.events;\n\ \n\ \tif ( events ) {\n\ \t\tdelete curData.handle;\n\ \t\tcurData.events = {};\n\ \n\ \t\tfor ( type in events ) {\n\ \t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\ \t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \t// make the cloned public data object a copy from the original\n\ \tif ( curData.data ) {\n\ \t\tcurData.data = jQuery.extend( {}, curData.data );\n\ \t}\n\ }\n\ \n\ function fixCloneNodeIssues( src, dest ) {\n\ \tvar nodeName, e, data;\n\ \n\ \t// We do not need to do anything for non-Elements\n\ \tif ( dest.nodeType !== 1 ) {\n\ \t\treturn;\n\ \t}\n\ \n\ \tnodeName = dest.nodeName.toLowerCase();\n\ \n\ \t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\ \tif ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) {\n\ \t\tdata = jQuery._data( dest );\n\ \n\ \t\tfor ( e in data.events ) {\n\ \t\t\tjQuery.removeEvent( dest, e, data.handle );\n\ \t\t}\n\ \n\ \t\t// Event data gets referenced instead of copied if the expando gets copied too\n\ \t\tdest.removeAttribute( jQuery.expando );\n\ \t}\n\ \n\ \t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\ \tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\ \t\tdisableScript( dest ).text = src.text;\n\ \t\trestoreScript( dest );\n\ \n\ \t// IE6-10 improperly clones children of object elements using classid.\n\ \t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\ \t} else if ( nodeName === \"object\" ) {\n\ \t\tif ( dest.parentNode ) {\n\ \t\t\tdest.outerHTML = src.outerHTML;\n\ \t\t}\n\ \n\ \t\t// This path appears unavoidable for IE9. When cloning an object\n\ \t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\ \t\t// If the src has innerHTML and the destination does not,\n\ \t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\ \t\tif ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {\n\ \t\t\tdest.innerHTML = src.innerHTML;\n\ \t\t}\n\ \n\ \t} else if ( nodeName === \"input\" && manipulation_rcheckableType.test( src.type ) ) {\n\ \t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\ \t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\ \t\t// a checked appearance if the defaultChecked value isn't also set\n\ \n\ \t\tdest.defaultChecked = dest.checked = src.checked;\n\ \n\ \t\t// IE6-7 get confused and end up setting the value of a cloned\n\ \t\t// checkbox/radio button to an empty string instead of \"on\"\n\ \t\tif ( dest.value !== src.value ) {\n\ \t\t\tdest.value = src.value;\n\ \t\t}\n\ \n\ \t// IE6-8 fails to return the selected option to the default selected\n\ \t// state when cloning options\n\ \t} else if ( nodeName === \"option\" ) {\n\ \t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\ \n\ \t// IE6-8 fails to set the defaultValue to the correct value when\n\ \t// cloning other types of input fields\n\ \t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\ \t\tdest.defaultValue = src.defaultValue;\n\ \t}\n\ }\n\ \n\ jQuery.each({\n\ \tappendTo: \"append\",\n\ \tprependTo: \"prepend\",\n\ \tinsertBefore: \"before\",\n\ \tinsertAfter: \"after\",\n\ \treplaceAll: \"replaceWith\"\n\ }, function( name, original ) {\n\ \tjQuery.fn[ name ] = function( selector ) {\n\ \t\tvar elems,\n\ \t\t\ti = 0,\n\ \t\t\tret = [],\n\ \t\t\tinsert = jQuery( selector ),\n\ \t\t\tlast = insert.length - 1;\n\ \n\ \t\tfor ( ; i <= last; i++ ) {\n\ \t\t\telems = i === last ? this : this.clone(true);\n\ \t\t\tjQuery( insert[i] )[ original ]( elems );\n\ \n\ \t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\ \t\t\tcore_push.apply( ret, elems.get() );\n\ \t\t}\n\ \n\ \t\treturn this.pushStack( ret );\n\ \t};\n\ });\n\ \n\ function getAll( context, tag ) {\n\ \tvar elems, elem,\n\ \t\ti = 0,\n\ \t\tfound = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || \"*\" ) :\n\ \t\t\ttypeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || \"*\" ) :\n\ \t\t\tundefined;\n\ \n\ \tif ( !found ) {\n\ \t\tfor ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {\n\ \t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\ \t\t\t\tfound.push( elem );\n\ \t\t\t} else {\n\ \t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\ \t\tjQuery.merge( [ context ], found ) :\n\ \t\tfound;\n\ }\n\ \n\ // Used in buildFragment, fixes the defaultChecked property\n\ function fixDefaultChecked( elem ) {\n\ \tif ( manipulation_rcheckableType.test( elem.type ) ) {\n\ \t\telem.defaultChecked = elem.checked;\n\ \t}\n\ }\n\ \n\ jQuery.extend({\n\ \tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\ \t\tvar destElements, node, clone, i, srcElements,\n\ \t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\ \n\ \t\tif ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\ \t\t\tclone = elem.cloneNode( true );\n\ \n\ \t\t// IE<=8 does not properly clone detached, unknown element nodes\n\ \t\t} else {\n\ \t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\ \t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\ \t\t}\n\ \n\ \t\tif ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&\n\ \t\t\t\t(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {\n\ \n\ \t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\ \t\t\tdestElements = getAll( clone );\n\ \t\t\tsrcElements = getAll( elem );\n\ \n\ \t\t\t// Fix all IE cloning issues\n\ \t\t\tfor ( i = 0; (node = srcElements[i]) != null; ++i ) {\n\ \t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\ \t\t\t\tif ( destElements[i] ) {\n\ \t\t\t\t\tfixCloneNodeIssues( node, destElements[i] );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Copy the events from the original to the clone\n\ \t\tif ( dataAndEvents ) {\n\ \t\t\tif ( deepDataAndEvents ) {\n\ \t\t\t\tsrcElements = srcElements || getAll( elem );\n\ \t\t\t\tdestElements = destElements || getAll( clone );\n\ \n\ \t\t\t\tfor ( i = 0; (node = srcElements[i]) != null; i++ ) {\n\ \t\t\t\t\tcloneCopyEvent( node, destElements[i] );\n\ \t\t\t\t}\n\ \t\t\t} else {\n\ \t\t\t\tcloneCopyEvent( elem, clone );\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Preserve script evaluation history\n\ \t\tdestElements = getAll( clone, \"script\" );\n\ \t\tif ( destElements.length > 0 ) {\n\ \t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\ \t\t}\n\ \n\ \t\tdestElements = srcElements = node = null;\n\ \n\ \t\t// Return the cloned set\n\ \t\treturn clone;\n\ \t},\n\ \n\ \tbuildFragment: function( elems, context, scripts, selection ) {\n\ \t\tvar j, elem, contains,\n\ \t\t\ttmp, tag, tbody, wrap,\n\ \t\t\tl = elems.length,\n\ \n\ \t\t\t// Ensure a safe fragment\n\ \t\t\tsafe = createSafeFragment( context ),\n\ \n\ \t\t\tnodes = [],\n\ \t\t\ti = 0;\n\ \n\ \t\tfor ( ; i < l; i++ ) {\n\ \t\t\telem = elems[ i ];\n\ \n\ \t\t\tif ( elem || elem === 0 ) {\n\ \n\ \t\t\t\t// Add nodes directly\n\ \t\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\ \t\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\ \n\ \t\t\t\t// Convert non-html into a text node\n\ \t\t\t\t} else if ( !rhtml.test( elem ) ) {\n\ \t\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\ \n\ \t\t\t\t// Convert html into DOM nodes\n\ \t\t\t\t} else {\n\ \t\t\t\t\ttmp = tmp || safe.appendChild( context.createElement(\"div\") );\n\ \n\ \t\t\t\t\t// Deserialize a standard representation\n\ \t\t\t\t\ttag = ( rtagName.exec( elem ) || [\"\", \"\"] )[1].toLowerCase();\n\ \t\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\ \n\ \t\t\t\t\ttmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, \"<$1>\" ) + wrap[2];\n\ \n\ \t\t\t\t\t// Descend through wrappers to the right content\n\ \t\t\t\t\tj = wrap[0];\n\ \t\t\t\t\twhile ( j-- ) {\n\ \t\t\t\t\t\ttmp = tmp.lastChild;\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Manually add leading whitespace removed by IE\n\ \t\t\t\t\tif ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\ \t\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Remove IE's autoinserted from table fragments\n\ \t\t\t\t\tif ( !jQuery.support.tbody ) {\n\ \n\ \t\t\t\t\t\t// String was a , *may* have spurious \n\ \t\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\ \t\t\t\t\t\t\ttmp.firstChild :\n\ \n\ \t\t\t\t\t\t\t// String was a bare or \n\ \t\t\t\t\t\t\twrap[1] === \"
\" && !rtbody.test( elem ) ?\n\ \t\t\t\t\t\t\t\ttmp :\n\ \t\t\t\t\t\t\t\t0;\n\ \n\ \t\t\t\t\t\tj = elem && elem.childNodes.length;\n\ \t\t\t\t\t\twhile ( j-- ) {\n\ \t\t\t\t\t\t\tif ( jQuery.nodeName( (tbody = elem.childNodes[j]), \"tbody\" ) && !tbody.childNodes.length ) {\n\ \t\t\t\t\t\t\t\telem.removeChild( tbody );\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\ \n\ \t\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\ \t\t\t\t\ttmp.textContent = \"\";\n\ \n\ \t\t\t\t\t// Fix #12392 for oldIE\n\ \t\t\t\t\twhile ( tmp.firstChild ) {\n\ \t\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Remember the top-level container for proper cleanup\n\ \t\t\t\t\ttmp = safe.lastChild;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\t// Fix #11356: Clear elements from fragment\n\ \t\tif ( tmp ) {\n\ \t\t\tsafe.removeChild( tmp );\n\ \t\t}\n\ \n\ \t\t// Reset defaultChecked for any radios and checkboxes\n\ \t\t// about to be appended to the DOM in IE 6/7 (#8060)\n\ \t\tif ( !jQuery.support.appendChecked ) {\n\ \t\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\ \t\t}\n\ \n\ \t\ti = 0;\n\ \t\twhile ( (elem = nodes[ i++ ]) ) {\n\ \n\ \t\t\t// #4087 - If origin and destination elements are the same, and this is\n\ \t\t\t// that element, do not do anything\n\ \t\t\tif ( selection && jQuery.inArray( elem, selection ) !== -1 ) {\n\ \t\t\t\tcontinue;\n\ \t\t\t}\n\ \n\ \t\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\ \n\ \t\t\t// Append to fragment\n\ \t\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\ \n\ \t\t\t// Preserve script evaluation history\n\ \t\t\tif ( contains ) {\n\ \t\t\t\tsetGlobalEval( tmp );\n\ \t\t\t}\n\ \n\ \t\t\t// Capture executables\n\ \t\t\tif ( scripts ) {\n\ \t\t\t\tj = 0;\n\ \t\t\t\twhile ( (elem = tmp[ j++ ]) ) {\n\ \t\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\ \t\t\t\t\t\tscripts.push( elem );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\ttmp = null;\n\ \n\ \t\treturn safe;\n\ \t},\n\ \n\ \tcleanData: function( elems, /* internal */ acceptData ) {\n\ \t\tvar elem, type, id, data,\n\ \t\t\ti = 0,\n\ \t\t\tinternalKey = jQuery.expando,\n\ \t\t\tcache = jQuery.cache,\n\ \t\t\tdeleteExpando = jQuery.support.deleteExpando,\n\ \t\t\tspecial = jQuery.event.special;\n\ \n\ \t\tfor ( ; (elem = elems[i]) != null; i++ ) {\n\ \n\ \t\t\tif ( acceptData || jQuery.acceptData( elem ) ) {\n\ \n\ \t\t\t\tid = elem[ internalKey ];\n\ \t\t\t\tdata = id && cache[ id ];\n\ \n\ \t\t\t\tif ( data ) {\n\ \t\t\t\t\tif ( data.events ) {\n\ \t\t\t\t\t\tfor ( type in data.events ) {\n\ \t\t\t\t\t\t\tif ( special[ type ] ) {\n\ \t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\ \n\ \t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\ \t\t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\ \t\t\t\t\t\t\t}\n\ \t\t\t\t\t\t}\n\ \t\t\t\t\t}\n\ \n\ \t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\ \t\t\t\t\tif ( cache[ id ] ) {\n\ \n\ \t\t\t\t\t\tdelete cache[ id ];\n\ \n\ \t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes,\n\ \t\t\t\t\t\t// nor does it have a removeAttribute function on Document nodes;\n\ \t\t\t\t\t\t// we must handle all of these cases\n\ \t\t\t\t\t\tif ( deleteExpando ) {\n\ \t\t\t\t\t\t\tdelete elem[ internalKey ];\n\ \n\ \t\t\t\t\t\t} else if ( typeof elem.removeAttribute !== core_strundefined ) {\n\ \t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\ \n\ \t\t\t\t\t\t} else {\n\ \t\t\t\t\t\t\telem[ internalKey ] = null;\n\ \t\t\t\t\t\t}\n\ \n\ \t\t\t\t\t\tcore_deletedIds.push( id );\n\ \t\t\t\t\t}\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ });\n\ var iframe, getStyles, curCSS,\n\ \tralpha = /alpha\\([^)]*\\)/i,\n\ \tropacity = /opacity\\s*=\\s*([^)]*)/,\n\ \trposition = /^(top|right|bottom|left)$/,\n\ \t// swappable if display is none or starts with table except \"table\", \"table-cell\", or \"table-caption\"\n\ \t// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\ \trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\ \trmargin = /^margin/,\n\ \trnumsplit = new RegExp( \"^(\" + core_pnum + \")(.*)$\", \"i\" ),\n\ \trnumnonpx = new RegExp( \"^(\" + core_pnum + \")(?!px)[a-z%]+$\", \"i\" ),\n\ \trrelNum = new RegExp( \"^([+-])=(\" + core_pnum + \")\", \"i\" ),\n\ \telemdisplay = { BODY: \"block\" },\n\ \n\ \tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\ \tcssNormalTransform = {\n\ \t\tletterSpacing: 0,\n\ \t\tfontWeight: 400\n\ \t},\n\ \n\ \tcssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ],\n\ \tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ];\n\ \n\ // return a css property mapped to a potentially vendor prefixed property\n\ function vendorPropName( style, name ) {\n\ \n\ \t// shortcut for names that are not vendor prefixed\n\ \tif ( name in style ) {\n\ \t\treturn name;\n\ \t}\n\ \n\ \t// check for vendor prefixed names\n\ \tvar capName = name.charAt(0).toUpperCase() + name.slice(1),\n\ \t\torigName = name,\n\ \t\ti = cssPrefixes.length;\n\ \n\ \twhile ( i-- ) {\n\ \t\tname = cssPrefixes[ i ] + capName;\n\ \t\tif ( name in style ) {\n\ \t\t\treturn name;\n\ \t\t}\n\ \t}\n\ \n\ \treturn origName;\n\ }\n\ \n\ function isHidden( elem, el ) {\n\ \t// isHidden might be called from jQuery#filter function;\n\ \t// in that case, element will be second argument\n\ \telem = el || elem;\n\ \treturn jQuery.css( elem, \"display\" ) === \"none\" || !jQuery.contains( elem.ownerDocument, elem );\n\ }\n\ \n\ function showHide( elements, show ) {\n\ \tvar display, elem, hidden,\n\ \t\tvalues = [],\n\ \t\tindex = 0,\n\ \t\tlength = elements.length;\n\ \n\ \tfor ( ; index < length; index++ ) {\n\ \t\telem = elements[ index ];\n\ \t\tif ( !elem.style ) {\n\ \t\t\tcontinue;\n\ \t\t}\n\ \n\ \t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\ \t\tdisplay = elem.style.display;\n\ \t\tif ( show ) {\n\ \t\t\t// Reset the inline display of this element to learn if it is\n\ \t\t\t// being hidden by cascaded rules or not\n\ \t\t\tif ( !values[ index ] && display === \"none\" ) {\n\ \t\t\t\telem.style.display = \"\";\n\ \t\t\t}\n\ \n\ \t\t\t// Set elements which have been overridden with display: none\n\ \t\t\t// in a stylesheet to whatever the default browser style is\n\ \t\t\t// for such an element\n\ \t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\ \t\t\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\", css_defaultDisplay(elem.nodeName) );\n\ \t\t\t}\n\ \t\t} else {\n\ \n\ \t\t\tif ( !values[ index ] ) {\n\ \t\t\t\thidden = isHidden( elem );\n\ \n\ \t\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\ \t\t\t\t\tjQuery._data( elem, \"olddisplay\", hidden ? display : jQuery.css( elem, \"display\" ) );\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \t// Set the display of most of the elements in a second loop\n\ \t// to avoid the constant reflow\n\ \tfor ( index = 0; index < length; index++ ) {\n\ \t\telem = elements[ index ];\n\ \t\tif ( !elem.style ) {\n\ \t\t\tcontinue;\n\ \t\t}\n\ \t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\ \t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\ \t\t}\n\ \t}\n\ \n\ \treturn elements;\n\ }\n\ \n\ jQuery.fn.extend({\n\ \tcss: function( name, value ) {\n\ \t\treturn jQuery.access( this, function( elem, name, value ) {\n\ \t\t\tvar len, styles,\n\ \t\t\t\tmap = {},\n\ \t\t\t\ti = 0;\n\ \n\ \t\t\tif ( jQuery.isArray( name ) ) {\n\ \t\t\t\tstyles = getStyles( elem );\n\ \t\t\t\tlen = name.length;\n\ \n\ \t\t\t\tfor ( ; i < len; i++ ) {\n\ \t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\ \t\t\t\t}\n\ \n\ \t\t\t\treturn map;\n\ \t\t\t}\n\ \n\ \t\t\treturn value !== undefined ?\n\ \t\t\t\tjQuery.style( elem, name, value ) :\n\ \t\t\t\tjQuery.css( elem, name );\n\ \t\t}, name, value, arguments.length > 1 );\n\ \t},\n\ \tshow: function() {\n\ \t\treturn showHide( this, true );\n\ \t},\n\ \thide: function() {\n\ \t\treturn showHide( this );\n\ \t},\n\ \ttoggle: function( state ) {\n\ \t\tvar bool = typeof state === \"boolean\";\n\ \n\ \t\treturn this.each(function() {\n\ \t\t\tif ( bool ? state : isHidden( this ) ) {\n\ \t\t\t\tjQuery( this ).show();\n\ \t\t\t} else {\n\ \t\t\t\tjQuery( this ).hide();\n\ \t\t\t}\n\ \t\t});\n\ \t}\n\ });\n\ \n\ jQuery.extend({\n\ \t// Add in style property hooks for overriding the default\n\ \t// behavior of getting and setting a style property\n\ \tcssHooks: {\n\ \t\topacity: {\n\ \t\t\tget: function( elem, computed ) {\n\ \t\t\t\tif ( computed ) {\n\ \t\t\t\t\t// We should always get a number back from opacity\n\ \t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\ \t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\ \t\t\t\t}\n\ \t\t\t}\n\ \t\t}\n\ \t},\n\ \n\ \t// Exclude the following css properties to add px\n\ \tcssNumber: {\n\ \t\t\"columnCount\": true,\n\ \t\t\"fillOpacity\": true,\n\ \t\t\"fontWeight\": true,\n\ \t\t\"lineHeight\": true,\n\ \t\t\"opacity\": true,\n\ \t\t\"orphans\": true,\n\ \t\t\"widows\": true,\n\ \t\t\"zIndex\": true,\n\ \t\t\"zoom\": true\n\ \t},\n\ \n\ \t// Add in properties whose names you wish to fix before\n\ \t// setting or getting the value\n\ \tcssProps: {\n\ \t\t// normalize float css property\n\ \t\t\"float\": jQuery.support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\ \t},\n\ \n\ \t// Get and set the style property on a DOM Node\n\ \tstyle: function( elem, name, value, extra ) {\n\ \t\t// Don't set styles on text and comment nodes\n\ \t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\ \t\t\treturn;\n\ \t\t}\n\ \n\ \t\t// Make sure that we're working with the right name\n\ \t\tvar ret, type, hooks,\n\ \t\t\torigName = jQuery.camelCase( name ),\n\ \t\t\tstyle = elem.style;\n\ \n\ \t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );\n\ \n\ \t\t// gets hook for the prefixed version\n\ \t\t// followed by the unprefixed version\n\ \t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\ \n\ \t\t// Check if we're setting a value\n\ \t\tif ( value !== undefined ) {\n\ \t\t\ttype = typeof value;\n\ \n\ \t\t\t// convert relative number strings (+= or -=) to relative numbers. #7345\n\ \t\t\tif ( type === \"string\" && (ret = rrelNum.exec( value )) ) {\n\ \t\t\t\tvalue = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );\n\ \t\t\t\t// Fixes bug #9237\n\ \t\t\t\ttype = \"number\";\n\ \t\t\t}\n\ \n\ \t\t\t// Make sure that NaN and null values aren't set. See: #7116\n\ \t\t\tif ( value == null || type === \"number\" && isNaN( value ) ) {\n\ \t\t\t\treturn;\n\ \t\t\t}\n\ \n\ \t\t\t// If a number was passed in, add 'px' to the (except for certain CSS properties)\n\ \t\t\tif ( type === \"number\" && !jQuery.cssNumber[ origName ] ) {\n\ \t\t\t\tvalue += \"px\";\n\ \t\t\t}\n\ \n\ \t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\ \t\t\t// but it would mean to define eight (for every problematic property) identical functions\n\ \t\t\tif ( !jQuery.support.clearCloneStyle && value === \"\" && name.indexOf(\"background\") === 0 ) {\n\ \t\t\t\tstyle[ name ] = \"inherit\";\n\ \t\t\t}\n\ \n\ \t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\ \t\t\tif ( !hooks || !(\"set\" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {\n\ \n\ \t\t\t\t// Wrapped to prevent IE from throwing errors when 'invalid' values are provided\n\ \t\t\t\t// Fixes bug #5509\n\ \t\t\t\ttry {\n\ \t\t\t\t\tstyle[ name ] = value;\n\ \t\t\t\t} catch(e) {}\n\ \t\t\t}\n\ \n\ \t\t} else {\n\ \t\t\t// If a hook was provided get the non-computed value from there\n\ \t\t\tif ( hooks && \"get\" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {\n\ \t\t\t\treturn ret;\n\ \t\t\t}\n\ \n\ \t\t\t// Otherwise just get the value from the style object\n\ \t\t\treturn style[ name ];\n\ \t\t}\n\ \t},\n\ \n\ \tcss: function( elem, name, extra, styles ) {\n\ \t\tvar num, val, hooks,\n\ \t\t\torigName = jQuery.camelCase( name );\n\ \n\ \t\t// Make sure that we're working with the right name\n\ \t\tname = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );\n\ \n\ \t\t// gets hook for the prefixed version\n\ \t\t// followed by the unprefixed version\n\ \t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\ \n\ \t\t// If a hook was provided get the computed value from there\n\ \t\tif ( hooks && \"get\" in hooks ) {\n\ \t\t\tval = hooks.get( elem, true, extra );\n\ \t\t}\n\ \n\ \t\t// Otherwise, if a way to get the computed value exists, use that\n\ \t\tif ( val === undefined ) {\n\ \t\t\tval = curCSS( elem, name, styles );\n\ \t\t}\n\ \n\ \t\t//convert \"normal\" to computed value\n\ \t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\ \t\t\tval = cssNormalTransform[ name ];\n\ \t\t}\n\ \n\ \t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\ \t\tif ( extra === \"\" || extra ) {\n\ \t\t\tnum = parseFloat( val );\n\ \t\t\treturn extra === true || jQuery.isNumeric( num ) ? num || 0 : val;\n\ \t\t}\n\ \t\treturn val;\n\ \t},\n\ \n\ \t// A method for quickly swapping in/out CSS properties to get correct calculations\n\ \tswap: function( elem, options, callback, args ) {\n\ \t\tvar ret, name,\n\ \t\t\told = {};\n\ \n\ \t\t// Remember the old values, and insert the new ones\n\ \t\tfor ( name in options ) {\n\ \t\t\told[ name ] = elem.style[ name ];\n\ \t\t\telem.style[ name ] = options[ name ];\n\ \t\t}\n\ \n\ \t\tret = callback.apply( elem, args || [] );\n\ \n\ \t\t// Revert the old values\n\ \t\tfor ( name in options ) {\n\ \t\t\telem.style[ name ] = old[ name ];\n\ \t\t}\n\ \n\ \t\treturn ret;\n\ \t}\n\ });\n\ \n\ // NOTE: we've included the \"window\" in window.getComputedStyle\n\ // because jsdom on node.js will break without it.\n\ if ( window.getComputedStyle ) {\n\ \tgetStyles = function( elem ) {\n\ \t\treturn window.getComputedStyle( elem, null );\n\ \t};\n\ \n\ \tcurCSS = function( elem, name, _computed ) {\n\ \t\tvar width, minWidth, maxWidth,\n\ \t\t\tcomputed = _computed || getStyles( elem ),\n\ \n\ \t\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\ \t\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined,\n\ \t\t\tstyle = elem.style;\n\ \n\ \t\tif ( computed ) {\n\ \n\ \t\t\tif ( ret === \"\" && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\ \t\t\t\tret = jQuery.style( elem, name );\n\ \t\t\t}\n\ \n\ \t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\ \t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\" instead of \"used value\" for margin-right\n\ \t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels\n\ \t\t\t// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values\n\ \t\t\tif ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\ \n\ \t\t\t\t// Remember the original values\n\ \t\t\t\twidth = style.width;\n\ \t\t\t\tminWidth = style.minWidth;\n\ \t\t\t\tmaxWidth = style.maxWidth;\n\ \n\ \t\t\t\t// Put in the new values to get a computed value out\n\ \t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\ \t\t\t\tret = computed.width;\n\ \n\ \t\t\t\t// Revert the changed values\n\ \t\t\t\tstyle.width = width;\n\ \t\t\t\tstyle.minWidth = minWidth;\n\ \t\t\t\tstyle.maxWidth = maxWidth;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn ret;\n\ \t};\n\ } else if ( document.documentElement.currentStyle ) {\n\ \tgetStyles = function( elem ) {\n\ \t\treturn elem.currentStyle;\n\ \t};\n\ \n\ \tcurCSS = function( elem, name, _computed ) {\n\ \t\tvar left, rs, rsLeft,\n\ \t\t\tcomputed = _computed || getStyles( elem ),\n\ \t\t\tret = computed ? computed[ name ] : undefined,\n\ \t\t\tstyle = elem.style;\n\ \n\ \t\t// Avoid setting ret to empty string here\n\ \t\t// so we don't default to auto\n\ \t\tif ( ret == null && style && style[ name ] ) {\n\ \t\t\tret = style[ name ];\n\ \t\t}\n\ \n\ \t\t// From the awesome hack by Dean Edwards\n\ \t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\ \n\ \t\t// If we're not dealing with a regular pixel number\n\ \t\t// but a number that has a weird ending, we need to convert it to pixels\n\ \t\t// but not position css attributes, as those are proportional to the parent element instead\n\ \t\t// and we can't measure the parent instead because it might trigger a \"stacking dolls\" problem\n\ \t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\ \n\ \t\t\t// Remember the original values\n\ \t\t\tleft = style.left;\n\ \t\t\trs = elem.runtimeStyle;\n\ \t\t\trsLeft = rs && rs.left;\n\ \n\ \t\t\t// Put in the new values to get a computed value out\n\ \t\t\tif ( rsLeft ) {\n\ \t\t\t\trs.left = elem.currentStyle.left;\n\ \t\t\t}\n\ \t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\ \t\t\tret = style.pixelLeft + \"px\";\n\ \n\ \t\t\t// Revert the changed values\n\ \t\t\tstyle.left = left;\n\ \t\t\tif ( rsLeft ) {\n\ \t\t\t\trs.left = rsLeft;\n\ \t\t\t}\n\ \t\t}\n\ \n\ \t\treturn ret === \"\" ? \"auto\" : ret;\n\ \t};\n\ }\n\ \n\ function setPositiveNumber( elem, value, subtract ) {\n\ \tvar matches = rnumsplit.exec( value );\n\ \treturn matches ?\n\ \t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\ \t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\ \t\tvalue;\n\ }\n\ \n\ function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\ \tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\ \t\t// If we already have the right measurement, avoid augmentation\n\ \t\t4 :\n\ \t\t// Otherwise initialize for horizontal or vertical properties\n\ \t\tname === \"width\" ? 1 : 0,\n\ \n\ \t\tval = 0;\n\ \n\ \tfor ( ; i < 4; i += 2 ) {\n\ \t\t// both box models exclude margin, so add it if we want it\n\ \t\tif ( extra === \"margin\" ) {\n\ \t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\ \t\t}\n\ \n\ \t\tif ( isBorderBox ) {\n\ \t\t\t// border-box includes padding, so remove it if we want content\n\ \t\t\tif ( extra === \"content\" ) {\n\ \t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\ \t\t\t}\n\ \n\ \t\t\t// at this point, extra isn't border nor margin, so remove border\n\ \t\t\tif ( extra !== \"margin\" ) {\n\ \t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\ \t\t\t}\n\ \t\t} else {\n\ \t\t\t// at this point, extra isn't content, so add padding\n\ \t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\ \n\ \t\t\t// at this point, extra isn't content nor padding, so add border\n\ \t\t\tif ( extra !== \"padding\" ) {\n\ \t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\ \t\t\t}\n\ \t\t}\n\ \t}\n\ \n\ \treturn val;\n\ }\n\ \n\ function getWidthOrHeight( elem, name, extra ) {\n\ \n\ \t// Start with offset property, which is equivalent to the border-box value\n\ \tvar valueIsBorderBox = true,\n\ \t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\ \t\tstyles = getStyles( elem ),\n\ \t\tisBorderBox = jQuery.support.boxSizing && jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\ \n\ \t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\ \t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\ \t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\ \tif ( val <= 0 || val == null ) {\n\ \t\t// Fall back to computed then uncomputed css if necessary\n\ \t\tval = curCSS( elem, name, styles );\n\ \t\tif ( val < 0 || val == null ) {\n\ \t\t\tval = elem.style[ name ];\n\ \t\t}\n\ \n\ \t\t// Computed unit is not pixels. Stop here and return.\n\ \t\tif ( rnumnonpx.test(val) ) {\n\ \t\t\treturn val;\n\ \t\t}\n\ \n\ \t\t// we need the check for style in case a browser which returns unreliable values\n\ \t\t// for getComputedStyle silently falls back to the reliable elem.style\n\ \t\tvalueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] );\n\ \n\ \t\t// Normalize \"\", auto, and prepare for extra\n\ \t\tval = parseFloat( val ) || 0;\n\ \t}\n\ \n\ \t// use the active box-sizing model to add/subtract irrelevant styles\n\ \treturn ( val +\n\ \t\taugmentWidthOrHeight(\n\ \t\t\telem,\n\ \t\t\tname,\n\ \t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\ \t\t\tvalueIsBorderBox,\n\ \t\t\tstyles\n\ \t\t)\n\ \t) + \"px\";\n\ }\n\ \n\ // Try to determine the default display value of an element\n\ function css_defaultDisplay( nodeName ) {\n\ \tvar doc = document,\n\ \t\tdisplay = elemdisplay[ nodeName ];\n\ \n\ \tif ( !display ) {\n\ \t\tdisplay = actualDisplay( nodeName, doc );\n\ \n\ \t\t// If the simple way fails, read from inside an iframe\n\ \t\tif ( display === \"none\" || !display ) {\n\ \t\t\t// Use the already-created iframe if possible\n\ \t\t\tiframe = ( iframe ||\n\ \t\t\t\tjQuery(\"