//Base2.js
function gid(id){return document.getElementById?document.getElementById(id):null;}
function gname(name){return document.getElementsByTagName?document.getElementsByTagName(name):new Array()}
var get_e_src = function(e){if(e) return e.target;if(window.event) return window.event.srcElement;return null;};
function Browser(){var ua, s, i;this.isIE = false;this.isNS = false;this.isOP = false;this.isSF = false;ua = navigator.userAgent.toLowerCase();s = "opera";if ((i = ua.indexOf(s)) >= 0){this.isOP = true;return;}s = "msie";if ((i = ua.indexOf(s)) >= 0) {this.isIE = true;return;}s = "netscape6/";if ((i = ua.indexOf(s)) >= 0) {this.isNS = true;return;}s = "gecko";if ((i = ua.indexOf(s)) >= 0) {this.isNS = true;return;}s = "safari";if ((i = ua.indexOf(s)) >= 0) {this.isSF = true;return;}}

function OpenNewWindow(u, i, w, h, r, s, t){var t = 20;var l = 120;if (window.screen.height) t = (window.screen.height - h) / 2;if (window.screen.width) l = (window.screen.width - w) / 2;var win = window.open(u, i, "width=" + w + ",height=" + h + ",resizable=" + (r?"yes":"no") + ",scrollbars=" + (s?"yes":"no") + ",status=" + (t?"1":"0") + ", top=" + t + ", left=" + l);if (win) win.focus();}

function mcl(show, div, btn, over, padd){var objdiv = gid(div);var objbtn = gid(btn);if (objdiv && objbtn){var browser = new Browser();if (show){objdiv.style.display = "block";if (browser.isIE && over){var allselect = gname("select");for (var i=0; i<allselect.length; i++){allselect[i].style.visibility = "hidden";}}objdiv.style.top = (objbtn.offsetTop + objbtn.offsetHeight - 2) + "px";objdiv.style.left = (objbtn.offsetLeft - (padd?0:50)) + "px";}else{objdiv.style.display = "none";if (browser.isIE && over){var allselect = gname("select");for (var i=0; i<allselect.length; i++){allselect[i].style.visibility = "visible";}}}}}
function InitCM(di){
var mdi=gid(di);
if (mdi){
  if (!mdi.innerHTML){
mdi.innerHTML='<table><tbody><tr><td><a href="http://www.lawtime.cn/change/shanghai" class="B">上海</a></td><td><a href="http://www.lawtime.cn/change/beijing" class="B">北京</a></td><td><a href="http://www.lawtime.cn/change/guangzhou" class="B">广州</a></td><td><a href="http://www.lawtime.cn/change/shenzhen" class="B">深圳</a></td><td><a href="http://www.lawtime.cn/change/chengdu" class="B">成都</a></td><td><a href="http://www.lawtime.cn/change/chongqing" class="B">重庆</a></td><td><a href="http://www.lawtime.cn/change/tianjin" class="B">天津</a></td></tr><tr><td><a href="http://www.lawtime.cn/change/hangzhou" class="B">杭州</a></td><td><a href="http://www.lawtime.cn/change/nj" class="B">南京</a></td><td><a href="http://www.lawtime.cn/change/sz" class="B">苏州</a></td><td><a href="http://www.lawtime.cn/change/ningbo" class="B">宁波</a></td><td><a href="http://www.lawtime.cn/change/yangzhou" class="B">扬州</a></td><td><a href="http://www.lawtime.cn/change/wuxi" class="B">无锡</a></td><td><a href="http://www.lawtime.cn/change/fuzhou" class="B">福州</a></td></tr><tr><td><a href="http://www.lawtime.cn/change/xiamen" class="B">厦门</a></td><td><a href="http://www.lawtime.cn/change/wuhan" class="B">武汉</a></td><td><a href="http://www.lawtime.cn/change/xian" class="B">西安</a></td><td><a href="http://www.lawtime.cn/change/shenyang" class="B">沈阳</a></td><td><a href="http://www.lawtime.cn/change/dalian" class="B">大连</a></td><td><a href="http://www.lawtime.cn/change/changsha" class="B">长沙</a></td><td><a href="http://www.lawtime.cn/change/changchun" class="B">长春</a></td></tr><tr><td><a href="http://www.lawtime.cn/change/nanchang" class="B">南昌</a></td><td><a href="http://www.lawtime.cn/change/qingdao" class="B">青岛</a></td><td><a href="http://www.lawtime.cn/change/haerbin" class="B">哈尔滨</a></td><td><a href="http://www.lawtime.cn/change/jn" class="B">济南</a></td><td><a href="http://www.lawtime.cn/change/zhengzhou" class="B">郑州</a></td><td><a href="http://www.lawtime.cn/change/wenzhou" class="B">温州</a></td><td><a href="http://www.lawtime.cn/change/zhuhai" class="B">珠海</a></td></tr><tr><td><a href="http://www.lawtime.cn/change/hefei" class="B">合肥</a></td><td><a href="http://www.lawtime.cn/change/kunming" class="B">昆明</a></td><td><a href="http://www.lawtime.cn/change/foshan" class="B">佛山</a></td><td><a href="http://www.lawtime.cn/change/dongguan" class="B">东莞</a></td><td><a href="http://www.lawtime.cn/change/lanzhou" class="B">兰州</a></td><td><a href="http://www.lawtime.cn/change/taiyuan" class="B">太原</a></td><td><a href="http://www.lawtime.cn/selectcity/citylist.html" class="B">其它城市</a></td></tr></tbody></table>'}}}

function slideLine(ul, delay, speed, lh) {
	var slideBox = (typeof ul == 'string')?document.getElementById(ul):ul;
	var delay = delay||1000, speed=speed||20, lh = lh||20;
	var tid = null, pause = false;
	var start = function() {
		tid=setInterval(slide, speed);
	}
	var slide = function() {
		if (pause) return;
		slideBox.scrollTop += 2;
		if (slideBox.scrollTop % lh == 0) {
			clearInterval(tid);
			slideBox.appendChild(slideBox.getElementsByTagName('li')[0]);
			slideBox.scrollTop = 0;
			setTimeout(start, delay);
		}
	}
	slideBox.onmouseover=function(){pause=true;}
	slideBox.onmouseout=function(){pause=false;}
	setTimeout(start, delay);
}

/*!
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i?
e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=
j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,
"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=
true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,
Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&
(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,
a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b===
"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,
function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||
c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",
L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,
"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],
d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===
a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&
!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=
true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,
parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=
false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=
s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,
applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];
else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,
a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===
w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,
cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",
i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ",
" ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=
this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=
e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=
c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,
function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");
k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),
C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=
null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=
e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&
f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;
if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,
"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=
a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,
isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit=
{setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};
if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",
e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,
"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,
d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&
!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}},
toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,
u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),
function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];
if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,
e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();
t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||
g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];
for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,
CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},
relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=
l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];
h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},
CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,
g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},
text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},
setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=
h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=
m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m===
"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,
h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||
!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=
h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&
q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";
if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();
(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:
function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,
gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;
c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j=
{},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a===
"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",
d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?
a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===
1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?
a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=
c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},
wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,
this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);
return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,
""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&
this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||
u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===
1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);
return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",
""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=
c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?
c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=
function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=
Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,
"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=
a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=
a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!==
"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this},
serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),
function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,
global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&
e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?
"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===
false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=
false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",
c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||
d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);
g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===
1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b===
"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;
if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");
this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],
"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},
animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=
j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);
this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration===
"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||
c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;
this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=
this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,
e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||
c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement?
function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=
this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;
k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&
f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";
a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b);
c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,
d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":
"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);




/**
 * 头部 + 常用 JS
 * 使用前必需引进jquery.js
 */

/**
 * 加载FLASH或者图片广告
 * @param json djson JSON格式配置和数据 具体看下面使用例子
 * @author M3Lin <m3lin@163.com>
 */
function loadFlashAd(djson){
	if(djson.swf != ''){
		var cell = 0;
		var adhtml = "";
		var cname;
		var mark = 1;
		var ck;
		for(var k in djson.swf){
			ck = k;
			if(mark == ck ){
				ck = ck-1;
			}
			mark ++;
			var sjson = djson.swf[k];
			var scell = parseInt(sjson.cell);
			if(cell + scell <= djson.cellShow){
				if(djson.classModus=='fml'){
					if( ck == 0 ) cname = djson.className[0];
					else if(cell + scell == djson.cellShow) cname = djson.className[2];
					else cname = djson.className[1];
				}else if(djson.classModus=='oe'){
					if( ck%2==0) cname = djson.className[0];
					else cname = djson.className[1];
				}else{ //All
					cname = djson.className[ck];
				}

				var	w = djson.cellSize[scell-1][0];
				var	h = djson.cellSize[scell-1][1];
				adhtml += '<' + djson.tagName + ' class="' + cname + '">';
				if(sjson.type=="1"){
					adhtml += '<object height="' + h + '" width="' + w + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">';
					adhtml += '<param name="movie" value="' + sjson.url + '" />';
					adhtml += '<param name="quality" value="high" />';
					adhtml += '<param name="wmode" value="transparent" />';
					adhtml += '<embed src="' + sjson.url + '" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '" />';
					adhtml += '</object>';
				}else{
					var link = 'http://www.lawtime.cn';
					if(sjson.link!=undefined && sjson.link!=""){
						link = sjson.link;
					}
					adhtml += '<a href="' + sjson.link + '" target="_blank"><img src="' + sjson.url + '" alt="" style="width:' + w + 'px; height:' + h + 'px;" /></a>';
				}
				adhtml += '</' + djson.tagName + '>';

				cell += scell;
			}else{
				break;
			}
		}//End for(var k in djson.swf)

		jQuery(djson.wrap).html('');
		jQuery(djson.wrap).append(adhtml);
	}//End if(djson.swf != '')
}
/* 使用例子
var adDonghuaData = {
	"wrap":"#addonghua",				//广告代码加进去的id容器
	"tagName":"dd",						//包含每条FLASH的标签
	"classModus":"all", 				//all,fml,oe;类参数形式
	"className":["no","",""],			//all=逐个写出tag的class,fml写出首尾中间循环,oe写出间隔使用的两个
	"cellShow":3,						//显示多少个单元动画(注:无引号)
	"cellSize":[["208","55"],["404","55"],["606","55"]],
										//动画的宽高,依次为单元格1-4宽高
	"swf":[{"url":"http:\/\/www.lawtime.cn\/photo\/donghua\/20090511145752.swf","cell":"1","type":"1"},{"url":"http:\/\/www.lawtime.cn\/photo\/donghua\/20090512101148.swf","cell":"1","type":"1"},{"url":"http:\/\/www.lawtime.cn\/photo\/donghua\/20090527154600.swf","cell":"1","type":"1"}]
										//AD信息,URL=完整路径,CELL=单元格,TYPE=1(FALSH)2(IMG)
}
loadFlashAd(adDonghuaData);
*/


/**
 * 标签切换
 * @author HHJ
 */
function setTab(m,n){
	var tli=document.getElementById("menu"+m).getElementsByTagName("p");
	var mli=document.getElementById("main"+m).getElementsByTagName("div");
	for(i=0;i<tli.length;i++){
		tli[i].className=i==n?"hover":"";
		mli[i].style.display=i==n?"block":"none";
	}
}

/**
 * 弹出和隐藏层
 */
function ShowDiv(id,a){
	if(a==1){
		document.getElementById(id).style.display="block";
	}else{
		document.getElementById(id).style.display="none";
	}
}


$(document).ready(function() {

    $("#header-more-id").hover(function() {
        $("#subnav").show();
    },
    function() {
        $("#subnav").hide();
    });
    $("#subnav").hover(function() {
        $("#subnav").show();
    },
    function() {
        $("#subnav").hide();
    });
   $("#ClassLevel1").attr("disabled","disabled");
   $("#ClassLevel2").attr("disabled","disabled");
});



/**
 * 获取并加载公共头部尾部数据
 *
 * @param t string
 * @param d json
 * @author m3lin
 */
function getPublicHF(t,d){
	if(t=="1"){
		$.getJSON("/data/ajax/loadPublicData.php", {'t':t}, function(dj){
			if(dj.donghua !=""){
				var adDonghuaData = {"wrap":"#addonghua","tagName":"dd","classModus":"fml","className":["h_left","","h_right"],"cellShow":3,"cellSize":[["208","55"],["416","55"],["624","55"]],"swf":dj.donghua};
				loadFlashAd(adDonghuaData);
			}
		});
	}else if( t == '2' ){ //法律知识模块动画
		$.getJSON("/data/ajax/loadPublicData.php", {'t':t,'d':d}, function(dj){
			if(dj.zhishiTopAds !='' ){
				var topAd = {"wrap":"#topAdsId","tagName":"dd","classModus":"fml","className":["","",""],"cellShow":1,"cellSize":[["336","68"]],"swf":dj.zhishiTopAds};
				loadFlashAd(topAd);
			}
			if(dj.zhishiHeadAds !=''){
				var headAd = {"wrap":"#headAdsId","tagName":"li","classModus":"fml","className":["f3_left","","f3_right"],"cellShow":3,"cellSize":[["232","84"],["466","84"],["696","84"]],"swf":dj.zhishiHeadAds};
				loadFlashAd(headAd);
			}
		});
	}
}


/**
 * 绑定51统计到按钮
 * @param id
 */
function bind51yes(yesid){
	var c51yesLink = "http://count.51yes.com/index.aspx?id=" + yesid;
	$("#c51yes").attr("href", c51yesLink);
}

/**
 * 通用链接绑定函数
 * @param url			string	需要绑定的链接
 * @param jqSelector	string	jQuery直接使用的选择器
 * @return
 */
function bindLinksHb(url, jqSelector){
	if(typeof jqSelector=='undefined'){
		jqSelector = "#c51yes";
	}
	$(jqSelector).attr("href", url);
}


/**
 * Function: changeMenuStyle()
 * 更改导航样式
 * @input changeMenuStyleJson
 * var changeMenuStyleJson{'indexUrl'  : '首页链接，默认是http://www.lawtime.cn',
 *                        'indexCss'   : '首页将要移除的链接的样式，默认是cur1',
 *                        'thisUrl'    : '当前页面链接',
 *                        'thisCss'    : '当前页面链接样式,默认是 cur2',
 *                        'id'         : '层的id或css名称,默认是 .menu '
 *                       }
 */
function changeMenuStyle(myJson){
	var indexUrl = myJson.indexUrl || 'http://www.lawtime.cn';
	var removeCss = myJson.indexCss || 'cur1';
	var thisUrl = myJson.thisUrl;
	var addCss = myJson.thisCss || 'cur2';
	var id = myJson.addCss || '.menu';
	$(id + " a[href='" + indexUrl + "']").removeClass(removeCss);
	$(id + " a[href='" + thisUrl + "']").addClass(addCss);
}



/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};


//Province.js
var Province = new Array('10','北京','11','上海','12','重庆','13','天津','14','广东','15','河北','16','山西','17','内蒙古','18','辽宁','19','吉林','20','黑龙江','21','江苏','22','浙江','23','安徽','24','福建','25','江西','26','山东','27','河南','28','湖北','29','湖南','30','广西','31','海南','32','四川','33','贵州','34','云南','35','西藏','36','陕西','37','甘肃','38','青海','39','宁夏','40','新疆','41','香港','42','澳门','43','台湾')
var City = new Array()
City["10"] = new Array('1000','','1001','北京')
City["11"] = new Array('1100','','1101','上海')
City["12"] = new Array('1200','','1201','重庆')
City["13"] = new Array('1300','','1301','天津')
City["14"] = new Array('1400','','1401','广州','1402','深圳','1403','珠海','1404','汕头','1405','韶关','1406','河源','1407','梅州','1408','惠州','1409','汕尾','1410','东莞','1411','中山','1412','江门','1413','佛山','1416','阳江','1417','湛江','1418','茂名','1419','肇庆','1420','云浮','1421','清远','1422','潮州','1423','揭阳')
City["15"] = new Array('1500','','1501','石家庄','1502','邯郸','1503','邢台','1504','保定','1505','张家口','1506','承德','1507','唐山','1508','秦皇岛','1509','沧州','1510','廊坊','1511','衡水')
City["16"] = new Array('1600','','1601','太原','1602','大同','1603','阳泉','1604','长治','1605','晋城','1606','朔州','1607','忻州','1610','临汾','1611','运城','1612','晋中','1613','吕梁')
City["17"] = new Array('1700','','1701','呼和浩特','1702','包头','1703','乌海','1704','赤峰','1708','通辽','1711','阿拉善盟','1712','兴安盟','1713','巴彦淖尔盟','1714','鄂尔多斯','1715','呼伦贝尔','1716','乌兰察布','1717','锡林郭勒盟')
City["18"] = new Array('1800','','1801','沈阳','1802','大连','1803','鞍山','1804','抚顺','1805','本溪','1806','丹东','1807','锦州','1808','葫芦岛','1809','营口','1810','盘锦','1811','阜新','1812','辽阳','1813','铁岭','1814','朝阳')
City["19"] = new Array('1900','','1901','长春','1902','吉林','1903','四平','1904','辽源','1905','通化','1906','白山','1907','松原','1908','白城','1909','延边朝鲜族自治州')
City["20"] = new Array('2000','','2001','哈尔滨','2002','齐齐哈尔','2003','鹤岗','2004','双鸭山','2005','鸡西','2006','大庆','2007','伊春','2008','牡丹江','2009','佳木斯','2010','黑河','2011','绥化','2012','大兴安岭','2013','七台河')
City["21"] = new Array('2100','','2101','南京','2102','连云港','2104','宿迁','2105','盐城','2106','扬州','2107','泰州','2108','南通','2109','镇江','2110','常州','2111','无锡','2112','苏州','2113','徐州','2114','淮安')
City["22"] = new Array('2200','','2201','杭州','2202','宁波','2203','温州','2204','嘉兴','2205','湖州','2206','绍兴','2207','金华','2208','衢州','2209','舟山','2210','台州','2211','丽水')
City["23"] = new Array('2300','','2301','合肥','2302','淮南','2303','淮北','2304','芜湖','2305','铜陵','2306','蚌埠','2307','马鞍山','2308','安庆','2309','黄山','2310','阜阳','2311','宿州','2312','亳州','2313','巢湖','2316','六安','2317','池州','2318','滁州','2319','宣城')
City["24"] = new Array('2400','','2401','福州','2402','厦门','2403','三明','2404','莆田','2405','泉州','2406','漳州','2407','南平','2408','龙岩','2409','宁德')
City["25"] = new Array('2500','','2501','南昌','2502','景德镇','2503','萍乡','2504','新余','2505','九江','2506','鹰潭','2507','赣州','2508','上饶','2509','宜春','2511','吉安','2512','抚州')
City["26"] = new Array('2600','','2601','济南','2602','青岛','2603','淄博','2604','枣庄','2605','东营','2606','潍坊','2607','烟台','2608','威海','2609','济宁','2610','泰安','2611','日照','2612','莱芜','2613','德州','2614','临沂','2615','聊城','2616','滨州','2617','菏泽')
City["27"] = new Array('2700','','2701','郑州','2702','开封','2703','洛阳','2704','平顶山','2705','焦作','2706','鹤壁','2707','新乡','2708','安阳','2709','濮阳','2710','许昌','2711','漯河','2712','三门峡','2713','南阳','2714','商丘','2715','信阳','2716','济源','2717','周口','2718','驻马店')
City["28"] = new Array('2800','','2801','武汉','2802','黄石','2803','襄樊','2804','十堰','2805','荆州','2806','宜昌','2807','荆门','2808','鄂州','2809','孝感','2810','黄冈','2811','咸宁','2812','随州','2813','恩施土家族苗族自治州','2814','潜江','2815','神农架林区','2816','天门','2817','仙桃')
City["29"] = new Array('2900','','2901','长沙','2902','株洲','2903','湘潭','2904','衡阳','2905','邵阳','2906','岳阳','2907','常德','2908','张家界','2909','郴州','2910','益阳','2911','永州','2912','怀化','2913','娄底','2914','湘西土家族苗族自治州')
City["30"] = new Array('3000','','3001','南宁','3002','柳州','3003','桂林','3004','梧州','3005','北海','3006','防城港','3007','钦州','3008','贵港','3009','玉林','3010','崇左','3011','来宾','3012','贺州','3013','百色','3014','河池')
City["31"] = new Array('3100','','3101','海口','3102','三亚','3104','琼海','3105','白沙黎族自治县','3106','保亭黎族苗族自治县','3107','昌江黎族自治县','3108','澄迈县','3109','定安县','3110','东方市','3111','乐东黎族自治县','3112','临高县','3113','陵水黎族自治县','3115','琼中黎族苗族自治县','3116','屯昌县','3117','万宁','3118','文昌','3119','五指山','3120','儋州')
City["32"] = new Array('3200','','3201','成都','3202','自贡','3203','攀枝花','3204','泸州','3205','德阳','3206','绵阳','3207','广元','3208','遂宁','3209','内江','3210','乐山','3211','南充','3212','宜宾','3213','广安','3214','达州','3215','巴中','3216','雅安','3217','眉山','3218','资阳','3219','阿坝藏族羌族自治州','3220','甘孜藏族自治州','3221','凉山彝族自治州')
City["33"] = new Array('3300','','3301','贵阳','3302','六盘水','3303','遵义','3304','铜仁','3305','毕节','3306','安顺','3307','黔西南布依族苗族自治州','3308','黔东南苗族侗族自治州','3309','黔南布依族苗族自治州')
City["34"] = new Array('3400','','3401','昆明','3402','曲靖','3403','玉溪','3404','昭通','3405','思茅','3406','临沧','3407','保山','3408','丽江','3409','文山壮族苗族自治州','3410','红河哈尼族彝族自治州','3411','西双版纳傣族自治州','3412','楚雄彝族自治州','3413','大理白族自治州','3414','德宏傣族景颇族自治州','3415','怒江傈傈族自治州','3417','迪庆藏族自治州')
City["35"] = new Array('3500','','3501','拉萨','3502','那曲','3503','昌都','3504','山南','3505','日喀则','3506','阿里','3507','林芝')
City["36"] = new Array('3600','','3601','西安','3602','铜川','3603','宝鸡','3604','咸阳','3605','渭南','3606','延安','3607','汉中','3608','榆林','3610','安康','3611','商洛')
City["37"] = new Array('3700','','3701','兰州','3702','金昌','3703','白银','3704','天水','3705','嘉峪关','3706','定西','3707','平凉','3709','武威','3710','张掖','3711','酒泉','3712','甘南藏族自治州','3713','临夏回族自治州','3714','陇南','3715','庆阳')
City["38"] = new Array('3800','','3801','西宁','3802','果洛藏族自治州','3803','海北藏族自治州','3804','海东','3805','海南藏族自治州','3806','海西蒙古族藏族自治州','3807','玉树藏族自治州','3808','黄南藏族自治州')
City["39"] = new Array('3900','','3901','银川','3902','石嘴山','3903','吴忠','3904','固原','3905','中卫')
City["40"] = new Array('4000','','4001','乌鲁木齐','4002','克拉玛依','4003','石河子','4004','吐鲁番','4005','哈密','4006','和田','4007','阿克苏','4008','喀什','4009','克孜勒苏柯尔克孜自治州','4010','巴音郭楞蒙古自治州','4011','昌吉回族自治州','4012','博尔塔拉蒙古自治州','4013','伊犁哈萨克自治州','4014','阿拉尔','4015','图木舒克','4016','五家渠')
City["41"] = new Array('4101','香港')
City["42"] = new Array('4201','澳门')
City["43"] = new Array('4301','台湾')

var County = new Array()
County["1000"] = new Array('100000','')
County["1001"] = new Array('100100','北京市','100101','密云县','100102','延庆县','100103','东城区','100104','西城区','100105','崇文区','100106','宣武区','100107','朝阳区','100108','丰台区','100109','石景山区','100110','海淀区','100111','门头沟区','100112','房山区','100113','通州区','100114','顺义区','100115','昌平区','100116','大兴区','100117','怀柔区','100118','平谷区')
County["1100"] = new Array('110000','')
County["1101"] = new Array('110100','上海市','110101','崇明县','110102','黄浦区','110103','卢湾区','110104','徐汇区','110105','长宁区','110106','静安区','110107','普陀区','110108','闸北区','110109','虹口区','110110','杨浦区','110111','宝山区','110112','闵行区','110113','嘉定区','110114','浦东新区','110115','金山区','110116','松江区','110117','青浦区','110118','南汇区','110119','奉贤区')
County["1200"] = new Array('120000','')
County["1201"] = new Array('120100','重庆市','120101','城口县','120102','大足县','120103','垫江县','120104','丰都县','120105','奉节县','120106','合川市','120107','江津市','120108','开县','120109','梁平县','120110','南川市','120111','彭水苗族土家族自治县','120112','荣昌县','120113','石柱土家族自治县','120114','铜梁县','120115','巫山县','120116','巫溪县','120117','武隆县','120118','秀山土家族苗族自治县','120119','永川市','120120','酉阳土家族苗族自治县','120121','云阳县','120122','忠县','120123','潼南县','120124','璧山县','120125','綦江县','120126','渝中区','120127','大渡口','120128','江北区','120129','沙坪坝','120130','九龙坡','120131','南岸区','120132','北碚区','120133','万盛区','120134','双桥区','120135','渝北区','120136','巴南区','120137','万州区','120138','涪陵区','120139','黔江区','120140','长寿区')
County["1300"] = new Array('130000','')
County["1301"] = new Array('130100','天津市','130101','蓟县','130102','静海县','130103','宁河县','130104','西青区','130105','滨海新区','130106','南开区','130107','和平区','130108','河东区','130109','河西区','130110','河北区','130111','红桥区','130112','东丽区','130113','北辰区','130114','津南区','130115','武清区','130116','宝坻区')
County["1400"] = new Array('140000','')
County["1401"] = new Array('140100','广州市','140101','从化市','140102','增城市','140103','番禺','140112','萝岗区','140111','南沙区','140110','花都区','40109','黄埔区','140108','白云区','140107','天河区','140106','海珠区','140105','荔湾区','140104','越秀区')
County["1402"] = new Array('140200','深圳市','140201','福田区','140202','罗湖区','140203','南山区','140204','盐田区','140205','宝安区','140206','龙岗区')
County["1403"] = new Array('140300','珠海市')
County["1404"] = new Array('140400','汕头市','140401','南澳县')
County["1405"] = new Array('140500','韶关市','140501','乐昌市','140502','南雄市','140503','曲江县','140504','仁化县','140505','乳源瑶族自治县','140506','始兴县','140507','翁源县','140508','新丰县')
County["1406"] = new Array('140600','河源市','140601','东源县','140602','和平县','140603','连平县','140604','龙川县','140605','紫金县')
County["1407"] = new Array('140700','梅州市','140701','大埔县','140702','丰顺县','140703','蕉岭县','140704','梅县','140705','平远县','140706','五华县','140707','兴宁市')
County["1408"] = new Array('140800','惠州市','140801','博罗县','140802','惠东县','140803','龙门县')
County["1409"] = new Array('140900','汕尾市','140901','海丰县','140902','陆丰市','140903','陆河县')
County["1410"] = new Array('141000','东莞市','141001','莞城区','141002','东城区','141003','南城区','141004','万江区')
County["1411"] = new Array('141100','中山市')
County["1412"] = new Array('141200','江门市','141201','恩平市','141202','鹤山市','141203','开平市','141204','台山市')
County["1413"] = new Array('141300','佛山市','141301','禅城区','141302','南海区','141303','顺德区','141304','三水区','141305','高明区')
County["1416"] = new Array('141600','阳江市','141601','阳春市','141602','阳东县','141603','阳西县')
County["1417"] = new Array('141700','湛江市','141701','雷州市','141702','廉江市','141703','遂溪县','141704','吴川市','141705','徐闻县')
County["1418"] = new Array('141800','茂名市','141801','电白县','141802','高州市','141803','化州市','141804','信宜市')
County["1419"] = new Array('141900','肇庆市','141901','德庆县','141902','封开县','141903','高要市','141904','广宁县','141905','怀集县','141906','四会市')
County["1420"] = new Array('142000','云浮市','142001','罗定市','142002','新兴县','142003','郁南县','142004','云安县')
County["1421"] = new Array('142100','清远市','142101','佛冈县','142102','连南瑶族自治县','142103','连山壮族瑶族自治县','142104','连州市','142105','清新县','142106','阳山县','142107','英德市')
County["1422"] = new Array('142200','潮州市','142201','潮安县','142202','饶平县')
County["1423"] = new Array('142300','揭阳市','142301','惠来县','142302','揭东县','142303','揭西县','142304','普宁市')
County["1500"] = new Array('150000','')
County["1501"] = new Array('150100','石家庄市','150101','高邑县','150102','晋州市','150103','井陉县','150104','灵寿县','150105','鹿泉市','150106','平山县','150107','深泽县','150108','无极县','150109','辛集市','150110','新乐市','150112','行唐县','150113','元氏县','150114','赞皇县','150115','赵县','150116','正定县','150117','藁城市','150118','栾城县')
County["1502"] = new Array('150200','邯郸市','150201','成安县','150202','磁县','150203','大名县','150204','肥乡县','150205','馆陶县','150206','广平县','150207','邯郸县','150208','鸡泽县','150209','临漳县','150210','邱县','150211','曲周县','150212','涉县','150213','魏县','150214','武安市','150215','永年县')
County["1503"] = new Array('150300','邢台市','150301','柏乡县','150302','广宗县','150303','巨鹿县','150304','临城县','150305','临西县','150306','隆尧县','150307','南宫市','150308','南和县','150309','内丘县','150310','宁晋县','150311','平乡县','150312','清河县','150313','任县','150314','沙河市','150315','威县','150316','新河县','150317','邢台县')
County["1504"] = new Array('150400','保定市','150401','安国市','150402','安新县','150403','博野县','150404','定兴县','150405','定州市','150406','阜平县','150407','高碑店市','150408','高阳县','150409','满城县','150410','清苑县','150411','曲阳县','150412','容城县','150413','顺平县','150414','唐县','150415','望都县','150416','雄县','150417','徐水县','150418','易县','150419','涞水县','150420','涞源县','150421','涿州市','150422','蠡县')
County["1505"] = new Array('150500','张家口市','150501','赤城县','150502','崇礼县','150503','沽源县','150504','怀安县','150505','怀来县','150506','康保县','150507','尚义县','150508','万全县','150509','蔚县','150510','宣化县','150511','阳原县','150512','张北县','150513','涿鹿县')
County["1506"] = new Array('150600','承德市','150601','承德县','150602','丰宁满族自治县','150603','宽城满族自治县','150604','隆化县','150605','滦平县','150606','平泉县','150607','围场满族蒙古族自治县','150608','兴隆县')
County["1507"] = new Array('150700','唐山市','150701','乐亭县','150702','滦南县','150703','滦县','150704','迁安市','150705','迁西县','150706','唐海县','150707','玉田县','150708','遵化市')
County["1508"] = new Array('150800','秦皇岛市','150801','昌黎县','150802','抚宁县','150803','卢龙县','150804','青龙满族自治县')
County["1509"] = new Array('150900','沧州市','150901','泊头市','150902','沧县','150903','东光县','150904','海兴县','150905','河间市','150906','黄骅市','150907','孟村回族自治县','150908','南皮县','150909','青县','150910','任丘市','150911','肃宁县','150912','吴桥县','150913','献县','150914','盐山县')
County["1510"] = new Array('151000','廊坊市','151001','霸州市','151002','大厂回族自治县','151003','大城县','151004','固安县','151005','三河市','151006','文安县','151007','香河县','151008','永清县')
County["1511"] = new Array('151100','衡水市','151101','安平县','151102','阜城县','151103','故城县','151104','冀州市','151105','景县','151106','饶阳县','151107','深州市','151108','武强县','151109','武邑县','151110','枣强县')
County["1600"] = new Array('160000','')
County["1601"] = new Array('160100','太原市','160101','古交市','160102','娄烦县','160103','清徐县','160104','阳曲县')
County["1602"] = new Array('160200','大同市','160201','大同县','160202','广灵县','160203','浑源县','160204','灵丘县','160205','天镇县','160206','阳高县','160207','左云县')
County["1603"] = new Array('160300','阳泉市','160301','平定县','160302','盂县')
County["1604"] = new Array('160400','长治市','160401','长治县','160402','长子县','160403','壶关县','160404','黎城县','160405','潞城市','160406','平顺县','160407','沁县','160408','沁源县','160409','屯留县','160410','武乡县','160411','襄垣县')
County["1605"] = new Array('160500','晋城市','160501','高平市','160502','陵川县','160503','沁水县','160504','阳城县','160505','泽州县')
County["1606"] = new Array('160600','朔州市','160601','怀仁县','160602','山阴县','160603','应县','160604','右玉县')
County["1607"] = new Array('160700','忻州市','160701','保德县','160702','代县','160703','定襄县','160704','繁峙县','160705','河曲县','160706','静乐县','160707','宁武县','160708','偏关县','160709','神池县','160710','五台县','160711','五寨县','160712','原平市','160713','岢岚县')
County["1610"] = new Array('161000','临汾市','161001','安泽县','161002','大宁县','161003','汾西县','161004','浮山县','161005','古县','161006','洪洞县','161007','侯马市','161008','霍州市','161009','吉县','161010','蒲县','161011','曲沃县','161012','襄汾县','161013','乡宁县','161014','翼城县','161015','永和县','161016','隰县')
County["1611"] = new Array('161100','运城市','161101','河津市','161102','临猗县','161103','平陆县','161104','万荣县','161105','闻喜县','161106','夏县','161107','新绛县','161108','永济市','161109','垣曲县','161110','芮城县','161111','绛县','161112','稷山县')
County["1612"] = new Array('161200','晋中市','161201','和顺县','161202','介休市','161203','灵石县','161204','平遥县','161205','祁县','161206','寿阳县','161207','太谷县','161208','昔阳县','161209','榆社县','161210','左权县')
County["1613"] = new Array('161300','吕梁市','161301','方山县','161302','汾阳市','161303','交城县','161304','交口县','161305','临县','161306','柳林县','161307','石楼县','161308','文水县','161309','孝义市','161310','兴县','161311','中阳县','161312','岚县')
County["1700"] = new Array('170000','')
County["1701"] = new Array('170100','呼和浩特市','170101','和林格尔县','170102','清水河县','170103','土默特左旗','170104','托克托县','170105','武川县')
County["1702"] = new Array('170200','包头市','170201','达尔罕茂明安联合旗','170202','固阳县','170203','土默特右旗')
County["1703"] = new Array('170300','乌海市')
County["1704"] = new Array('170400','赤峰市','170401','阿鲁科尔沁旗','170402','敖汉旗','170403','巴林右旗','170404','巴林左旗','170405','喀喇沁旗','170406','克什克腾旗','170407','林西县','170408','宁城县','170409','翁牛特旗')
County["1708"] = new Array('170800','通辽市','170801','霍林郭勒市','170802','开鲁县','170803','科尔沁左翼后旗','170804','科尔沁左翼中旗','170805','库伦旗','170806','奈曼旗','170807','扎鲁特旗')
County["1711"] = new Array('171100','阿拉善左旗','171101','阿拉善右旗','171102','额济纳旗')
County["1712"] = new Array('171200','乌兰浩特市','171201','阿尔山市','171202','科尔沁右翼前旗','171203','科尔沁右翼中旗','171204','突泉县','171205','扎赉特旗')
County["1713"] = new Array('171300','杭锦后旗','171301','临河市','171302','乌拉特后旗','171303','乌拉特前旗','171304','乌拉特中旗','171305','五原县','171306','磴口县')
County["1714"] = new Array('171400','鄂尔多斯市','171401','达拉特旗','171402','鄂托克旗','171403','鄂托克前旗','171404','杭锦旗','171405','乌审旗','171406','伊金霍洛旗','171407','准格尔旗')
County["1715"] = new Array('171500','呼伦贝尔市','171501','阿荣旗','171502','陈巴尔虎旗','171503','额尔古纳市','171504','鄂伦春自治旗','171505','鄂温克族自治旗','171506','根河市','171507','满洲里市','171508','莫力达瓦达斡尔族自治旗','171509','新巴尔虎右旗','171510','新巴尔虎左旗','171511','牙克石市','171512','扎兰屯市')
County["1716"] = new Array('171600','乌兰察布市','171601','察哈尔右翼后旗','171602','察哈尔右翼前旗','171603','察哈尔右翼中旗','171604','丰镇市','171605','化德县','171606','凉城县','171607','商都县','171608','四子王旗','171609','兴和县','171610','卓资县')
County["1717"] = new Array('171700','锡林浩特市','171701','阿巴嘎旗','171702','东乌珠穆沁旗','171703','多伦县','171704','二连浩特市','171705','苏尼特右旗','171706','苏尼特左旗','171707','太仆寺旗','171708','西乌珠穆沁旗','171709','镶黄旗','171710','正蓝旗','171711','正镶白旗')
County["1800"] = new Array('180000','')
County["1801"] = new Array('180100','沈阳市','180101','法库县','180102','康平县','180103','辽中县','180104','新民市')
County["1802"] = new Array('180200','大连市','180201','长海县','180202','普兰店市','180203','瓦房店市','180204','庄河市')
County["1803"] = new Array('180300','鞍山市','180301','海城市','180302','台安县','180303','岫岩满族自治县')
County["1804"] = new Array('180400','抚顺市','180401','抚顺县','180402','清原满族自治县','180403','新宾满族自治县')
County["1805"] = new Array('180500','本溪市','180501','本溪满族自治县','180502','桓仁满族自治县')
County["1806"] = new Array('180600','丹东市','180601','东港市','180602','凤城市','180603','宽甸满族自治县')
County["1807"] = new Array('180700','锦州市','180701','北宁市','180702','黑山县','180703','凌海市','180704','义县')
County["1808"] = new Array('180800','葫芦岛市','180801','建昌县','180802','绥中县','180803','兴城市')
County["1809"] = new Array('180900','营口市','180901','大石桥市','180902','盖州市','180903','鲅鱼圈区')
County["1810"] = new Array('181000','盘锦市','181001','大洼县','181002','盘山县')
County["1811"] = new Array('181100','阜新市','181101','阜新蒙古族自治县','181102','彰武县')
County["1812"] = new Array('181200','辽阳市','181201','灯塔市','181202','辽阳县')
County["1813"] = new Array('181300','铁岭市','181301','昌图县','181302','调兵山市','181303','开原市','181304','铁岭县','181305','西丰县')
County["1814"] = new Array('181400','朝阳市','181401','北票市','181402','朝阳县','181403','建平县','181404','喀喇沁左翼蒙古族自治县','181405','凌源市')
County["1900"] = new Array('190000','')
County["1901"] = new Array('190100','长春市','190101','德惠市','190102','九台市','190103','农安县','190104','榆树市')
County["1902"] = new Array('190200','吉林市','190201','磐石市','190202','舒兰市','190203','永吉县','190204','桦甸市','190205','蛟河市')
County["1903"] = new Array('190300','四平市','190301','公主岭市','190302','梨树县','190303','双辽市','190304','伊通满族自治县')
County["1904"] = new Array('190400','辽源市','190401','东丰县','190402','东辽县')
County["1905"] = new Array('190500','通化市','190501','辉南县','190502','集安市','190503','柳河县','190504','梅河口市','190505','通化县')
County["1906"] = new Array('190600','白山市','190601','长白朝鲜族自治县','190602','抚松县','190603','江源县','190604','靖宇县','190605','临江市')
County["1907"] = new Array('190700','松原市','190701','长岭县','190702','扶余县','190703','乾安县','190704','前郭尔罗斯蒙古族自治县')
County["1908"] = new Array('190800','白城市','190801','大安市','190802','通榆县','190803','镇赉县','190804','洮南市')
County["1909"] = new Array('190900','延吉市','190901','安图县','190902','敦化市','190903','和龙市','190904','龙井市','190905','图们市','190906','汪清县','190907','珲春市')
County["2000"] = new Array('200000','')
County["2001"] = new Array('200100','哈尔滨市','200101','阿城市','200102','巴彦县','200103','宾县','200104','方正县','200105','呼兰县','200106','木兰县','200107','尚志市','200108','双城市','200109','通河县','200110','五常市','200111','延寿县','200112','依兰县')
County["2002"] = new Array('200200','齐齐哈尔市','200201','拜泉县','200202','富裕县','200203','甘南县','200204','克东县','200205','克山县','200206','龙江县','200207','泰来县','200208','依安县','200209','讷河市')
County["2003"] = new Array('200300','鹤岗市','200301','萝北县','200302','绥滨县')
County["2004"] = new Array('200400','双鸭山市','200401','宝清县','200402','集贤县','200403','饶河县','200404','友谊县')
County["2005"] = new Array('200500','鸡西市','200501','虎林市','200502','鸡东县','200503','密山市')
County["2006"] = new Array('200600','大庆市','200601','杜尔伯特蒙古族自治县','200602','林甸县','200603','肇源县','200604','肇州县')
County["2007"] = new Array('200700','伊春市','200701','嘉荫县','200702','铁力市')
County["2008"] = new Array('200800','牡丹江市','200801','东宁县','200802','海林市','200803','林口县','200804','穆棱市','200805','宁安市','200806','绥芬河市')
County["2009"] = new Array('200900','佳木斯市','200901','抚远县','200902','富锦市','200903','汤原县','200904','同江市','200905','桦川县','200906','桦南县')
County["2010"] = new Array('201000','黑河市','201001','北安市','201002','嫩江县','201003','孙吴县','201004','五大连池市','201005','逊克县')
County["2011"] = new Array('201100','绥化市','201101','安达市','201102','海伦市','201103','兰西县','201104','明水县','201105','青冈县','201106','庆安县','201107','绥棱县','201108','望奎县','201109','肇东市')
County["2012"] = new Array('201200','呼玛县','201201','漠河县','201202','塔河县','201203','加格达奇市','201204','大兴安岭市')
County["2013"] = new Array('201300','七台河市','201301','勃利县')
County["2100"] = new Array('210000','')
County["2101"] = new Array('210100','南京市','210101','高淳县','210102','溧水县')
County["2102"] = new Array('210200','连云港市','210201','东海县','210202','赣榆县','210203','灌南县','210204','灌云县')
County["2104"] = new Array('210400','宿迁市','210401','宿豫县','210402','沭阳县','210403','泗洪县','210404','泗阳县')
County["2105"] = new Array('210500','盐城市','210501','滨海县','210502','大丰市','210503','东台市','210504','阜宁县','210505','建湖县','210506','射阳县','210507','响水县','210508','盐都县')
County["2106"] = new Array('210600','扬州市','210601','宝应县','210602','高邮市','210603','江都市','210604','仪征市')
County["2107"] = new Array('210700','泰州市','210701','姜堰市','210702','靖江市','210703','泰兴市','210704','兴化市')
County["2108"] = new Array('210800','南通市','210801','海安县','210802','海门市','210803','启东市','210804','如东县','210805','如皋市','210806','通州市')
County["2109"] = new Array('210900','镇江市','210901','丹阳市','210902','句容市','210903','扬中市')
County["2110"] = new Array('211000','常州市','211001','金坛市','211002','溧阳市')
County["2111"] = new Array('211100','无锡市','211101','江阴市','211102','宜兴市')
County["2112"] = new Array('211200','苏州市','211201','常熟市','211202','昆山市','211203','太仓市','211204','吴江市','211205','张家港市')
County["2113"] = new Array('211300','徐州市','211301','丰县','211302','沛县','211303','铜山县','211304','新沂市','211305','邳州市','211306','睢宁县')
County["2114"] = new Array('211400','淮安市','211401','洪泽县','211402','金湖县','211403','涟水县','211404','盱眙县')
County["2200"] = new Array('220000','')
County["2201"] = new Array('220100','杭州市','220101','淳安县','220102','富阳市','220103','建德市','220104','临安市','220105','桐庐县')
County["2202"] = new Array('220200','宁波市','220201','慈溪市','220202','奉化市','220203','宁海县','220204','象山县','220205','余姚市')
County["2203"] = new Array('220300','温州市','220301','苍南县','220302','洞头县','220303','乐清市','220304','平阳县','220305','瑞安市','220306','泰顺县','220307','文成县','220308','永嘉县')
County["2204"] = new Array('220400','嘉兴市','220401','海宁市','220402','海盐县','220403','嘉善县','220404','平湖市','220405','桐乡市')
County["2205"] = new Array('220500','湖州市','220501','安吉县','220502','长兴县','220503','德清县')
County["2206"] = new Array('220600','绍兴市','220601','上虞市','220602','绍兴县','220603','新昌县','220604','诸暨市','220605','嵊州市')
County["2207"] = new Array('220700','金华市','220701','东阳市','220702','兰溪市','220703','磐安县','220704','浦江县','220705','武义县','220706','义乌市','220707','永康市')
County["2208"] = new Array('220800','衢州市','220801','常山县','220802','江山市','220803','开化县','220804','龙游县')
County["2209"] = new Array('220900','舟山市','220901','岱山县','220902','嵊泗县')
County["2210"] = new Array('221000','台州市','221001','临海市','221002','三门县','221003','天台县','221004','温岭市','221005','仙居县','221006','玉环县')
County["2211"] = new Array('221100','丽水市','221101','景宁畲族自治县','221102','龙泉市','221103','青田县','221104','庆元县','221105','松阳县','221106','遂昌县','221107','云和县','221108','缙云县')
County["2300"] = new Array('230000','')
County["2301"] = new Array('230100','合肥市','230102','长丰县','230103','肥东县','230104','肥西县')
County["2302"] = new Array('230200','淮南市','230201','凤台县')
County["2303"] = new Array('230300','淮北市','230301','濉溪县')
County["2304"] = new Array('230400','芜湖市','230401','繁昌县','230402','南陵县','230403','芜湖县')
County["2305"] = new Array('230500','铜陵市','230501','铜陵县')
County["2306"] = new Array('230600','蚌埠市','230601','固镇县','230602','怀远县','230603','五河县')
County["2307"] = new Array('230700','马鞍山市','230701','当涂县')
County["2308"] = new Array('230800','安庆市','230801','怀宁县','230802','潜山县','230803','宿松县','230804','太湖县','230805','桐城市','230806','望江县','230807','岳西县','230808','枞阳县')
County["2309"] = new Array('230900','黄山市','230901','祁门县','230902','休宁县','230903','歙县','230904','黟县')
County["2310"] = new Array('231000','阜阳市','231001','阜南县','231002','界首市','231003','临泉县','231004','太和县','231005','颖上县')
County["2311"] = new Array('231100','宿州市','231101','灵璧县','231102','萧县','231103','泗县','231104','砀山县')
County["2312"] = new Array('231200','亳州市','231201','利辛县','231202','蒙城县','231203','涡阳县')
County["2313"] = new Array('231300','巢湖市','231301','含山县','231302','和县','231303','庐江县','231304','无为县')
County["2316"] = new Array('231600','六安市','231601','霍邱县','231602','霍山县','231603','金寨县','231604','寿县','231605','舒城县')
County["2317"] = new Array('231700','池州市','231701','东至县','231702','青阳县','231703','石台县')
County["2318"] = new Array('231800','滁州市','231801','定远县','231802','凤阳县','231803','来安县','231804','明光市','231805','全椒县','231806','天长市')
County["2319"] = new Array('231900','宣城市','231901','广德县','231902','绩溪县','231903','郎溪县','231904','宁国市','231905','泾县','231906','旌德县')
County["2400"] = new Array('240000','')
County["2401"] = new Array('240100','福州市','240101','长乐市','240102','福清市','240103','连江县','240104','罗源县','240105','闽侯县','240106','闽清县','240107','平潭县','240108','永泰县')
County["2402"] = new Array('240200','厦门市')
County["2403"] = new Array('240300','三明市','240301','大田县','240302','建宁县','240303','将乐县','240304','明溪县','240305','宁化县','240306','清流县','240307','沙县','240308','泰宁县','240309','永安市','240310','尤溪县')
County["2404"] = new Array('240400','莆田市','240401','仙游县')
County["2405"] = new Array('240500','泉州市','240501','安溪县','240502','德化县','240503','惠安县','240504','金门县','240505','晋江市','240506','南安市','240507','石狮市','240508','永春县')
County["2406"] = new Array('240600','漳州市','240601','长泰县','240602','东山县','240603','华安县','240604','龙海市','240605','南靖县','240606','平和县','240607','云霄县','240608','漳浦县','240609','诏安县')
County["2407"] = new Array('240700','南平市','240701','光泽县','240702','建阳市','240703','建瓯市','240704','浦城县','240705','邵武市','240706','顺昌县','240707','松溪县','240708','武夷山市','240709','政和县')
County["2408"] = new Array('240800','龙岩市','240801','长汀县','240802','连城县','240803','上杭县','240804','武平县','240805','永定县','240806','漳平市')
County["2409"] = new Array('240900','宁德市','240901','福安市','240902','福鼎市','240903','古田县','240904','屏南县','240905','寿宁县','240906','霞浦县','240907','周宁县','240908','柘荣县')
County["2500"] = new Array('250000','')
County["2501"] = new Array('250100','南昌市','250101','安义县','250102','进贤县','250103','南昌县','250104','新建县')
County["2502"] = new Array('250200','景德镇市','250201','浮梁县','250202','乐平市')
County["2503"] = new Array('250300','萍乡市','250301','莲花县','250302','芦溪县','250303','上栗县')
County["2504"] = new Array('250400','新余市','250401','分宜县')
County["2505"] = new Array('250500','九江市','250501','德安县','250502','都昌县','250503','湖口县','250504','九江县','250505','彭泽县','250506','瑞昌市','250507','武宁县','250508','星子县','250509','修水县','250510','永修县')
County["2506"] = new Array('250600','鹰潭市','250601','贵溪市','250602','余江县')
County["2507"] = new Array('250700','赣州市','250701','安远县','250702','崇义县','250703','大余县','250704','定南县','250705','赣县','250706','会昌县','250707','龙南县','250708','南康市','250709','宁都县','250710','全南县','250711','瑞金市','250712','上犹县','250713','石城县','250714','信丰县','250715','兴国县','250716','寻乌县','250717','于都县')
County["2508"] = new Array('250800','上饶市','250801','鄱阳县','250802','德兴市','250803','广丰县','250804','横峰县','250805','铅山县','250806','上饶县','250807','万年县','250808','余干县','250809','玉山县','250810','弋阳县','250811','婺源县')
County["2509"] = new Array('250900','宜春市','250901','丰城市','250902','奉新县','250903','高安市','250904','靖安县','250905','上高县','250906','铜鼓县','250907','万载县','250908','宜丰县','250909','樟树市')
County["2511"] = new Array('251100','吉安市','251101','安福县','251102','吉安县','251103','吉水县','251104','井冈山市','251105','遂川县','251106','泰和县','251107','万安县','251108','峡江县','251109','新干县','251110','永丰县','251111','永新县')
County["2512"] = new Array('251200','抚州市','251201','崇仁县','251202','东乡县','251203','广昌县','251204','金溪县','251205','乐安县','251206','黎川县','251207','南城县','251208','南丰县','251209','宜黄县','251210','资溪县')
County["2600"] = new Array('260000','')
County["2601"] = new Array('260100','济南市','260101','济阳县','260102','平阴县','260103','商河县','260104','章丘市')
County["2602"] = new Array('260200','青岛市','260201','即墨市','260202','胶南市','260203','胶州市','260204','莱西市','260205','平度市')
County["2603"] = new Array('260300','淄博市','260301','高青县','260302','桓台县','260303','沂源县')
County["2604"] = new Array('260400','枣庄市','260401','滕州市')
County["2605"] = new Array('260500','东营市','260501','广饶县','260502','垦利县','260503','利津县')
County["2606"] = new Array('260600','潍坊市','260601','安丘市','260602','昌乐县','260603','昌邑市','260604','高密市','260605','临朐县','260606','青州市','260607','寿光市','260608','诸城市')
County["2607"] = new Array('260700','烟台市','260701','长岛县','260702','海阳市','260703','莱阳市','260704','莱州市','260705','龙口市','260706','蓬莱市','260707','栖霞市','260708','招远市')
County["2608"] = new Array('260800','威海市','260801','荣成市','260802','乳山市','260803','文登市')
County["2609"] = new Array('260900','济宁市','260901','嘉祥县','260902','金乡县','260903','梁山县','260904','曲阜市','260905','微山县','260906','鱼台县','260907','邹城市','260908','兖州市','260909','汶上县','260910','泗水县')
County["2610"] = new Array('261000','泰安市','261001','东平县','261002','肥城市','261003','宁阳县','261004','新泰市')
County["2611"] = new Array('261100','日照市','261101','五莲县','261102','莒县')
County["2612"] = new Array('261200','莱芜市')
County["2613"] = new Array('261300','德州市','261301','乐陵市','261302','临邑县','261303','陵县','261304','宁津县','261305','平原县','261306','齐河县','261307','庆云县','261308','武城县','261309','夏津县','261310','禹城市')
County["2614"] = new Array('261400','临沂市','261401','苍山县','261402','费县','261403','临沭县','261404','蒙阴县','261405','平邑县','261406','沂南县','261407','沂水县','261408','郯城县','261410','莒南县')
County["2615"] = new Array('261500','聊城市','261501','东阿县','261502','高唐县','261503','冠县','261504','临清市','261505','阳谷县','261506','茌平县','261507','莘县')
County["2616"] = new Array('261600','滨州市','261601','博兴县','261602','惠民县','261603','无棣县','261604','阳信县','261605','沾化县','261606','邹平县')
County["2617"] = new Array('261700','菏泽市','261701','曹县','261702','成武县','261703','单县','261704','定陶县','261705','东明县','261706','巨野县','261707','郓城县','261708','鄄城县')
County["2700"] = new Array('270000','')
County["2701"] = new Array('270100','郑州市','270101','登封市','270102','巩义市','270103','新密市','270104','新郑市','270105','中牟县','270106','荥阳市')
County["2702"] = new Array('270200','开封市','270201','开封县','270202','兰考县','270203','通许县','270204','尉氏县','270205','杞县')
County["2703"] = new Array('270300','洛阳市','270301','洛宁县','270302','孟津县','270303','汝阳县','270304','新安县','270305','伊川县','270306','宜阳县','270307','偃师市','270308','嵩县','270309','栾川县')
County["2704"] = new Array('270400','平顶山市','270401','宝丰县','270402','鲁山县','270403','汝州市','270404','舞钢市','270405','叶县','270406','郏县')
County["2705"] = new Array('270500','焦作市','270501','博爱县','270502','孟州市','270503','沁阳市','270504','温县','270505','武陟县','270506','修武县')
County["2706"] = new Array('270600','鹤壁市','270601','浚县','270602','淇县')
County["2707"] = new Array('270700','新乡市','270701','长垣县','270702','封丘县','270703','辉县市','270704','获嘉县','270705','卫辉市','270706','新乡县','270707','延津县','270708','原阳县')
County["2708"] = new Array('270800','安阳市','270801','安阳县','270802','滑县','270803','林州市','270804','内黄县','270805','汤阴县')
County["2709"] = new Array('270900','濮阳市','270901','范县','270902','南乐县','270903','清丰县','270904','台前县','270905','濮阳县')
County["2710"] = new Array('271000','许昌市','271001','长葛市','271002','襄城县','271003','许昌县','271004','禹州市','271005','鄢陵县')
County["2711"] = new Array('271100','漯河市','271101','临颍县','271102','舞阳县','271103','郾城县')
County["2712"] = new Array('271200','三门峡市','271201','灵宝市','271202','卢氏县','271203','陕县','271204','义马市','271205','渑池县')
County["2713"] = new Array('271300','南阳市','271301','邓州市','271302','方城县','271303','南召县','271304','内乡县','271305','社旗县','271306','唐河县','271307','桐柏县','271308','西峡县','271309','新野县','271310','镇平县','271311','淅川县')
County["2714"] = new Array('271400','商丘市','271401','民权县','271402','宁陵县','271403','夏邑县','271404','永城市','271405','虞城县','271406','柘城县','271407','睢县')
County["2715"] = new Array('271500','信阳市','271501','固始县','271502','光山县','271503','淮滨县','271504','罗山县','271505','商城县','271506','息县','271507','新县','271508','潢川县')
County["2716"] = new Array('271600','济源市')
County["2717"] = new Array('271700','周口市','271701','郸城县','271702','扶沟县','271703','淮阳县','271704','鹿邑县','271705','商水县','271706','沈丘县','271707','太康县','271708','西华县','271709','项城市')
County["2718"] = new Array('271800','驻马店市','271801','泌阳县','271802','平舆县','271803','确山县','271804','汝南县','271805','上蔡县','271806','遂平县','271807','西平县','271808','新蔡县','271809','正阳县')
County["2800"] = new Array('280000','')
County["2801"] = new Array('280100','武汉市')
County["2802"] = new Array('280200','黄石市','280201','大冶市','280202','阳新县')
County["2803"] = new Array('280300','襄樊市','280301','保康县','280302','谷城县','280303','老河口市','280304','南漳县','280305','宜城市','280306','枣阳市')
County["2804"] = new Array('280400','十堰市','280401','丹江口市','280402','房县','280403','郧西县','280404','郧县','280405','竹山县','280406','竹溪县')
County["2805"] = new Array('280500','荆州市','280501','公安县','280502','洪湖市','280503','监利县','280504','江陵县','280505','石首市','280506','松滋市')
County["2806"] = new Array('280600','宜昌市','280601','长阳土家族自治县','280602','当阳市','280603','五峰土家族自治县','280604','兴山县','280605','宜都市','280606','远安县','280607','枝江市','280608','秭归县')
County["2807"] = new Array('280700','荆门市','280701','京山县','280702','沙洋县','280703','钟祥市')
County["2808"] = new Array('280800','鄂州市')
County["2809"] = new Array('280900','孝感市','280901','安陆市','280902','大悟县','280903','汉川市','280904','孝昌县','280905','应城市','280906','云梦县')
County["2810"] = new Array('281000','黄冈市','281001','红安县','281002','黄梅县','281003','罗田县','281004','麻城市','281005','团风县','281006','武穴市','281007','英山县','281008','蕲春县','281009','浠水县')
County["2811"] = new Array('281100','咸宁市','281101','赤壁市','281102','崇阳县','281103','嘉鱼县','281104','通城县','281105','通山县')
County["2812"] = new Array('281200','随州市','281201','广水市')
County["2813"] = new Array('281300','恩施市','281301','巴东县','281302','鹤峰县','281303','建始县','281304','来凤县','281305','利川市','281306','咸丰县','281307','宣恩县')
County["2814"] = new Array('281400','潜江市')
County["2815"] = new Array('281500','神农架林区')
County["2816"] = new Array('281600','天门市')
County["2817"] = new Array('281700','仙桃市')
County["2900"] = new Array('290000','')
County["2901"] = new Array('290100','长沙市','290101','长沙县','290102','宁乡县','290103','望城县','290104','浏阳市')
County["2902"] = new Array('290200','株洲市','290201','茶陵县','290202','炎陵县','290203','株洲县','290204','攸县','290205','醴陵市')
County["2903"] = new Array('290300','湘潭市','290301','韶山市','290302','湘潭县','290303','湘乡市')
County["2904"] = new Array('290400','衡阳市','290401','常宁市','290402','衡东县','290403','衡南县','290404','衡山县','290405','衡阳县','290406','祁东县','290407','耒阳市')
County["2905"] = new Array('290500','邵阳市','290501','城步苗族自治县','290502','洞口县','290503','隆回县','290504','邵东县','290505','邵阳县','290506','绥宁县','290507','武冈市','290508','新宁县','290509','新邵县')
County["2906"] = new Array('290600','岳阳市','290601','华容县','290602','临湘市','290603','平江县','290604','湘阴县','290605','岳阳县','290606','汨罗市')
County["2907"] = new Array('290700','常德市','290701','安乡县','290702','汉寿县','290703','津市市','290704','临澧县','290705','石门县','290706','桃源县','290707','澧县')
County["2908"] = new Array('290800','张家界市','290801','慈利县','290802','桑植县')
County["2909"] = new Array('290900','郴州市','290901','安仁县','290902','桂东县','290903','桂阳县','290904','嘉禾县','290905','临武县','290906','汝城县','290907','宜章县','290908','永兴县','290909','资兴市')
County["2910"] = new Array('291000','益阳市','291001','安化县','291002','南县','291003','桃江县','291004','沅江市')
County["2911"] = new Array('291100','永州市','291101','道县','291102','东安县','291103','江华瑶族自治县','291104','江永县','291105','蓝山县','291106','宁远县','291107','祁阳县','291108','双牌县','291109','新田县')
County["2912"] = new Array('291200','怀化市','291201','辰溪县','291202','洪江市','291203','会同县','291204','靖州苗族侗族自治县','291205','麻阳苗族自治县','291206','通道侗族自治县','291207','新晃侗族自治县','291208','中方县','291209','芷江侗族自治县','291210','沅陵县','291211','溆浦县')
County["2913"] = new Array('291300','娄底市','291301','冷水江市','291302','涟源市','291303','双峰县','291304','新化县')
County["2914"] = new Array('291400','吉首市','291401','保靖县','291402','凤凰县','291403','古丈县','291404','花垣县','291405','龙山县','291406','永顺县','291407','泸溪县')
County["3000"] = new Array('300000','')
County["3001"] = new Array('300100','南宁市','300101','宾阳县','300102','横县','300103','隆安县','300104','马山县','300105','上林县','300106','武鸣县','300107','邕宁县')
County["3002"] = new Array('300200','柳州市','300201','柳城县','300202','柳江县','300203','鹿寨县','300204','融安县','300205','融水苗族自治县','300206','三江侗族自治县')
County["3003"] = new Array('300300','桂林市','300301','恭城瑶族自治县','300302','灌阳县','300303','荔浦县','300304','临桂县','300305','灵川县','300306','龙胜各族自治县','300307','平乐县','300308','全州县','300309','兴安县','300310','阳朔县','300311','永福县','300312','资源县')
County["3004"] = new Array('300400','梧州市','300401','苍梧县','300402','蒙山县','300403','藤县','300404','岑溪市')
County["3005"] = new Array('300500','北海市','300501','合浦县')
County["3006"] = new Array('300600','防城港市','300601','东兴市','300602','上思县')
County["3007"] = new Array('300700','钦州市','300701','灵山县','300702','浦北县')
County["3008"] = new Array('300800','贵港市','300801','桂平市','300802','平南县')
County["3009"] = new Array('300900','玉林市','300901','北流市','300902','博白县','300903','陆川县','300904','容县','300905','兴业县')
County["3010"] = new Array('301000','崇左市','301001','凭祥市','301002','大新县','301003','扶绥县','301004','龙州县','301005','宁明县','301006','天等县')
County["3011"] = new Array('301100','合山市','301101','金秀瑶族自治县','301102','来宾市','301103','武宣县','301104','象州县','301105','忻城县')
County["3012"] = new Array('301200','贺州市','301201','富川瑶族自治县','301202','昭平县','301203','钟山县')
County["3013"] = new Array('301300','百色市','301301','德保县','301302','靖西县','301303','乐业县','301304','凌云县','301305','隆林各族自治县','301306','那坡县','301307','平果县','301308','田东县','301309','田林县','301310','田阳县','301311','西林县')
County["3014"] = new Array('301400','河池市','301401','巴马瑶族自治县','301402','大化瑶族自治县','301403','东兰县','301404','都安瑶族自治县','301405','凤山县','301406','环江毛南族自治县','301407','罗城仫佬族自治县','301408','南丹县','301409','天峨县','301410','宜州市')
County["3100"] = new Array('310000','')
County["3101"] = new Array('310100','海口市')
County["3102"] = new Array('310200','三亚市')
County["3104"] = new Array('310400','琼海市')
County["3105"] = new Array('310500','白沙黎族自治县')
County["3106"] = new Array('310600','保亭黎族苗族自治县')
County["3107"] = new Array('310700','昌江黎族自治县')
County["3108"] = new Array('310800','澄迈县')
County["3109"] = new Array('310900','定安县')
County["3110"] = new Array('311000','东方市')
County["3111"] = new Array('311100','乐东黎族自治县')
County["3112"] = new Array('311200','临高县')
County["3113"] = new Array('311300','陵水黎族自治县')
County["3115"] = new Array('311500','琼中黎族苗族自治县')
County["3116"] = new Array('311600','屯昌县')
County["3117"] = new Array('311700','万宁市')
County["3118"] = new Array('311800','文昌市')
County["3119"] = new Array('311900','五指山市')
County["3120"] = new Array('312000','儋州市')
County["3200"] = new Array('320000','')
County["3201"] = new Array('320100','成都市','320101','崇州市','320102','大邑县','320103','都江堰市','320104','金堂县','320105','彭州市','320106','蒲江县','320107','双流县','320108','新津县','320109','邛崃市','320110','郫县')
County["3202"] = new Array('320200','自贡市','320201','富顺县','320202','荣县')
County["3203"] = new Array('320300','攀枝花市','320301','米易县','320302','盐边县')
County["3204"] = new Array('320400','泸州市','320401','古蔺县','320402','合江县','320403','叙永县','320404','泸县')
County["3205"] = new Array('320500','德阳市','320501','广汉市','320502','罗江县','320503','绵竹市','320504','什邡市','320505','中江县')
County["3206"] = new Array('320600','绵阳市','320601','安县','320602','北川羌族自治县','320603','江油市','320604','平武县','320605','三台县','320606','盐亭县','320607','梓潼县')
County["3207"] = new Array('320700','广元市','320701','苍溪县','320702','剑阁县','320703','青川县','320704','旺苍县')
County["3208"] = new Array('320800','遂宁市','320801','大英县','320802','蓬溪县','320803','射洪县')
County["3209"] = new Array('320900','内江市','320901','隆昌县','320902','威远县','320903','资中县')
County["3210"] = new Array('321000','乐山市','321001','峨边彝族自治县','321002','峨眉山市','321003','夹江县','321004','井研县','321005','马边彝族自治县','321006','沐川县','321007','犍为县')
County["3211"] = new Array('321100','南充市','321101','南部县','321102','蓬安县','321103','西充县','321104','仪陇县','321105','营山县','321106','阆中市')
County["3212"] = new Array('321200','宜宾市','321201','长宁县','321202','高县','321203','江安县','321204','南溪县','321205','屏山县','321206','兴文县','321207','宜宾县','321208','珙县','321209','筠连县')
County["3213"] = new Array('321300','广安市','321301','华蓥市','321302','邻水县','321303','武胜县','321304','岳池县')
County["3214"] = new Array('321400','达州市','321401','达县','321402','大竹县','321403','开江县','321404','渠县','321405','万源市','321406','宣汉县')
County["3215"] = new Array('321500','巴中市','321501','南江县','321502','平昌县','321503','通江县')
County["3216"] = new Array('321600','雅安市','321601','宝兴县','321602','汉源县','321603','芦山县','321604','名山县','321605','石棉县','321606','天全县','321607','荥经县')
County["3217"] = new Array('321700','眉山市','321701','丹棱县','321702','洪雅县','321703','彭山县','321704','青神县','321705','仁寿县')
County["3218"] = new Array('321800','资阳市','321801','安岳县','321802','简阳市','321803','乐至县')
County["3219"] = new Array('321900','马尔康县','321901','阿坝县','321902','黑水县','321903','红原县','321904','金川县','321905','九寨沟县','321906','理县','321907','茂县','321908','壤塘县','321909','若尔盖县','321910','松潘县','321911','小金县','321912','汶川县')
County["3220"] = new Array('322000','康定县','322001','巴塘县','322002','白玉县','322003','丹巴县','322004','稻城县','322005','道孚县','322006','德格县','322007','得荣县','322008','甘孜县','322009','九龙县','322010','理塘县','322011','炉霍县','322012','色达县','322013','石渠县','322014','乡城县','322015','新龙县','322016','雅江县','322017','泸定县')
County["3221"] = new Array('322100','凉山市','322101','布拖县','322102','德昌县','322103','甘洛县','322104','会东县','322105','会理县','322106','金阳县','322107','雷波县','322108','美姑县','322109','冕宁县','322110','木里藏族自治县','322111','宁南县','322112','普格县','322113','喜德县','322114','盐源县','322115','越西县','322116','昭觉县','322117','西昌市')
County["3300"] = new Array('330000','')
County["3301"] = new Array('330100','贵阳市','330101','开阳县','330102','清镇市','330103','息烽县','330104','修文县')
County["3302"] = new Array('330200','六盘水市','330201','六枝特区','330202','盘县','330203','水城县')
County["3303"] = new Array('330300','遵义市','330301','赤水市','330302','道真仡佬族苗族自治县','330303','凤冈县','330304','仁怀市','330305','绥阳县','330306','桐梓县','330307','务川仡佬族苗族自治县','330308','习水县','330309','余庆县','330310','正安县','330311','遵义县','330312','湄潭县')
County["3304"] = new Array('330400','铜仁市','330401','德江县','330402','江口县','330403','石阡县','330404','思南县','330405','松桃苗族自治县','330406','万山特区','330407','沿河土家族自治县','330408','印江土家族苗族自治县','330409','玉屏侗族自治县')
County["3305"] = new Array('330500','毕节市','330501','大方县','330502','赫章县','330503','金沙县','330504','纳雍县','330505','黔西县','330506','威宁彝族回族苗族自治县','330507','织金县')
County["3306"] = new Array('330600','安顺市','330601','关岭布依族苗族自治县','330602','平坝县','330603','普定县','330604','镇宁布依族苗族自治县','330605','紫云苗族布依族自治县')
County["3307"] = new Array('330700','兴义市','330701','安龙县','330702','册亨县','330703','普安县','330704','晴隆县','330705','望谟县','330706','兴仁县','330707','贞丰县')
County["3308"] = new Array('330800','凯里市','330801','从江县','330802','丹寨县','330803','黄平县','330804','剑河县','330805','锦屏县','330806','雷山县','330807','黎平县','330808','麻江县','330809','三穗县','330810','施秉县','330811','台江县','330812','天柱县','330813','镇远县','330814','岑巩县','330815','榕江县')
County["3309"] = new Array('330900','都匀市','330901','长顺县','330902','独山县','330903','福泉市','330904','贵定县','330905','惠水县','330906','荔波县','330907','龙里县','330908','罗甸县','330909','平塘县','330910','三都水族自治县','330911','瓮安县')
County["3400"] = new Array('340000','')
County["3401"] = new Array('340100','昆明市','340101','安宁市','340102','呈贡县','340103','富民县','340104','晋宁县','340105','禄劝彝族苗族自治县','340106','石林彝族自治县','340107','寻甸回族自治县','340108','宜良县','340109','嵩明县')
County["3402"] = new Array('340200','曲靖市','340201','富源县','340202','会泽县','340203','陆良县','340204','罗平县','340205','马龙县','340206','师宗县','340207','宣威市','340208','沾益县')
County["3403"] = new Array('340300','玉溪市','340301','澄江县','340302','峨山彝族自治县','340303','华宁县','340304','江川县','340305','通海县','340306','新平彝族傣族自治县','340307','易门县','340308','元江哈尼族彝族傣族自治县')
County["3404"] = new Array('340400','昭通市','340401','大关县','340402','鲁甸县','340403','巧家县','340404','水富县','340405','绥江县','340406','威信县','340407','盐津县','340408','彝良县','340409','永善县','340410','镇雄县')
County["3405"] = new Array('340500','思茅市','340501','江城哈尼族彝族自治县','340502','景东彝族自治县','340503','景谷彝族傣族自治县','340504','澜沧拉祜族自治县','340505','孟连傣族拉祜族佤族自治县','340506','墨江哈尼族自治县','340507','普洱哈尼族彝族自治县','340508','西盟佤族自治县','340509','镇沅彝族哈尼族拉祜族自治县')
County["3406"] = new Array('340600','临沧县','340601','沧源佤族自治县','340602','凤庆县','340603','耿马傣族佤族治县','340604','双江拉祜族佤族布朗族傣族自治县','340605','永德县','340606','云县','340607','镇康县')
County["3407"] = new Array('340700','保山市','340701','昌宁县','340702','龙陵县','340703','施甸县','340704','腾冲县')
County["3408"] = new Array('340800','丽江市','340801','华坪县','340802','宁蒗彝族自治县','340803','永胜县','340804','玉龙纳西族自治县')
County["3409"] = new Array('340900','文山县','340901','富宁县','340902','广南县','340903','麻栗坡县','340904','马关县','340905','丘北县','340906','西畴县','340907','砚山县')
County["3410"] = new Array('341000','个旧市','341001','河口瑶族自治县','341002','红河县','341003','建水县','341004','金平苗族瑶族傣族自治县','341005','开远市','341006','绿春县','341007','蒙自县','341008','弥勒县','341009','屏边苗族自治县','341010','石屏县','341011','元阳县','341012','泸西县')
County["3411"] = new Array('341100','西双版纳','341101','勐海县','341102','勐腊县','341100','景洪市')
County["3412"] = new Array('341200','楚雄市','341201','大姚县','341202','禄丰县','341203','牟定县','341204','南华县','341205','双柏县','341206','武定县','341207','姚安县','341208','永仁县','341209','元谋县')
County["3413"] = new Array('341300','大理市','341301','宾川县','341302','洱源县','341303','鹤庆县','341304','剑川县','341305','弥渡县','341306','南涧彝族自治县','341307','巍山彝族回族自治县','341308','祥云县','341309','漾濞彝族自治县','341310','永平县','341311','云龙县')
County["3414"] = new Array('341400','潞西市','341401','梁河县','341402','陇川县','341403','瑞丽市','341404','盈江县')
County["3415"] = new Array('341500','泸水县','341501','福贡县','341502','贡山独龙族怒族自治县','341503','兰坪白族普米族自治县')
County["3417"] = new Array('341700','德钦县','341701','维西傈僳族自治县','341702','香格里拉县')
County["3500"] = new Array('350000','')
County["3501"] = new Array('350100','拉萨市','350101','达孜县','350102','当雄县','350103','堆龙德庆县','350104','林周县','350105','墨竹工卡县','350106','尼木县','350107','曲水县')
County["3502"] = new Array('350200','那曲县','350201','安多县','350202','巴青县','350203','班戈县','350204','比如县','350205','嘉黎县','350206','尼玛县','350207','聂荣县','350208','申扎县','350209','索县')
County["3503"] = new Array('350300','昌都县','350301','八宿县','350302','边坝县','350303','察雅县','350304','丁青县','350305','贡觉县','350306','江达县','350307','类乌齐县','350308','洛隆县','350309','芒康县','350310','左贡县')
County["3504"] = new Array('350400','乃东县','350401','措美县','350402','错那县','350403','贡嘎县','350404','加查县','350405','浪卡子县','350406','隆子县','350407','洛扎县','350408','琼结县','350409','曲松县','350410','桑日县','350411','扎囊县')
County["3505"] = new Array('350500','日喀则市','350501','昂仁县','350502','白朗县','350503','定结县','350504','定日县','350505','岗巴县','350506','吉隆县','350507','江孜县','350508','康马县','350509','拉孜县','350510','南木林县','350511','聂拉木县','350512','仁布县','350513','萨嘎县','350514','萨迦县','350515','谢通门县','350516','亚东县','350517','仲巴县')
County["3506"] = new Array('350600','噶尔县','350601','措勤县','350602','改则县','350603','革吉县','350604','普兰县','350605','日土县','350606','札达县')
County["3507"] = new Array('350700','林芝县','350701','波密县','350702','察隅县','350703','工布江达县','350704','朗县','350705','米林县','350706','墨脱县')
County["3600"] = new Array('360000','')
County["3601"] = new Array('360100','西安市','360101','高陵县','360102','户县','360103','蓝田县','360104','周至县')
County["3602"] = new Array('360200','铜川市','360201','宜君县')
County["3603"] = new Array('360300','宝鸡市','360301','凤县','360302','凤翔县','360303','扶风县','360304','陇县','360305','眉县','360306','千阳县','360307','太白县','360308','岐山县','360309','麟游县')
County["3604"] = new Array('360400','咸阳市','360401','彬县','360402','长武县','360403','淳化县','360404','礼泉县','360405','乾县','360406','三原县','360407','武功县','360408','兴平市','360409','旬邑县','360410','永寿县','360411','泾阳县')
County["3605"] = new Array('360500','渭南市','360501','白水县','360502','澄城县','360503','大荔县','360504','富平县','360505','韩城市','360506','合阳县','360507','华县','360508','华阴市','360509','蒲城县','360510','潼关县')
County["3606"] = new Array('360600','延安市','360601','安塞县','360602','富县','360603','甘泉县','360604','黄陵县','360605','黄龙县','360606','洛川县','360607','吴旗县','360608','延长县','360609','延川县','360610','宜川县','360611','志丹县','360612','子长县')
County["3607"] = new Array('360700','汉中市','360701','城固县','360702','佛坪县','360703','留坝县','360704','略阳县','360705','勉县','360706','南郑县','360707','宁强县','360708','西乡县','360709','洋县','360710','镇巴县')
County["3608"] = new Array('360800','榆林市','360801','定边县','360802','府谷县','360803','横山县','360804','佳县','360805','靖边县','360806','米脂县','360807','清涧县','360808','神木县','360809','绥德县','360810','吴堡县','360811','子洲县')
County["3610"] = new Array('361000','安康市','361001','白河县','361002','汉阴县','361003','宁陕县','361004','平利县','361005','石泉县','361006','旬阳县','361007','镇坪县','361008','紫阳县','361009','岚皋县')
County["3611"] = new Array('361100','商洛市','361101','丹凤县','361102','洛南县','361103','山阳县','361104','商南县','361105','镇安县','361106','柞水县')
County["3700"] = new Array('370000','')
County["3701"] = new Array('370100','兰州市','370101','皋兰县','370102','永登县','370103','榆中县')
County["3702"] = new Array('370200','金昌市','370201','永昌县')
County["3703"] = new Array('370300','白银市','370301','会宁县','370302','景泰县','370303','靖远县')
County["3704"] = new Array('370400','天水市','370401','甘谷县','370402','秦安县','370403','清水县','370404','武山县','370405','张家川回族自治县')
County["3705"] = new Array('370500','嘉峪关市')
County["3706"] = new Array('370600','定西市','370601','临洮县','370602','陇西县','370603','通渭县','370604','渭源县','370605','漳县','370606','岷县')
County["3707"] = new Array('370700','平凉市','370701','崇信县','370702','华亭县','370703','静宁县','370704','灵台县','370705','庄浪县','370706','泾川县')
County["3709"] = new Array('370900','武威市','370901','古浪县','370902','民勤县','370903','天祝藏族自治县')
County["3710"] = new Array('371000','张掖市','371001','高台县','371002','临泽县','371003','民乐县','371004','山丹县','371005','肃南裕固族自治县')
County["3711"] = new Array('371100','玉门市','371101','阿克塞哈萨克族自治县','371102','安西县','371103','敦煌市','371104','金塔县','371105','酒泉市','371106','肃北蒙古族自治县')
County["3712"] = new Array('371200','合作市','371201','迭部县','371202','临潭县','371203','碌曲县','371204','玛曲县','371205','夏河县','371206','舟曲县','371207','卓尼县')
County["3713"] = new Array('371300','临夏市','371301','东乡族自治县','371302','广河县','371303','和政县','371304','积石山保安族东乡族撒拉族自治县','371305','康乐县','371306','临夏县','371307','永靖县')
County["3714"] = new Array('371400','成县','371401','徽县','371402','康县','371403','礼县','371404','两当县','371405','文县','371406','武都县','371407','西和县','371408','宕昌县')
County["3715"] = new Array('371500','庆阳市','371501','合水县','371502','华池县','371503','环县','371504','宁县','371505','庆城县','371506','镇原县','371507','正宁县')
County["3800"] = new Array('380000','')
County["3801"] = new Array('380100','西宁市','380101','大通回族土族自治县','380102','湟源县','380103','湟中县')
County["3802"] = new Array('380200','班玛县','380201','达日县','380202','甘德县','380203','久治县','380204','玛多县','380205','玛沁县')
County["3803"] = new Array('380300','刚察县','380301','海晏县','380302','门源回族自治县','380303','祁连县')
County["3804"] = new Array('380400','互助土族自治县','380401','化隆回族自治县','380402','乐都县','380403','民和回族土族自治县','380404','平安县','380405','循化撒拉族自治县')
County["3805"] = new Array('380500','共和县','380501','贵德县','380502','贵南县','380503','同德县','380504','兴海县')
County["3806"] = new Array('380600','德令哈市','380601','都兰县','380602','格尔木市','380603','天峻县','380604','乌兰县')
County["3807"] = new Array('380700','称多县','380701','囊谦县','380702','曲麻莱县','380703','玉树县','380704','杂多县','380705','治多县')
County["3808"] = new Array('380800','河南蒙古族自治县','380801','尖扎县','380802','同仁县','380803','泽库县')
County["3900"] = new Array('390000','')
County["3901"] = new Array('390100','银川市','390101','贺兰县','390102','灵武市','390103','永宁县')
County["3902"] = new Array('390200','石嘴山市','390201','惠农县','390202','平罗县','390203','陶乐县')
County["3903"] = new Array('390300','吴忠市','390301','青铜峡市','390302','同心县','390303','盐池县')
County["3904"] = new Array('390400','固原市','390401','隆德县','390402','彭阳县','390403','西吉县','390404','泾源县')
County["3905"] = new Array('390500','中卫市','390501','海原县','390502','中宁县')
County["4000"] = new Array('400000','')
County["4001"] = new Array('400100','乌鲁木齐市','400101','乌鲁木齐县')
County["4002"] = new Array('400200','克拉玛依市')
County["4003"] = new Array('400300','石河子市')
County["4004"] = new Array('400400','吐鲁番市','400401','托克逊县','400402','鄯善县')
County["4005"] = new Array('400500','哈密市','400501','巴里坤哈萨克自治县','400502','伊吾县')
County["4006"] = new Array('400600','和田市','400601','策勒县','400602','和田县','400603','洛浦县','400604','民丰县','400605','墨玉县','400606','皮山县','400607','于田县')
County["4007"] = new Array('400700','阿克苏市','400701','阿瓦提县','400702','拜城县','400703','柯坪县','400704','库车县','400705','沙雅县','400706','温宿县','400707','乌什县','400708','新和县')
County["4008"] = new Array('400800','喀什市','400801','巴楚县','400802','麦盖提县','400803','莎车县','400804','疏附县','400805','疏勒县','400806','塔什库尔干塔吉克自治县','400807','叶城县','400808','英吉沙县','400809','岳普湖县','400810','泽普县','400811','伽师县')
County["4009"] = new Array('400900','阿图什市','400901','阿合奇县','400902','阿克陶县','400903','乌恰县')
County["4010"] = new Array('401000','库尔勒市','401001','博湖县','401002','和静县','401003','和硕县','401004','轮台县','401005','且末县','401006','若羌县','401007','尉犁县','401008','焉耆回族自治县')
County["4011"] = new Array('401100','昌吉市','401101','阜康市','401102','呼图壁县','401103','吉木萨尔县','401104','玛纳斯县','401105','米泉市','401106','木垒哈萨克自治县','401107','奇台县')
County["4012"] = new Array('401200','博乐市','401201','精河县','401202','温泉县')
County["4013"] = new Array('401300','奎屯市','401301','阿勒泰市','401302','布尔津县','401303','察布查尔锡伯自治县','401304','额敏县','401305','福海县','401306','富蕴县','401307','巩留县','401308','哈巴河县','401309','和布克赛尔蒙古自治县','401310','霍城县','401311','吉木乃县','401312','尼勒克县','401313','青河县','401314','沙湾县','401315','塔城市','401316','特克斯县','401317','托里县','401318','乌苏市','401319','新源县','401320','伊宁市','401321','伊宁县','401322','裕民县','401323','昭苏县')
County["4014"] = new Array('401400','阿拉尔市')
County["4015"] = new Array('401500','图木舒克市')
County["4016"] = new Array('401600','五家渠市')
County["4101"] = new Array('410100','香港')
County["4201"] = new Array('420100','澳门')
County["4301"] = new Array('430100','台湾')


//GetArea.js
function GetProvince(strTheForm,strProvince,strCity,strCounty,DefaultID)
{
	strProvince = strTheForm + "." + strProvince
	strCity = strTheForm + "." + strCity
	strCounty = strTheForm + "." + strCounty
	var TheProvince = eval(strProvince)
	var TheCity = eval(strCity)
	var TheCounty = eval(strCounty)
	TheCity.disabled = true
	TheCounty.disabled = true
    if(Province.length != 0)
    {
        TheProvince.options.length = 0
        TheProvince.options[0] = new Option('省份','')
        TheProvince.options[0].selected = true
        var j = 1
        for(i=0;i<Province.length;i+=2)
        {
            if(Province[i] == "" || Province[i+1] == "")
            {
            	continue
            }
        	else
        	{
        		TheProvince.options[j] = new Option(Province[i+1],Province[i])
        		j++
        	}
        }
    }
    if(DefaultID != "")
    {
    	DefaultID = DefaultID.toString()
    	var DefaultProvince = DefaultID.substring(0,2)
    	var DefaultCity = DefaultID.substring(0,4)
    	var DefaultCounty = DefaultID.substring(0,6)
    	GetDefaultItem(TheProvince,DefaultProvince)
    	GetCity(strTheForm,strProvince,strCity,strCounty,DefaultID)
    	GetDefaultItem(TheCity,DefaultCity)
    	GetCounty(strTheForm,strProvince,strCity,strCounty,DefaultID)
    	GetDefaultItem(TheCounty,DefaultCounty)
    }
}

function GetCity(strTheForm,strProvince,strCity,strCounty,DefaultID)
{
	if(DefaultID == ""){
	strProvince = strTheForm + "." + strProvince
	strCity = strTheForm + "." + strCity
	strCounty = strTheForm + "." + strCounty
	}
	var TheProvince = eval(strProvince)
	var TheCity = eval(strCity)
	var TheCounty = eval(strCounty)

	if(TheProvince.selectedIndex != 0)
	{
		TheCity.options.length = 0
		TheCity.options[0] = new Option('城市','')
		TheCity.options[0].selected = true
		TheCity.disabled = true
		TheCounty.options.length = 0
		TheCounty.options[0] = new Option('地区','')
		TheCounty.options[0].selected = true
		TheCounty.disabled = true
		CityIndex = TheProvince.options[TheProvince.selectedIndex].value
		var j = 1
   for(i=0;i<City[CityIndex].length;i+=2)
        {
     if(City[CityIndex][i] == "" || City[CityIndex][i+1] == "")
            {
            	continue
            }
    else
        	{
            	TheCity.options[j] = new Option(City[CityIndex][i+1],City[CityIndex][i])
            	j++
            }
        }
   if(TheCity.options.length > 1) TheCity.disabled = false
	}
	else
	{
		TheCity.options.length = 0
		TheCity.options[0] = new Option('城市','')
		TheCity.options[0].selected = true
		TheCity.disabled = true
		TheCounty.options.length = 0
		TheCounty.options[0] = new Option('地区','')
		TheCounty.options[0].selected = true
		TheCounty.disabled = true
	}
}

function GetCounty(strTheForm,strProvince,strCity,strCounty,DefaultID)
{
	if(DefaultID == ""){
	strProvince = strTheForm + "." + strProvince
	strCity = strTheForm + "." + strCity
	strCounty = strTheForm + "." + strCounty
	}
	var TheProvince = eval(strProvince)
	var TheCity = eval(strCity)
	var TheCounty = eval(strCounty)
	if(TheProvince.selectedIndex != 0 && TheCity.selectedIndex != 0)
	{
		TheCounty.options.length = 0
		TheCounty.options[0] = new Option('地区','')
		TheCounty.options[0].selected = true
		TheCounty.disabled = true
		CountyIndex = TheCity.options[TheCity.selectedIndex].value
		var j = 1
        for(i=0;i<County[CountyIndex].length;i+=2)
        {
            if(County[CountyIndex][i] == "" || County[CountyIndex][i+1] == "")
            {
            	continue
            }
        	else
            {
            	TheCounty.options[j] = new Option(County[CountyIndex][i+1],County[CountyIndex][i])
            	j++
            }
        }
        if(TheCounty.options.length > 1) TheCounty.disabled = false
	}
	else
	{
		TheCounty.options.length = 0
		TheCounty.options[0] = new Option('地区','')
		TheCounty.options[0].selected = true
		TheCounty.disabled = true
	}
}

function GetDefaultItem(obj,objval)
{
	for(i=0;i<obj.length;i++)
	{
		if (obj.options[i].value==objval)
		{
			obj.disabled = false
			obj.options[i].selected=true
			break;
		}
	}
}


//checkformask.js

/**
*去除空字符
*write by xiaodong 20091126-15:26
*/
function sl(st){
	st=st.replace(/(^\s*)|(\s*$)/g, "");
	return st;
}

/**
*验证问题标题，提示错误，提示填入内容
*write by xiaodong 20091126-14:47
*/
function intitle(){
	if(document.getElementById("qtitle").value=='请输入问题标题'){
		document.getElementById("qtitle").value='';
		document.getElementById("qtitle").style.color='Black';
	}
	var obj=document.getElementById("d_title");
	var str=document.getElementById("qtitle").value.length;
	if (str<2 ) {
		obj.className="d_okemail";
		obj.innerHTML='请输入多于2字';
	}
	if($("#qcontent").val()!='问题越详细，回答越精确！'){
	   $("#ClassLevel1").attr("disabled","");
	   $("#ClassLevel2").attr("disabled","");
	}
}
function out_title(){
	var obj=document.getElementById("d_title");
	var str=sl(document.getElementById("qtitle").value).length;
	var chk=true;
	if (str<2 ){chk=false;}
	if (chk){
		obj.className="d_ok";
		obj.innerHTML='问题标题已输入';
	}else{
		obj.className="d_err";
		obj.innerHTML="请输入多于2字";
	}
	if($("#qcontent").val()=='问题越详细，回答越精确！'){
	   $("#ClassLevel1").attr("disabled","disabled");
	   $("#ClassLevel2").attr("disabled","disabled");
	}
	return chk;
}

/**
*验证问题内容，提示错误，提示填入内容
*write by xiaodong 20091126-14:54
*/
function incontent(){
	if(document.getElementById("qcontent").value=='问题越详细，回答越精确！'){
		document.getElementById("qcontent").value='';
		document.getElementById("qcontent").style.color='Black';
	}
	var obj=document.getElementById("d_content");
	var str=sl(document.getElementById("qcontent").value).length;
	var chk=true;
	if( $("#qtitle").val()!='请输入问题标题'){
	   $("#ClassLevel1").attr("disabled","");
	   $("#ClassLevel2").attr("disabled","");
   }
	if (str<6 ){
		obj.className="d_okemail";
		obj.innerHTML="请输入6个字以上";
	 }
}
function out_content(){
	var obj=document.getElementById("d_content");
	var str=sl(document.getElementById("qcontent").value).length;
	var chk=true;
	if (str<6 ){chk=false;}
	if (chk){
		obj.className="d_ok";
		obj.innerHTML='问题内容已输入';
	}else{
		obj.className="d_err";
		obj.innerHTML="请输入6个字以上";
	}
	if( $("#qtitle").val()=='请输入问题标题'){
	   $("#ClassLevel1").attr("disabled","disabled");
	   $("#ClassLevel2").attr("disabled","disabled");
   }
	out_title();
	return chk;
}
/**
*验证问题分类
*/
/*
function out_fenlei(){
	var d_fenlei=document.getElementById("d_fenlei");
	var fenlei=document.getElementById("ClassLevel1").value;
	//alert(fenlei);
	if(fenlei=='111'){
		var zhifenlei=document.getElementById('ClassLevel2').value;
			d_fenlei.className="d_okemail";
			d_fenlei.innerHTML="请选择问题子分类";
	}else{
		if (fenlei!=0 || fenlei!="")
		{
			d_fenlei.className="d_ok";
			d_fenlei.innerHTML="已选择问题分类";
		}
		else
		{   d_fenlei.className="d_err";
			d_fenlei.innerHTML="请选择问题分类";	}
	}
	return true;
}*/
function out_fenlei2(){
	var zhifenlei=document.getElementById('ClassLevel2').value;
	var fenlei=document.getElementById("ClassLevel1").value;
	var d_fenlei=document.getElementById("d_fenlei");
	if(fenlei=='111'){
		if(zhifenlei==''){
			d_fenlei.className="d_okemail";
			d_fenlei.innerHTML="请选择问题子分类";
		}else{
			d_fenlei.className="d_ok";
			d_fenlei.innerHTML="已选择问题分类";
		}
	}else if(fenlei!=0 || fenlei!=""){
		if(zhifenlei==''){
			d_fenlei.className="d_ok";
			d_fenlei.innerHTML="可以选择子分类";
		}else{
			d_fenlei.className="d_ok";
			d_fenlei.innerHTML="已选择问题分类";
		}
	}else{
		d_fenlei.className="d_err";
		d_fenlei.innerHTML="请选择问题分类";
	}
	out_title();
	out_content();
	return true;
}
/**
*验证城市
*write by xiaodong 20091126-15:09
*/
function out_pnames(){
	var obj=document.getElementById("d_city");
	var str=document.getElementById("province").value;
	var chk=true;
	if (str==0 || str=="" ){chk=false;}
	if (chk){
	    obj.className="d_okemail";
		obj.innerHTML='请继续选择城市';
		document.getElementById("city").focus();;
	}else{
	   obj.className="d_err";
		obj.innerHTML="请选择省份";
	}

	out_title();
	out_content();
	out_fenlei2();
	return chk;
}

function out_cnames(){
	var obj=document.getElementById("d_city");
	var str=document.getElementById("city").value;
	var chk=true;
	if (str==0 || str=="" ){chk=false;}
	if (chk){
		obj.className="d_ok";
		obj.innerHTML='已选择省份城市';
	}else{
		obj.className="d_err";
		obj.innerHTML="请继续选择城市";
	}
	return chk;
}


//funs.js
function formSubDelay(sec,ele){
	Today = new Date();
  	var NowHour = Today.getHours();
  	var NowMinute = Today.getMinutes();
  	var NowSecond = Today.getSeconds();
  	var mysec = (NowHour*3600)+(NowMinute*60)+NowSecond;
  	if ((mysec-document.getElementById(ele).value)>sec){
  		document.getElementById(ele).value = mysec;
  		return true;
  	}else{
  		alert('请不要在短时间内提交问题！');
  		return false;
  	}
}

function TimeDo(sec,ele){
	var wait = sec * 1000;
	document.getElementById(ele).disabled = true;
	window.setTimeout("document.getElementById('"+ele+"').disabled = false;", wait);
}
function refertolawyer(utype,lawerid){
  if (5 == utype.length){
	  window.location.href="http://www.lawtime.cn/login.php?lawerid="+lawerid;
	  return true;
  }
  if (4 != utype){
	alert('您是律师或律所会员，律师只接受公众会员的咨询！');
	return true;
  }else{
  window.location.href="http://www.lawtime.cn/lawyer/lll"+lawerid+"#sendask";
	return true;
  }
}
function collectWEB(name){
	var url = location.href;
	if (document.all){

		window.external.addFavorite(url,name);
	}else if(window.sidebar){

		window.sidebar.addPanel(name,url,'');
	}
}


//

/**
*去除空字符
*write by xiaodong 20091126-15:26
*/
function s2(st){
	st=st.replace(/(^\s*)|(\s*$)/g, "");
	return st;
}
function  gcv()
{
var aa = document.getElementsByName("sa");
for(var i=0;i<aa.length;i++)
{
if(aa[i].checked)
        {
document.askform.cid.value = aa[i].value;
        }
}
}
function $f()
{
  var elements = new Array();
  for (var i = 0; i < arguments.length; i++)
  {
    var element = arguments[i];
    if (typeof element == 'string')
element = (document.getElementById)?document.getElementById(element):document.all.element;
    if (arguments.length == 1)
      return element;
    elements.push(element);
  }
  return elements;
}
function App()
{
var qt = "";var pn = 0;var pH = "";
}
function p(i)
{
var rn = 3;
var pH = "";
var node = $f("dql").getElementsByTagName("div");
var sum = node.length;
var psum = Math.floor((sum+2)/3);
for(var u=0;u<sum;u++) node[u].style.display = "none";
var top = (i*rn>sum)?sum:i*rn;
for(var u=(i-1)*rn;u<top;u++) node[u].style.display = "block";
if(i>=2) pH += "<a href='javascript:p("+(i-1)+");'>前一页</a> "
for(var j=1;j<=psum;j++)
{
pH += (i==j)?"<span>"+i+"</span> ":"<a href='javascript:p("+j+")'>["+j+"]</a> ";
}
if(psum>=2 && i!=psum) pH += "<a href='javascript:p("+(i+1)+");'>下一页</a>"
if(psum == 1) {pH = "";$f("dp").style.display = "none";}
else {$f("dp").innerHTML = pH;}
}
window.onload = App;
function disQstate(s,t)
{
switch (s)
{
case 1:var op='<img src="images/default/icn_time.gif" alt="待解决问题">';break;
case 2:var op='<img src="images/default/icn_ok.gif"  alt ="已解决问题">';break;
case 3:var op='<img src="images/default/icn_vote.gif" alt="投票中问题">';break;
case 4:var op='<img src="images/default/icn_cancel.gif" alt="已关闭问题">';break;
default: var op='未知问题';
}
document.write(op);
}

//
function swapImage(obj,picUrl) {
  if(obj){
    obj.src = picUrl;
  }
}
