/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var o=this,g,D=o.jQuery,t=o.$,r=o.jQuery=o.$=function(J,K){return new r.fn.init(J,K)},I=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;r.fn=r.prototype={init:function(J,M){J=J||document;if(J.nodeType){this[0]=J;this.length=1;this.context=J;return this}if(typeof J==="string"){var L=I.exec(J);if(L&&(L[1]||!M)){if(L[1]){J=r.clean([L[1]],M)}else{var N=document.getElementById(L[3]);if(N&&N.id!=L[3]){return r().find(J)}var K=r(N||[]);K.context=document;K.selector=J;return K}}else{return r(M).find(J)}}else{if(r.isFunction(J)){return r(document).ready(J)}}if(J.selector&&J.context){this.selector=J.selector;this.context=J.context}return this.setArray(r.isArray(J)?J:r.makeArray(J))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(J){return J===g?Array.prototype.slice.call(this):this[J]},pushStack:function(K,M,J){var L=r(K);L.prevObject=this;L.context=this.context;if(M==="find"){L.selector=this.selector+(this.selector?" ":"")+J}else{if(M){L.selector=this.selector+"."+M+"("+J+")"}}return L},setArray:function(J){this.length=0;Array.prototype.push.apply(this,J);return this},each:function(K,J){return r.each(this,K,J)},index:function(J){return r.inArray(J&&J.jquery?J[0]:J,this)},attr:function(K,M,L){var J=K;if(typeof K==="string"){if(M===g){return this[0]&&r[L||"attr"](this[0],K)}else{J={};J[K]=M}}return this.each(function(N){for(K in J){r.attr(L?this.style:this,K,r.prop(this,J[K],L,N,K))}})},css:function(J,K){if((J=="width"||J=="height")&&parseFloat(K)<0){K=g}return this.attr(J,K,"curCSS")},text:function(K){if(typeof K!=="object"&&K!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(K))}var J="";r.each(K||this,function(){r.each(this.childNodes,function(){if(this.nodeType!=8){J+=this.nodeType!=1?this.nodeValue:r.fn.text([this])}})});return J},wrapAll:function(J){if(this[0]){var K=r(J,this[0].ownerDocument).clone();if(this[0].parentNode){K.insertBefore(this[0])}K.map(function(){var L=this;while(L.firstChild){L=L.firstChild}return L}).append(this)}return this},wrapInner:function(J){return this.each(function(){r(this).contents().wrapAll(J)})},wrap:function(J){return this.each(function(){r(this).wrapAll(J)})},append:function(){return this.domManip(arguments,true,function(J){if(this.nodeType==1){this.appendChild(J)}})},prepend:function(){return this.domManip(arguments,true,function(J){if(this.nodeType==1){this.insertBefore(J,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(J){this.parentNode.insertBefore(J,this)})},after:function(){return this.domManip(arguments,false,function(J){this.parentNode.insertBefore(J,this.nextSibling)})},end:function(){return this.prevObject||r([])},push:[].push,sort:[].sort,splice:[].splice,find:function(J){if(this.length===1){var K=this.pushStack([],"find",J);K.length=0;r.find(J,this[0],K);return K}else{return this.pushStack(r.unique(r.map(this,function(L){return r.find(J,L)})),"find",J)}},clone:function(L){var J=this.map(function(){if(!r.support.noCloneEvent&&!r.isXMLDoc(this)){var N=this.outerHTML;if(!N){var O=this.ownerDocument.createElement("div");O.appendChild(this.cloneNode(true));N=O.innerHTML}return r.clean([N.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(L===true){var M=this.find("*").andSelf(),K=0;J.find("*").andSelf().each(function(){if(this.nodeName!==M[K].nodeName){return}var N=r.data(M[K],"events");for(var P in N){for(var O in N[P]){r.event.add(this,P,N[P][O],N[P][O].data)}}K++})}return J},filter:function(J){return this.pushStack(r.isFunction(J)&&r.grep(this,function(L,K){return J.call(L,K)})||r.multiFilter(J,r.grep(this,function(K){return K.nodeType===1})),"filter",J)},closest:function(J){var L=r.expr.match.POS.test(J)?r(J):null,K=0;return this.map(function(){var M=this;while(M&&M.ownerDocument){if(L?L.index(M)>-1:r(M).is(J)){r.data(M,"closest",K);return M}M=M.parentNode;K++}})},not:function(J){if(typeof J==="string"){if(f.test(J)){return this.pushStack(r.multiFilter(J,this,true),"not",J)}else{J=r.multiFilter(J,this)}}var K=J.length&&J[J.length-1]!==g&&!J.nodeType;return this.filter(function(){return K?r.inArray(this,J)<0:this!=J})},add:function(J){return this.pushStack(r.unique(r.merge(this.get(),typeof J==="string"?r(J):r.makeArray(J))))},is:function(J){return !!J&&r.multiFilter(J,this).length>0},hasClass:function(J){return !!J&&this.is("."+J)},val:function(P){if(P===g){var J=this[0];if(J){if(r.nodeName(J,"option")){return(J.attributes.value||{}).specified?J.value:J.text}if(r.nodeName(J,"select")){var N=J.selectedIndex,Q=[],R=J.options,M=J.type=="select-one";if(N<0){return null}for(var K=M?N:0,O=M?N+1:R.length;K<O;K++){var L=R[K];if(L.selected){P=r(L).val();if(M){return P}Q.push(P)}}return Q}return(J.value||"").replace(/\r/g,"")}return g}if(typeof P==="number"){P+=""}return this.each(function(){if(this.nodeType!=1){return}if(r.isArray(P)&&/radio|checkbox/.test(this.type)){this.checked=(r.inArray(this.value,P)>=0||r.inArray(this.name,P)>=0)}else{if(r.nodeName(this,"select")){var S=r.makeArray(P);r("option",this).each(function(){this.selected=(r.inArray(this.value,S)>=0||r.inArray(this.text,S)>=0)});if(!S.length){this.selectedIndex=-1}}else{this.value=P}}})},html:function(J){return J===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(J)},replaceWith:function(J){return this.after(J).remove()},eq:function(J){return this.slice(J,+J+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(J){return this.pushStack(r.map(this,function(L,K){return J.call(L,K,L)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(O,R,Q){if(this[0]){var N=(this[0].ownerDocument||this[0]).createDocumentFragment(),K=r.clean(O,(this[0].ownerDocument||this[0]),N),M=N.firstChild;if(M){for(var L=0,J=this.length;L<J;L++){Q.call(P(this[L],M),this.length>1||L>0?N.cloneNode(true):N)}}if(K){r.each(K,E)}}return this;function P(S,T){return R&&r.nodeName(S,"table")&&r.nodeName(T,"tr")?(S.getElementsByTagName("tbody")[0]||S.appendChild(S.ownerDocument.createElement("tbody"))):S}}};r.fn.init.prototype=r.fn;function E(J,K){if(K.src){r.ajax({url:K.src,async:false,dataType:"script"})}else{r.globalEval(K.text||K.textContent||K.innerHTML||"")}if(K.parentNode){K.parentNode.removeChild(K)}}function e(){return +new Date}r.extend=r.fn.extend=function(){var O=arguments[0]||{},M=1,N=arguments.length,J=false,L;if(typeof O==="boolean"){J=O;O=arguments[1]||{};M=2}if(typeof O!=="object"&&!r.isFunction(O)){O={}}if(N==M){O=this;--M}for(;M<N;M++){if((L=arguments[M])!=null){for(var K in L){var P=O[K],Q=L[K];if(O===Q){continue}if(J&&Q&&typeof Q==="object"&&!Q.nodeType){O[K]=r.extend(J,P||(Q.length!=null?[]:{}),Q)}else{if(Q!==g){O[K]=Q}}}}}return O};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,u=document.defaultView||{},w=Object.prototype.toString;r.extend({noConflict:function(J){o.$=t;if(J){o.jQuery=D}return r},isFunction:function(J){return w.call(J)==="[object Function]"},isArray:function(J){return w.call(J)==="[object Array]"},isXMLDoc:function(J){return J.nodeType===9&&J.documentElement.nodeName!=="HTML"||!!J.ownerDocument&&r.isXMLDoc(J.ownerDocument)},globalEval:function(L){if(L&&/\S/.test(L)){var K=document.getElementsByTagName("head")[0]||document.documentElement,J=document.createElement("script");J.type="text/javascript";if(r.support.scriptEval){J.appendChild(document.createTextNode(L))}else{J.text=L}K.insertBefore(J,K.firstChild);K.removeChild(J)}},nodeName:function(K,J){return K.nodeName&&K.nodeName.toUpperCase()==J.toUpperCase()},each:function(L,P,K){var J,M=0,N=L.length;if(K){if(N===g){for(J in L){if(P.apply(L[J],K)===false){break}}}else{for(;M<N;){if(P.apply(L[M++],K)===false){break}}}}else{if(N===g){for(J in L){if(P.call(L[J],J,L[J])===false){break}}}else{for(var O=L[0];M<N&&P.call(O,M,O)!==false;O=L[++M]){}}}return L},prop:function(M,N,L,K,J){if(r.isFunction(N)){N=N.call(M,K)}return typeof N==="number"&&L=="curCSS"&&!b.test(J)?N+"px":N},className:{add:function(J,K){r.each((K||"").split(/\s+/),function(L,M){if(J.nodeType==1&&!r.className.has(J.className,M)){J.className+=(J.className?" ":"")+M}})},remove:function(J,K){if(J.nodeType==1){J.className=K!==g?r.grep(J.className.split(/\s+/),function(L){return !r.className.has(K,L)}).join(" "):""}},has:function(K,J){return K&&r.inArray(J,(K.className||K).toString().split(/\s+/))>-1}},swap:function(M,L,N){var J={};for(var K in L){J[K]=M.style[K];M.style[K]=L[K]}N.call(M);for(var K in L){M.style[K]=J[K]}},css:function(M,K,O,J){if(K=="width"||K=="height"){var Q,L={position:"absolute",visibility:"hidden",display:"block"},P=K=="width"?["Left","Right"]:["Top","Bottom"];function N(){Q=K=="width"?M.offsetWidth:M.offsetHeight;if(J==="border"){return}r.each(P,function(){if(!J){Q-=parseFloat(r.curCSS(M,"padding"+this,true))||0}if(J==="margin"){Q+=parseFloat(r.curCSS(M,"margin"+this,true))||0}else{Q-=parseFloat(r.curCSS(M,"border"+this+"Width",true))||0}})}if(M.offsetWidth!==0){N()}else{r.swap(M,L,N)}return Math.max(0,Math.round(Q))}return r.curCSS(M,K,O)},curCSS:function(N,K,L){var Q,J=N.style;if(K=="opacity"&&!r.support.opacity){Q=r.attr(J,"opacity");return Q==""?"1":Q}if(K.match(/float/i)){K=B}if(!L&&J&&J[K]){Q=J[K]}else{if(u.getComputedStyle){if(K.match(/float/i)){K="float"}K=K.replace(/([A-Z])/g,"-$1").toLowerCase();var R=u.getComputedStyle(N,null);if(R){Q=R.getPropertyValue(K)}if(K=="opacity"&&Q==""){Q="1"}}else{if(N.currentStyle){var O=K.replace(/\-(\w)/g,function(S,T){return T.toUpperCase()});Q=N.currentStyle[K]||N.currentStyle[O];if(!/^\d+(px)?$/i.test(Q)&&/^\d/.test(Q)){var M=J.left,P=N.runtimeStyle.left;N.runtimeStyle.left=N.currentStyle.left;J.left=Q||0;Q=J.pixelLeft+"px";J.left=M;N.runtimeStyle.left=P}}}}return Q},clean:function(K,P,N){P=P||document;if(typeof P.createElement==="undefined"){P=P.ownerDocument||P[0]&&P[0].ownerDocument||document}if(!N&&K.length===1&&typeof K[0]==="string"){var M=/^<(\w+)\s*\/?>$/.exec(K[0]);if(M){return[P.createElement(M[1])]}}var L=[],J=[],Q=P.createElement("div");r.each(K,function(U,X){if(typeof X==="number"){X+=""}if(!X){return}if(typeof X==="string"){X=X.replace(/(<(\w+)[^>]*?)\/>/g,function(Z,aa,Y){return Y.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?Z:aa+"></"+Y+">"});var T=X.replace(/^\s+/,"").substring(0,10).toLowerCase();var V=!T.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!T.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||T.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!T.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!T.indexOf("<td")||!T.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!T.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!r.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];Q.innerHTML=V[1]+X+V[2];while(V[0]--){Q=Q.lastChild}if(!r.support.tbody){var W=/<tbody/i.test(X),S=!T.indexOf("<table")&&!W?Q.firstChild&&Q.firstChild.childNodes:V[1]=="<table>"&&!W?Q.childNodes:[];for(var R=S.length-1;R>=0;--R){if(r.nodeName(S[R],"tbody")&&!S[R].childNodes.length){S[R].parentNode.removeChild(S[R])}}}if(!r.support.leadingWhitespace&&/^\s/.test(X)){Q.insertBefore(P.createTextNode(X.match(/^\s*/)[0]),Q.firstChild)}X=r.makeArray(Q.childNodes)}if(X.nodeType){L.push(X)}else{L=r.merge(L,X)}});if(N){for(var O=0;L[O];O++){if(r.nodeName(L[O],"script")&&(!L[O].type||L[O].type.toLowerCase()==="text/javascript")){J.push(L[O].parentNode?L[O].parentNode.removeChild(L[O]):L[O])}else{if(L[O].nodeType===1){L.splice.apply(L,[O+1,0].concat(r.makeArray(L[O].getElementsByTagName("script"))))}N.appendChild(L[O])}}return J}return L},attr:function(O,L,P){if(!O||O.nodeType==3||O.nodeType==8){return g}var M=!r.isXMLDoc(O),Q=P!==g;L=M&&r.props[L]||L;if(O.tagName){var K=/href|src|style/.test(L);if(L=="selected"&&O.parentNode){O.parentNode.selectedIndex}if(L in O&&M&&!K){if(Q){if(L=="type"&&r.nodeName(O,"input")&&O.parentNode){throw"type property can't be changed"}O[L]=P}if(r.nodeName(O,"form")&&O.getAttributeNode(L)){return O.getAttributeNode(L).nodeValue}if(L=="tabIndex"){var N=O.getAttributeNode("tabIndex");return N&&N.specified?N.value:O.nodeName.match(/(button|input|object|select|textarea)/i)?0:O.nodeName.match(/^(a|area)$/i)&&O.href?0:g}return O[L]}if(!r.support.style&&M&&L=="style"){return r.attr(O.style,"cssText",P)}if(Q){O.setAttribute(L,""+P)}var J=!r.support.hrefNormalized&&M&&K?O.getAttribute(L,2):O.getAttribute(L);return J===null?g:J}if(!r.support.opacity&&L=="opacity"){if(Q){O.zoom=1;O.filter=(O.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(P)+""=="NaN"?"":"alpha(opacity="+P*100+")")}return O.filter&&O.filter.indexOf("opacity=")>=0?(parseFloat(O.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}L=L.replace(/-([a-z])/ig,function(R,S){return S.toUpperCase()});if(Q){O[L]=P}return O[L]},trim:function(J){return(J||"").replace(/^\s+|\s+$/g,"")},makeArray:function(L){var J=[];if(L!=null){var K=L.length;if(K==null||typeof L==="string"||r.isFunction(L)||L.setInterval){J[0]=L}else{while(K){J[--K]=L[K]}}}return J},inArray:function(L,M){for(var J=0,K=M.length;J<K;J++){if(M[J]===L){return J}}return -1},merge:function(M,J){var K=0,L,N=M.length;if(!r.support.getAll){while((L=J[K++])!=null){if(L.nodeType!=8){M[N++]=L}}}else{while((L=J[K++])!=null){M[N++]=L}}return M},unique:function(P){var K=[],J={};try{for(var L=0,M=P.length;L<M;L++){var O=r.data(P[L]);if(!J[O]){J[O]=true;K.push(P[L])}}}catch(N){K=P}return K},grep:function(K,O,J){var L=[];for(var M=0,N=K.length;M<N;M++){if(!J!=!O(K[M],M)){L.push(K[M])}}return L},map:function(J,O){var K=[];for(var L=0,M=J.length;L<M;L++){var N=O(J[L],L);if(N!=null){K[K.length]=N}}return K.concat.apply([],K)}});var H=navigator.userAgent.toLowerCase();r.browser={version:(H.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(H),opera:/opera/.test(H),msie:/msie/.test(H)&&!/opera/.test(H),mozilla:/mozilla/.test(H)&&!/(compatible|webkit)/.test(H)};r.each({parent:function(J){return J.parentNode},parents:function(J){return r.dir(J,"parentNode")},next:function(J){return r.nth(J,2,"nextSibling")},prev:function(J){return r.nth(J,2,"previousSibling")},nextAll:function(J){return r.dir(J,"nextSibling")},prevAll:function(J){return r.dir(J,"previousSibling")},siblings:function(J){return r.sibling(J.parentNode.firstChild,J)},children:function(J){return r.sibling(J.firstChild)},contents:function(J){return r.nodeName(J,"iframe")?J.contentDocument||J.contentWindow.document:r.makeArray(J.childNodes)}},function(J,K){r.fn[J]=function(L){var M=r.map(this,K);if(L&&typeof L=="string"){M=r.multiFilter(L,M)}return this.pushStack(r.unique(M),J,L)}});r.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(J,K){r.fn[J]=function(L){var O=[],Q=r(L);for(var P=0,M=Q.length;P<M;P++){var N=(P>0?this.clone(true):this).get();r.fn[K].apply(r(Q[P]),N);O=O.concat(N)}return this.pushStack(O,J,L)}});r.each({removeAttr:function(J){r.attr(this,J,"");if(this.nodeType==1){this.removeAttribute(J)}},addClass:function(J){r.className.add(this,J)},removeClass:function(J){r.className.remove(this,J)},toggleClass:function(K,J){if(typeof J!=="boolean"){J=!r.className.has(this,K)}r.className[J?"add":"remove"](this,K)},remove:function(J){if(!J||r.filter(J,[this]).length){r("*",this).add([this]).each(function(){r.event.remove(this);r.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){r(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(J,K){r.fn[J]=function(){return this.each(K,arguments)}});function m(J,K){return J[0]&&parseInt(r.curCSS(J[0],K,true),10)||0}var h="jQuery"+e(),A=0,F={};r.extend({cache:{},data:function(K,J,L){K=K==o?F:K;var M=K[h];if(!M){M=K[h]=++A}if(J&&!r.cache[M]){r.cache[M]={}}if(L!==g){r.cache[M][J]=L}return J?r.cache[M][J]:M},removeData:function(K,J){K=K==o?F:K;var M=K[h];if(J){if(r.cache[M]){delete r.cache[M][J];J="";for(J in r.cache[M]){break}if(!J){r.removeData(K)}}}else{try{delete K[h]}catch(L){if(K.removeAttribute){K.removeAttribute(h)}}delete r.cache[M]}},queue:function(K,J,M){if(K){J=(J||"fx")+"queue";var L=r.data(K,J);if(!L||r.isArray(M)){L=r.data(K,J,r.makeArray(M))}else{if(M){L.push(M)}}}return L},dequeue:function(M,L){var J=r.queue(M,L),K=J.shift();if(!L||L==="fx"){K=J[0]}if(K!==g){K.call(M)}}});r.fn.extend({data:function(J,L){var M=J.split(".");M[1]=M[1]?"."+M[1]:"";if(L===g){var K=this.triggerHandler("getData"+M[1]+"!",[M[0]]);if(K===g&&this.length){K=r.data(this[0],J)}return K===g&&M[1]?this.data(M[0]):K}else{return this.trigger("setData"+M[1]+"!",[M[0],L]).each(function(){r.data(this,J,L)})}},removeData:function(J){return this.each(function(){r.removeData(this,J)})},queue:function(J,K){if(typeof J!=="string"){K=J;J="fx"}if(K===g){return r.queue(this[0],J)}return this.each(function(){var L=r.queue(this,J,K);if(J=="fx"&&L.length==1){L[0].call(this)}})},dequeue:function(J){return this.each(function(){r.dequeue(this,J)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var W=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,Q=0,M=Object.prototype.toString;var K=function(ad,Z,ag,ah){ag=ag||[];Z=Z||document;if(Z.nodeType!==1&&Z.nodeType!==9){return[]}if(!ad||typeof ad!=="string"){return ag}var ae=[],ab,ak,an,Y,ai,aa,ac=true;W.lastIndex=0;while((ab=W.exec(ad))!==null){ae.push(ab[1]);if(ab[2]){aa=RegExp.rightContext;break}}if(ae.length>1&&R.exec(ad)){if(ae.length===2&&N.relative[ae[0]]){ak=O(ae[0]+ae[1],Z)}else{ak=N.relative[ae[0]]?[Z]:K(ae.shift(),Z);while(ae.length){ad=ae.shift();if(N.relative[ad]){ad+=ae.shift()}ak=O(ad,ak)}}}else{var aj=ah?{expr:ae.pop(),set:J(ah)}:K.find(ae.pop(),ae.length===1&&Z.parentNode?Z.parentNode:Z,V(Z));ak=K.filter(aj.expr,aj.set);if(ae.length>0){an=J(ak)}else{ac=false}while(ae.length){var am=ae.pop(),al=am;if(!N.relative[am]){am=""}else{al=ae.pop()}if(al==null){al=Z}N.relative[am](an,al,V(Z))}}if(!an){an=ak}if(!an){throw"Syntax error, unrecognized expression: "+(am||ad)}if(M.call(an)==="[object Array]"){if(!ac){ag.push.apply(ag,an)}else{if(Z.nodeType===1){for(var af=0;an[af]!=null;af++){if(an[af]&&(an[af]===true||an[af].nodeType===1&&P(Z,an[af]))){ag.push(ak[af])}}}else{for(var af=0;an[af]!=null;af++){if(an[af]&&an[af].nodeType===1){ag.push(ak[af])}}}}}else{J(an,ag)}if(aa){K(aa,Z,ag,ah);if(L){hasDuplicate=false;ag.sort(L);if(hasDuplicate){for(var af=1;af<ag.length;af++){if(ag[af]===ag[af-1]){ag.splice(af--,1)}}}}}return ag};K.matches=function(Y,Z){return K(Y,null,null,Z)};K.find=function(af,Y,ag){var ae,ac;if(!af){return[]}for(var ab=0,aa=N.order.length;ab<aa;ab++){var ad=N.order[ab],ac;if((ac=N.match[ad].exec(af))){var Z=RegExp.leftContext;if(Z.substr(Z.length-1)!=="\\"){ac[1]=(ac[1]||"").replace(/\\/g,"");ae=N.find[ad](ac,Y,ag);if(ae!=null){af=af.replace(N.match[ad],"");break}}}}if(!ae){ae=Y.getElementsByTagName("*")}return{set:ae,expr:af}};K.filter=function(ai,ah,al,ab){var aa=ai,an=[],af=ah,ad,Y,ae=ah&&ah[0]&&V(ah[0]);while(ai&&ah.length){for(var ag in N.filter){if((ad=N.match[ag].exec(ai))!=null){var Z=N.filter[ag],am,ak;Y=false;if(af==an){an=[]}if(N.preFilter[ag]){ad=N.preFilter[ag](ad,af,al,an,ab,ae);if(!ad){Y=am=true}else{if(ad===true){continue}}}if(ad){for(var ac=0;(ak=af[ac])!=null;ac++){if(ak){am=Z(ak,ad,ac,af);var aj=ab^!!am;if(al&&am!=null){if(aj){Y=true}else{af[ac]=false}}else{if(aj){an.push(ak);Y=true}}}}}if(am!==g){if(!al){af=an}ai=ai.replace(N.match[ag],"");if(!Y){return[]}break}}}if(ai==aa){if(Y==null){throw"Syntax error, unrecognized expression: "+ai}else{break}}aa=ai}return af};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\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(Y){return Y.getAttribute("href")}},relative:{"+":function(af,Y,ae){var ac=typeof Y==="string",ag=ac&&!/\W/.test(Y),ad=ac&&!ag;if(ag&&!ae){Y=Y.toUpperCase()}for(var ab=0,aa=af.length,Z;ab<aa;ab++){if((Z=af[ab])){while((Z=Z.previousSibling)&&Z.nodeType!==1){}af[ab]=ad||Z&&Z.nodeName===Y?Z||false:Z===Y}}if(ad){K.filter(Y,af,true)}},">":function(ae,Z,af){var ac=typeof Z==="string";if(ac&&!/\W/.test(Z)){Z=af?Z:Z.toUpperCase();for(var aa=0,Y=ae.length;aa<Y;aa++){var ad=ae[aa];if(ad){var ab=ad.parentNode;ae[aa]=ab.nodeName===Z?ab:false}}}else{for(var aa=0,Y=ae.length;aa<Y;aa++){var ad=ae[aa];if(ad){ae[aa]=ac?ad.parentNode:ad.parentNode===Z}}if(ac){K.filter(Z,ae,true)}}},"":function(ab,Z,ad){var aa=Q++,Y=X;if(!Z.match(/\W/)){var ac=Z=ad?Z:Z.toUpperCase();Y=U}Y("parentNode",Z,aa,ab,ac,ad)},"~":function(ab,Z,ad){var aa=Q++,Y=X;if(typeof Z==="string"&&!Z.match(/\W/)){var ac=Z=ad?Z:Z.toUpperCase();Y=U}Y("previousSibling",Z,aa,ab,ac,ad)}},find:{ID:function(Z,aa,ab){if(typeof aa.getElementById!=="undefined"&&!ab){var Y=aa.getElementById(Z[1]);return Y?[Y]:[]}},NAME:function(aa,ad,ae){if(typeof ad.getElementsByName!=="undefined"){var Z=[],ac=ad.getElementsByName(aa[1]);for(var ab=0,Y=ac.length;ab<Y;ab++){if(ac[ab].getAttribute("name")===aa[1]){Z.push(ac[ab])}}return Z.length===0?null:Z}},TAG:function(Y,Z){return Z.getElementsByTagName(Y[1])}},preFilter:{CLASS:function(ab,Z,aa,Y,ae,af){ab=" "+ab[1].replace(/\\/g,"")+" ";if(af){return ab}for(var ac=0,ad;(ad=Z[ac])!=null;ac++){if(ad){if(ae^(ad.className&&(" "+ad.className+" ").indexOf(ab)>=0)){if(!aa){Y.push(ad)}}else{if(aa){Z[ac]=false}}}}return false},ID:function(Y){return Y[1].replace(/\\/g,"")},TAG:function(Z,Y){for(var aa=0;Y[aa]===false;aa++){}return Y[aa]&&V(Y[aa])?Z[1]:Z[1].toUpperCase()},CHILD:function(Y){if(Y[1]=="nth"){var Z=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(Y[2]=="even"&&"2n"||Y[2]=="odd"&&"2n+1"||!/\D/.test(Y[2])&&"0n+"+Y[2]||Y[2]);Y[2]=(Z[1]+(Z[2]||1))-0;Y[3]=Z[3]-0}Y[0]=Q++;return Y},ATTR:function(ac,Z,aa,Y,ad,ae){var ab=ac[1].replace(/\\/g,"");if(!ae&&N.attrMap[ab]){ac[1]=N.attrMap[ab]}if(ac[2]==="~="){ac[4]=" "+ac[4]+" "}return ac},PSEUDO:function(ac,Z,aa,Y,ad){if(ac[1]==="not"){if(ac[3].match(W).length>1||/^\w/.test(ac[3])){ac[3]=K(ac[3],null,null,Z)}else{var ab=K.filter(ac[3],Z,aa,true^ad);if(!aa){Y.push.apply(Y,ab)}return false}}else{if(N.match.POS.test(ac[0])||N.match.CHILD.test(ac[0])){return true}}return ac},POS:function(Y){Y.unshift(true);return Y}},filters:{enabled:function(Y){return Y.disabled===false&&Y.type!=="hidden"},disabled:function(Y){return Y.disabled===true},checked:function(Y){return Y.checked===true},selected:function(Y){Y.parentNode.selectedIndex;return Y.selected===true},parent:function(Y){return !!Y.firstChild},empty:function(Y){return !Y.firstChild},has:function(aa,Z,Y){return !!K(Y[3],aa).length},header:function(Y){return/h\d/i.test(Y.nodeName)},text:function(Y){return"text"===Y.type},radio:function(Y){return"radio"===Y.type},checkbox:function(Y){return"checkbox"===Y.type},file:function(Y){return"file"===Y.type},password:function(Y){return"password"===Y.type},submit:function(Y){return"submit"===Y.type},image:function(Y){return"image"===Y.type},reset:function(Y){return"reset"===Y.type},button:function(Y){return"button"===Y.type||Y.nodeName.toUpperCase()==="BUTTON"},input:function(Y){return/input|select|textarea|button/i.test(Y.nodeName)}},setFilters:{first:function(Z,Y){return Y===0},last:function(aa,Z,Y,ab){return Z===ab.length-1},even:function(Z,Y){return Y%2===0},odd:function(Z,Y){return Y%2===1},lt:function(aa,Z,Y){return Z<Y[3]-0},gt:function(aa,Z,Y){return Z>Y[3]-0},nth:function(aa,Z,Y){return Y[3]-0==Z},eq:function(aa,Z,Y){return Y[3]-0==Z}},filter:{PSEUDO:function(ae,aa,ab,af){var Z=aa[1],ac=N.filters[Z];if(ac){return ac(ae,ab,aa,af)}else{if(Z==="contains"){return(ae.textContent||ae.innerText||"").indexOf(aa[3])>=0}else{if(Z==="not"){var ad=aa[3];for(var ab=0,Y=ad.length;ab<Y;ab++){if(ad[ab]===ae){return false}}return true}}}},CHILD:function(Y,ab){var ae=ab[1],Z=Y;switch(ae){case"only":case"first":while(Z=Z.previousSibling){if(Z.nodeType===1){return false}}if(ae=="first"){return true}Z=Y;case"last":while(Z=Z.nextSibling){if(Z.nodeType===1){return false}}return true;case"nth":var aa=ab[2],ah=ab[3];if(aa==1&&ah==0){return true}var ad=ab[0],ag=Y.parentNode;if(ag&&(ag.sizcache!==ad||!Y.nodeIndex)){var ac=0;for(Z=ag.firstChild;Z;Z=Z.nextSibling){if(Z.nodeType===1){Z.nodeIndex=++ac}}ag.sizcache=ad}var af=Y.nodeIndex-ah;if(aa==0){return af==0}else{return(af%aa==0&&af/aa>=0)}}},ID:function(Z,Y){return Z.nodeType===1&&Z.getAttribute("id")===Y},TAG:function(Z,Y){return(Y==="*"&&Z.nodeType===1)||Z.nodeName===Y},CLASS:function(Z,Y){return(" "+(Z.className||Z.getAttribute("class"))+" ").indexOf(Y)>-1},ATTR:function(ad,ab){var aa=ab[1],Y=N.attrHandle[aa]?N.attrHandle[aa](ad):ad[aa]!=null?ad[aa]:ad.getAttribute(aa),ae=Y+"",ac=ab[2],Z=ab[4];return Y==null?ac==="!=":ac==="="?ae===Z:ac==="*="?ae.indexOf(Z)>=0:ac==="~="?(" "+ae+" ").indexOf(Z)>=0:!Z?ae&&Y!==false:ac==="!="?ae!=Z:ac==="^="?ae.indexOf(Z)===0:ac==="$="?ae.substr(ae.length-Z.length)===Z:ac==="|="?ae===Z||ae.substr(0,Z.length+1)===Z+"-":false},POS:function(ac,Z,aa,ad){var Y=Z[2],ab=N.setFilters[Y];if(ab){return ab(ac,aa,Z,ad)}}}};var R=N.match.POS;for(var T in N.match){N.match[T]=RegExp(N.match[T].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var J=function(Z,Y){Z=Array.prototype.slice.call(Z);if(Y){Y.push.apply(Y,Z);return Y}return Z};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(S){J=function(ac,ab){var Z=ab||[];if(M.call(ac)==="[object Array]"){Array.prototype.push.apply(Z,ac)}else{if(typeof ac.length==="number"){for(var aa=0,Y=ac.length;aa<Y;aa++){Z.push(ac[aa])}}else{for(var aa=0;ac[aa];aa++){Z.push(ac[aa])}}}return Z}}var L;if(document.documentElement.compareDocumentPosition){L=function(Z,Y){var aa=Z.compareDocumentPosition(Y)&4?-1:Z===Y?0:1;if(aa===0){hasDuplicate=true}return aa}}else{if("sourceIndex" in document.documentElement){L=function(Z,Y){var aa=Z.sourceIndex-Y.sourceIndex;if(aa===0){hasDuplicate=true}return aa}}else{if(document.createRange){L=function(ab,Z){var aa=ab.ownerDocument.createRange(),Y=Z.ownerDocument.createRange();aa.selectNode(ab);aa.collapse(true);Y.selectNode(Z);Y.collapse(true);var ac=aa.compareBoundaryPoints(Range.START_TO_END,Y);if(ac===0){hasDuplicate=true}return ac}}}}(function(){var Z=document.createElement("form"),aa="script"+(new Date).getTime();Z.innerHTML="<input name='"+aa+"'/>";var Y=document.documentElement;Y.insertBefore(Z,Y.firstChild);if(!!document.getElementById(aa)){N.find.ID=function(ac,ad,ae){if(typeof ad.getElementById!=="undefined"&&!ae){var ab=ad.getElementById(ac[1]);return ab?ab.id===ac[1]||typeof ab.getAttributeNode!=="undefined"&&ab.getAttributeNode("id").nodeValue===ac[1]?[ab]:g:[]}};N.filter.ID=function(ad,ab){var ac=typeof ad.getAttributeNode!=="undefined"&&ad.getAttributeNode("id");return ad.nodeType===1&&ac&&ac.nodeValue===ab}}Y.removeChild(Z)})();(function(){var Y=document.createElement("div");Y.appendChild(document.createComment(""));if(Y.getElementsByTagName("*").length>0){N.find.TAG=function(Z,ad){var ac=ad.getElementsByTagName(Z[1]);if(Z[1]==="*"){var ab=[];for(var aa=0;ac[aa];aa++){if(ac[aa].nodeType===1){ab.push(ac[aa])}}ac=ab}return ac}}Y.innerHTML="<a href='#'></a>";if(Y.firstChild&&typeof Y.firstChild.getAttribute!=="undefined"&&Y.firstChild.getAttribute("href")!=="#"){N.attrHandle.href=function(Z){return Z.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var Y=K,Z=document.createElement("div");Z.innerHTML="<p class='TEST'></p>";if(Z.querySelectorAll&&Z.querySelectorAll(".TEST").length===0){return}K=function(ad,ac,aa,ab){ac=ac||document;if(!ab&&ac.nodeType===9&&!V(ac)){try{return J(ac.querySelectorAll(ad),aa)}catch(ae){}}return Y(ad,ac,aa,ab)};K.find=Y.find;K.filter=Y.filter;K.selectors=Y.selectors;K.matches=Y.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var Y=document.createElement("div");Y.innerHTML="<div class='test e'></div><div class='test'></div>";if(Y.getElementsByClassName("e").length===0){return}Y.lastChild.className="e";if(Y.getElementsByClassName("e").length===1){return}N.order.splice(1,0,"CLASS");N.find.CLASS=function(Z,aa,ab){if(typeof aa.getElementsByClassName!=="undefined"&&!ab){return aa.getElementsByClassName(Z[1])}}})()}function U(Z,ae,ad,ai,af,ah){var ag=Z=="previousSibling"&&!ah;for(var ab=0,aa=ai.length;ab<aa;ab++){var Y=ai[ab];if(Y){if(ag&&Y.nodeType===1){Y.sizcache=ad;Y.sizset=ab}Y=Y[Z];var ac=false;while(Y){if(Y.sizcache===ad){ac=ai[Y.sizset];break}if(Y.nodeType===1&&!ah){Y.sizcache=ad;Y.sizset=ab}if(Y.nodeName===ae){ac=Y;break}Y=Y[Z]}ai[ab]=ac}}}function X(Z,ae,ad,ai,af,ah){var ag=Z=="previousSibling"&&!ah;for(var ab=0,aa=ai.length;ab<aa;ab++){var Y=ai[ab];if(Y){if(ag&&Y.nodeType===1){Y.sizcache=ad;Y.sizset=ab}Y=Y[Z];var ac=false;while(Y){if(Y.sizcache===ad){ac=ai[Y.sizset];break}if(Y.nodeType===1){if(!ah){Y.sizcache=ad;Y.sizset=ab}if(typeof ae!=="string"){if(Y===ae){ac=true;break}}else{if(K.filter(ae,[Y]).length>0){ac=Y;break}}}Y=Y[Z]}ai[ab]=ac}}}var P=document.compareDocumentPosition?function(Z,Y){return Z.compareDocumentPosition(Y)&16}:function(Z,Y){return Z!==Y&&(Z.contains?Z.contains(Y):true)};var V=function(Y){return Y.nodeType===9&&Y.documentElement.nodeName!=="HTML"||!!Y.ownerDocument&&V(Y.ownerDocument)};var O=function(Y,af){var ab=[],ac="",ad,aa=af.nodeType?[af]:af;while((ad=N.match.PSEUDO.exec(Y))){ac+=ad[0];Y=Y.replace(N.match.PSEUDO,"")}Y=N.relative[Y]?Y+"*":Y;for(var ae=0,Z=aa.length;ae<Z;ae++){K(Y,aa[ae],ab)}return K.filter(ac,ab)};r.find=K;r.filter=K.filter;r.expr=K.selectors;r.expr[":"]=r.expr.filters;K.selectors.filters.hidden=function(Y){return Y.offsetWidth===0||Y.offsetHeight===0};K.selectors.filters.visible=function(Y){return Y.offsetWidth>0||Y.offsetHeight>0};K.selectors.filters.animated=function(Y){return r.grep(r.timers,function(Z){return Y===Z.elem}).length};r.multiFilter=function(aa,Y,Z){if(Z){aa=":not("+aa+")"}return K.matches(aa,Y)};r.dir=function(aa,Z){var Y=[],ab=aa[Z];while(ab&&ab!=document){if(ab.nodeType==1){Y.push(ab)}ab=ab[Z]}return Y};r.nth=function(ac,Y,aa,ab){Y=Y||1;var Z=0;for(;ac;ac=ac[aa]){if(ac.nodeType==1&&++Z==Y){break}}return ac};r.sibling=function(aa,Z){var Y=[];for(;aa;aa=aa.nextSibling){if(aa.nodeType==1&&aa!=Z){Y.push(aa)}}return Y};return;o.Sizzle=K})();r.event={add:function(N,K,M,P){if(N.nodeType==3||N.nodeType==8){return}if(N.setInterval&&N!=o){N=o}if(!M.guid){M.guid=this.guid++}if(P!==g){var L=M;M=this.proxy(L);M.data=P}var J=r.data(N,"events")||r.data(N,"events",{}),O=r.data(N,"handle")||r.data(N,"handle",function(){return typeof r!=="undefined"&&!r.event.triggered?r.event.handle.apply(arguments.callee.elem,arguments):g});O.elem=N;r.each(K.split(/\s+/),function(R,S){var T=S.split(".");S=T.shift();M.type=T.slice().sort().join(".");var Q=J[S];if(r.event.specialAll[S]){r.event.specialAll[S].setup.call(N,P,T)}if(!Q){Q=J[S]={};if(!r.event.special[S]||r.event.special[S].setup.call(N,P,T)===false){if(N.addEventListener){N.addEventListener(S,O,false)}else{if(N.attachEvent){N.attachEvent("on"+S,O)}}}}Q[M.guid]=M;r.event.global[S]=true});N=null},guid:1,global:{},remove:function(P,M,O){if(P.nodeType==3||P.nodeType==8){return}var L=r.data(P,"events"),K,J;if(L){if(M===g||(typeof M==="string"&&M.charAt(0)==".")){for(var N in L){this.remove(P,N+(M||""))}}else{if(M.type){O=M.handler;M=M.type}r.each(M.split(/\s+/),function(R,T){var V=T.split(".");T=V.shift();var S=RegExp("(^|\\.)"+V.slice().sort().join(".*\\.")+"(\\.|$)");if(L[T]){if(O){delete L[T][O.guid]}else{for(var U in L[T]){if(S.test(L[T][U].type)){delete L[T][U]}}}if(r.event.specialAll[T]){r.event.specialAll[T].teardown.call(P,V)}for(K in L[T]){break}if(!K){if(!r.event.special[T]||r.event.special[T].teardown.call(P,V)===false){if(P.removeEventListener){P.removeEventListener(T,r.data(P,"handle"),false)}else{if(P.detachEvent){P.detachEvent("on"+T,r.data(P,"handle"))}}}K=null;delete L[T]}}})}for(K in L){break}if(!K){var Q=r.data(P,"handle");if(Q){Q.elem=null}r.removeData(P,"events");r.removeData(P,"handle")}}},trigger:function(N,P,M,J){var L=N.type||N;if(!J){N=typeof N==="object"?N[h]?N:r.extend(r.Event(L),N):r.Event(L);if(L.indexOf("!")>=0){N.type=L=L.slice(0,-1);N.exclusive=true}if(!M){N.stopPropagation();if(this.global[L]){r.each(r.cache,function(){if(this.events&&this.events[L]){r.event.trigger(N,P,this.handle.elem)}})}}if(!M||M.nodeType==3||M.nodeType==8){return g}N.result=g;N.target=M;P=r.makeArray(P);P.unshift(N)}N.currentTarget=M;var O=r.data(M,"handle");if(O){O.apply(M,P)}if((!M[L]||(r.nodeName(M,"a")&&L=="click"))&&M["on"+L]&&M["on"+L].apply(M,P)===false){N.result=false}if(!J&&M[L]&&!N.isDefaultPrevented()&&!(r.nodeName(M,"a")&&L=="click")){this.triggered=true;try{M[L]()}catch(Q){}}this.triggered=false;if(!N.isPropagationStopped()){var K=M.parentNode||M.ownerDocument;if(K){r.event.trigger(N,P,K,true)}}},handle:function(P){var O,J;P=arguments[0]=r.event.fix(P||o.event);P.currentTarget=this;var Q=P.type.split(".");P.type=Q.shift();O=!Q.length&&!P.exclusive;var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");J=(r.data(this,"events")||{})[P.type];for(var L in J){var M=J[L];if(O||N.test(M.type)){P.handler=M;P.data=M.data;var K=M.apply(this,arguments);if(K!==g){P.result=K;if(K===false){P.preventDefault();P.stopPropagation()}}if(P.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(M){if(M[h]){return M}var K=M;M=r.Event(K);for(var L=this.props.length,O;L;){O=this.props[--L];M[O]=K[O]}if(!M.target){M.target=M.srcElement||document}if(M.target.nodeType==3){M.target=M.target.parentNode}if(!M.relatedTarget&&M.fromElement){M.relatedTarget=M.fromElement==M.target?M.toElement:M.fromElement}if(M.pageX==null&&M.clientX!=null){var N=document.documentElement,J=document.body;M.pageX=M.clientX+(N&&N.scrollLeft||J&&J.scrollLeft||0)-(N.clientLeft||0);M.pageY=M.clientY+(N&&N.scrollTop||J&&J.scrollTop||0)-(N.clientTop||0)}if(!M.which&&((M.charCode||M.charCode===0)?M.charCode:M.keyCode)){M.which=M.charCode||M.keyCode}if(!M.metaKey&&M.ctrlKey){M.metaKey=M.ctrlKey}if(!M.which&&M.button){M.which=(M.button&1?1:(M.button&2?3:(M.button&4?2:0)))}return M},proxy:function(K,J){J=J||function(){return K.apply(this,arguments)};J.guid=K.guid=K.guid||J.guid||this.guid++;return J},special:{ready:{setup:G,teardown:function(){}}},specialAll:{live:{setup:function(J,K){r.event.add(this,K[0],c)},teardown:function(L){if(L.length){var J=0,K=RegExp("(^|\\.)"+L[0]+"(\\.|$)");r.each((r.data(this,"events").live||{}),function(){if(K.test(this.type)){J++}});if(J<1){r.event.remove(this,L[0],c)}}}}}};r.Event=function(J){if(!this.preventDefault){return new r.Event(J)}if(J&&J.type){this.originalEvent=J;this.type=J.type}else{this.type=J}this.timeStamp=e();this[h]=true};function n(){return false}function z(){return true}r.Event.prototype={preventDefault:function(){this.isDefaultPrevented=z;var J=this.originalEvent;if(!J){return}if(J.preventDefault){J.preventDefault()}J.returnValue=false},stopPropagation:function(){this.isPropagationStopped=z;var J=this.originalEvent;if(!J){return}if(J.stopPropagation){J.stopPropagation()}J.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=z;this.stopPropagation()},isDefaultPrevented:n,isPropagationStopped:n,isImmediatePropagationStopped:n};var a=function(K){var J=K.relatedTarget;while(J&&J!=this){try{J=J.parentNode}catch(L){J=this}}if(J!=this){K.type=K.data;r.event.handle.apply(this,arguments)}};r.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(K,J){r.event.special[J]={setup:function(){r.event.add(this,K,a,J)},teardown:function(){r.event.remove(this,K,a)}}});r.fn.extend({bind:function(K,L,J){return K=="unload"?this.one(K,L,J):this.each(function(){r.event.add(this,K,J||L,J&&L)})},one:function(L,M,K){var J=r.event.proxy(K||M,function(N){r(this).unbind(N,J);return(K||M).apply(this,arguments)});return this.each(function(){r.event.add(this,L,J,K&&M)})},unbind:function(K,J){return this.each(function(){r.event.remove(this,K,J)})},trigger:function(J,K){return this.each(function(){r.event.trigger(J,K,this)})},triggerHandler:function(J,L){if(this[0]){var K=r.Event(J);K.preventDefault();K.stopPropagation();r.event.trigger(K,L,this[0]);return K.result}},toggle:function(L){var J=arguments,K=1;while(K<J.length){r.event.proxy(L,J[K++])}return this.click(r.event.proxy(L,function(M){this.lastToggle=(this.lastToggle||0)%K;M.preventDefault();return J[this.lastToggle++].apply(this,arguments)||false}))},hover:function(J,K){return this.mouseenter(J).mouseleave(K)},ready:function(J){G();if(r.isReady){J.call(document,r)}else{r.readyList.push(J)}return this},live:function(L,K){var J=r.event.proxy(K);J.guid+=this.selector+L;r(document).bind(j(L,this.selector),this.selector,J);return this},die:function(K,J){r(document).unbind(j(K,this.selector),J?{guid:J.guid+this.selector+K}:null);return this}});function c(M){var J=RegExp("(^|\\.)"+M.type+"(\\.|$)"),L=true,K=[];r.each(r.data(this,"events").live||[],function(N,O){if(J.test(O.type)){var P=r(M.target).closest(O.data)[0];if(P){K.push({elem:P,fn:O})}}});K.sort(function(O,N){return r.data(O.elem,"closest")-r.data(N.elem,"closest")});r.each(K,function(){if(this.fn.call(this.elem,M,this.fn.data)===false){return(L=false)}});return L}function j(K,J){return["live",K,J.replace(/\./g,"`").replace(/ /g,"|")].join(".")}r.extend({isReady:false,readyList:[],ready:function(){if(!r.isReady){r.isReady=true;if(r.readyList){r.each(r.readyList,function(){this.call(document,r)});r.readyList=null}r(document).triggerHandler("ready")}}});var C=false;function G(){if(C){return}C=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);r.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);r.ready()}});if(document.documentElement.doScroll&&o==o.top){(function(){if(r.isReady){return}try{document.documentElement.doScroll("left")}catch(J){setTimeout(arguments.callee,0);return}r.ready()})()}}}r.event.add(o,"load",r.ready)}r.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(K,J){r.fn[J]=function(L){return L?this.bind(J,L):this.trigger(J)}});r(o).bind("unload",function(){for(var J in r.cache){if(J!=1&&r.cache[J].handle){r.event.remove(r.cache[J].handle.elem)}}});(function(){r.support={};var K=document.documentElement,L=document.createElement("script"),P=document.createElement("div"),O="script"+(new Date).getTime();P.style.display="none";P.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var M=P.getElementsByTagName("*"),J=P.getElementsByTagName("a")[0];if(!M||!M.length||!J){return}r.support={leadingWhitespace:P.firstChild.nodeType==3,tbody:!P.getElementsByTagName("tbody").length,objectAll:!!P.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!P.getElementsByTagName("link").length,style:/red/.test(J.getAttribute("style")),hrefNormalized:J.getAttribute("href")==="/a",opacity:J.style.opacity==="0.5",cssFloat:!!J.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};L.type="text/javascript";try{L.appendChild(document.createTextNode("window."+O+"=1;"))}catch(N){}K.insertBefore(L,K.firstChild);if(o[O]){r.support.scriptEval=true;delete o[O]}K.removeChild(L);if(P.attachEvent&&P.fireEvent){P.attachEvent("onclick",function(){r.support.noCloneEvent=false;P.detachEvent("onclick",arguments.callee)});P.cloneNode(true).fireEvent("onclick")}r(function(){var Q=document.createElement("div");Q.style.width=Q.style.paddingLeft="1px";document.body.appendChild(Q);r.boxModel=r.support.boxModel=Q.offsetWidth===2;document.body.removeChild(Q).style.display="none"})})();var B=r.support.cssFloat?"cssFloat":"styleFloat";r.props={"for":"htmlFor","class":"className","float":B,cssFloat:B,styleFloat:B,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};r.fn.extend({_load:r.fn.load,load:function(L,O,P){if(typeof L!=="string"){return this._load(L)}var N=L.indexOf(" ");if(N>=0){var J=L.slice(N,L.length);L=L.slice(0,N)}var M="GET";if(O){if(r.isFunction(O)){P=O;O=null}else{if(typeof O==="object"){O=r.param(O);M="POST"}}}var K=this;r.ajax({url:L,type:M,dataType:"html",data:O,complete:function(R,Q){if(Q=="success"||Q=="notmodified"){K.html(J?r("<div/>").append(R.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(J):R.responseText)}if(P){K.each(P,[R.responseText,Q,R])}}});return this},serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?r.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(J,K){var L=r(this).val();return L==null?null:r.isArray(L)?r.map(L,function(N,M){return{name:K.name,value:N}}):{name:K.name,value:L}}).get()}});r.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(J,K){r.fn[K]=function(L){return this.bind(K,L)}});var v=e();r.extend({get:function(J,L,M,K){if(r.isFunction(L)){M=L;L=null}return r.ajax({type:"GET",url:J,data:L,success:M,dataType:K})},getScript:function(J,K){return r.get(J,null,K,"script")},getJSON:function(J,K,L){return r.get(J,K,L,"json")},post:function(J,L,M,K){if(r.isFunction(L)){M=L;L={}}return r.ajax({type:"POST",url:J,data:L,success:M,dataType:K})},ajaxSetup:function(J){r.extend(r.ajaxSettings,J)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return o.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(R){R=r.extend(true,R,r.extend(true,{},r.ajaxSettings,R));var ab,K=/=\?(&|$)/g,W,aa,L=R.type.toUpperCase();if(R.data&&R.processData&&typeof R.data!=="string"){R.data=r.param(R.data)}if(R.dataType=="jsonp"){if(L=="GET"){if(!R.url.match(K)){R.url+=(R.url.match(/\?/)?"&":"?")+(R.jsonp||"callback")+"=?"}}else{if(!R.data||!R.data.match(K)){R.data=(R.data?R.data+"&":"")+(R.jsonp||"callback")+"=?"}}R.dataType="json"}if(R.dataType=="json"&&(R.data&&R.data.match(K)||R.url.match(K))){ab="jsonp"+v++;if(R.data){R.data=(R.data+"").replace(K,"="+ab+"$1")}R.url=R.url.replace(K,"="+ab+"$1");R.dataType="script";o[ab]=function(ac){aa=ac;N();Q();o[ab]=g;try{delete o[ab]}catch(ad){}if(M){M.removeChild(Y)}}}if(R.dataType=="script"&&R.cache==null){R.cache=false}if(R.cache===false&&L=="GET"){var J=e();var Z=R.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+J+"$2");R.url=Z+((Z==R.url)?(R.url.match(/\?/)?"&":"?")+"_="+J:"")}if(R.data&&L=="GET"){R.url+=(R.url.match(/\?/)?"&":"?")+R.data;R.data=null}if(R.global&&!r.active++){r.event.trigger("ajaxStart")}var V=/^(\w+:)?\/\/([^\/?#]+)/.exec(R.url);if(R.dataType=="script"&&L=="GET"&&V&&(V[1]&&V[1]!=location.protocol||V[2]!=location.host)){var M=document.getElementsByTagName("head")[0];var Y=document.createElement("script");Y.src=R.url;if(R.scriptCharset){Y.charset=R.scriptCharset}if(!ab){var T=false;Y.onload=Y.onreadystatechange=function(){if(!T&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){T=true;N();Q();Y.onload=Y.onreadystatechange=null;M.removeChild(Y)}}}M.appendChild(Y);return g}var P=false;var O=R.xhr();if(R.username){O.open(L,R.url,R.async,R.username,R.password)}else{O.open(L,R.url,R.async)}try{if(R.data){O.setRequestHeader("Content-Type",R.contentType)}if(R.ifModified){O.setRequestHeader("If-Modified-Since",r.lastModified[R.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}O.setRequestHeader("X-Requested-With","XMLHttpRequest");O.setRequestHeader("Accept",R.dataType&&R.accepts[R.dataType]?R.accepts[R.dataType]+", */*":R.accepts._default)}catch(X){}if(R.beforeSend&&R.beforeSend(O,R)===false){if(R.global&&!--r.active){r.event.trigger("ajaxStop")}O.abort();return false}if(R.global){r.event.trigger("ajaxSend",[O,R])}var S=function(ac){if(O.readyState==0){if(U){clearInterval(U);U=null;if(R.global&&!--r.active){r.event.trigger("ajaxStop")}}}else{if(!P&&O&&(O.readyState==4||ac=="timeout")){P=true;if(U){clearInterval(U);U=null}W=ac=="timeout"?"timeout":!r.httpSuccess(O)?"error":R.ifModified&&r.httpNotModified(O,R.url)?"notmodified":"success";if(W=="success"){try{aa=r.httpData(O,R.dataType,R)}catch(ae){W="parsererror"}}if(W=="success"){var ad;try{ad=O.getResponseHeader("Last-Modified")}catch(ae){}if(R.ifModified&&ad){r.lastModified[R.url]=ad}if(!ab){N()}}else{r.handleError(R,O,W)}Q();if(ac){O.abort()}if(R.async){O=null}}}};if(R.async){var U=setInterval(S,13);if(R.timeout>0){setTimeout(function(){if(O&&!P){S("timeout")}},R.timeout)}}try{O.send(R.data)}catch(X){r.handleError(R,O,null,X)}if(!R.async){S()}function N(){if(R.success){R.success(aa,W)}if(R.global){r.event.trigger("ajaxSuccess",[O,R])}}function Q(){if(R.complete){R.complete(O,W)}if(R.global){r.event.trigger("ajaxComplete",[O,R])}if(R.global&&!--r.active){r.event.trigger("ajaxStop")}}return O},handleError:function(K,M,J,L){if(K.error){K.error(M,J,L)}if(K.global){r.event.trigger("ajaxError",[M,K,L])}},active:0,httpSuccess:function(K){try{return !K.status&&location.protocol=="file:"||(K.status>=200&&K.status<300)||K.status==304||K.status==1223}catch(J){}return false},httpNotModified:function(L,J){try{var M=L.getResponseHeader("Last-Modified");return L.status==304||M==r.lastModified[J]}catch(K){}return false},httpData:function(O,M,L){var K=O.getResponseHeader("content-type"),J=M=="xml"||!M&&K&&K.indexOf("xml")>=0,N=J?O.responseXML:O.responseText;if(J&&N.documentElement.tagName=="parsererror"){throw"parsererror"}if(L&&L.dataFilter){N=L.dataFilter(N,M)}if(typeof N==="string"){if(M=="script"){r.globalEval(N)}if(M=="json"){N=o["eval"]("("+N+")")}}return N},param:function(J){var L=[];function M(N,O){L[L.length]=encodeURIComponent(N)+"="+encodeURIComponent(O)}if(r.isArray(J)||J.jquery){r.each(J,function(){M(this.name,this.value)})}else{for(var K in J){if(r.isArray(J[K])){r.each(J[K],function(){M(K,this)})}else{M(K,r.isFunction(J[K])?J[K]():J[K])}}}return L.join("&").replace(/%20/g,"+")}});var p={},q,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function y(K,J){var L={};r.each(d.concat.apply([],d.slice(0,J)),function(){L[this]=K});return L}r.fn.extend({show:function(O,Q){if(O){return this.animate(y("show",3),O,Q)}else{for(var M=0,K=this.length;M<K;M++){var J=r.data(this[M],"olddisplay");this[M].style.display=J||"";if(r.css(this[M],"display")==="none"){var L=this[M].tagName,P;if(p[L]){P=p[L]}else{var N=r("<"+L+" />").appendTo("body");P=N.css("display");if(P==="none"){P="block"}N.remove();p[L]=P}r.data(this[M],"olddisplay",P)}}for(var M=0,K=this.length;M<K;M++){this[M].style.display=r.data(this[M],"olddisplay")||""}return this}},hide:function(M,N){if(M){return this.animate(y("hide",3),M,N)}else{for(var L=0,K=this.length;L<K;L++){var J=r.data(this[L],"olddisplay");if(!J&&J!=="none"){r.data(this[L],"olddisplay",r.css(this[L],"display"))}}for(var L=0,K=this.length;L<K;L++){this[L].style.display="none"}return this}},_toggle:r.fn.toggle,toggle:function(L,K){var J=typeof L==="boolean";return r.isFunction(L)&&r.isFunction(K)?this._toggle.apply(this,arguments):L==null||J?this.each(function(){var M=J?L:r(this).is(":hidden");r(this)[M?"show":"hide"]()}):this.animate(y("toggle",3),L,K)},fadeTo:function(J,L,K){return this.animate({opacity:L},J,K)},animate:function(N,K,M,L){var J=r.speed(K,M,L);return this[J.queue===false?"each":"queue"](function(){var P=r.extend({},J),R,Q=this.nodeType==1&&r(this).is(":hidden"),O=this;for(R in N){if(N[R]=="hide"&&Q||N[R]=="show"&&!Q){return P.complete.call(this)}if((R=="height"||R=="width")&&this.style){P.display=r.css(this,"display");P.overflow=this.style.overflow}}if(P.overflow!=null){this.style.overflow="hidden"}P.curAnim=r.extend({},N);r.each(N,function(T,X){var W=new r.fx(O,P,T);if(/toggle|show|hide/.test(X)){W[X=="toggle"?Q?"show":"hide":X](N)}else{var V=X.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),Y=W.cur(true)||0;if(V){var S=parseFloat(V[2]),U=V[3]||"px";if(U!="px"){O.style[T]=(S||1)+U;Y=((S||1)/W.cur(true))*Y;O.style[T]=Y+U}if(V[1]){S=((V[1]=="-="?-1:1)*S)+Y}W.custom(Y,S,U)}else{W.custom(Y,X,"")}}});return true})},stop:function(K,J){var L=r.timers;if(K){this.queue([])}this.each(function(){for(var M=L.length-1;M>=0;M--){if(L[M].elem==this){if(J){L[M](true)}L.splice(M,1)}}});if(!J){this.dequeue()}return this}});r.each({slideDown:y("show",1),slideUp:y("hide",1),slideToggle:y("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(J,K){r.fn[J]=function(L,M){return this.animate(K,L,M)}});r.extend({speed:function(L,M,K){var J=typeof L==="object"?L:{complete:K||!K&&M||r.isFunction(L)&&L,duration:L,easing:K&&M||M&&!r.isFunction(M)&&M};J.duration=r.fx.off?0:typeof J.duration==="number"?J.duration:r.fx.speeds[J.duration]||r.fx.speeds._default;J.old=J.complete;J.complete=function(){if(J.queue!==false){r(this).dequeue()}if(r.isFunction(J.old)){J.old.call(this)}};return J},easing:{linear:function(L,M,J,K){return J+K*L},swing:function(L,M,J,K){return((-Math.cos(L*Math.PI)/2)+0.5)*K+J}},timers:[],fx:function(K,J,L){this.options=J;this.elem=K;this.prop=L;if(!J.orig){J.orig={}}}});r.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(r.fx.step[this.prop]||r.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(K){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var J=parseFloat(r.css(this.elem,this.prop,K));return J&&J>-10000?J:parseFloat(r.curCSS(this.elem,this.prop))||0},custom:function(N,M,L){this.startTime=e();this.start=N;this.end=M;this.unit=L||this.unit||"px";this.now=this.start;this.pos=this.state=0;var J=this;function K(O){return J.step(O)}K.elem=this.elem;if(K()&&r.timers.push(K)&&!q){q=setInterval(function(){var P=r.timers;for(var O=0;O<P.length;O++){if(!P[O]()){P.splice(O--,1)}}if(!P.length){clearInterval(q);q=g}},13)}},show:function(){this.options.orig[this.prop]=r.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());r(this.elem).show()},hide:function(){this.options.orig[this.prop]=r.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(M){var L=e();if(M||L>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var J=true;for(var K in this.options.curAnim){if(this.options.curAnim[K]!==true){J=false}}if(J){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(r.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){r(this.elem).hide()}if(this.options.hide||this.options.show){for(var N in this.options.curAnim){r.attr(this.elem.style,N,this.options.orig[N])}}this.options.complete.call(this.elem)}return false}else{var O=L-this.startTime;this.state=O/this.options.duration;this.pos=r.easing[this.options.easing||(r.easing.swing?"swing":"linear")](this.state,O,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};r.extend(r.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(J){r.attr(J.elem.style,"opacity",J.now)},_default:function(J){if(J.elem.style&&J.elem.style[J.prop]!=null){J.elem.style[J.prop]=J.now+J.unit}else{J.elem[J.prop]=J.now}}}});if(document.documentElement.getBoundingClientRect){r.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return r.offset.bodyOffset(this[0])}var L=this[0].getBoundingClientRect(),O=this[0].ownerDocument,K=O.body,J=O.documentElement,Q=J.clientTop||K.clientTop||0,P=J.clientLeft||K.clientLeft||0,N=L.top+(self.pageYOffset||r.boxModel&&J.scrollTop||K.scrollTop)-Q,M=L.left+(self.pageXOffset||r.boxModel&&J.scrollLeft||K.scrollLeft)-P;return{top:N,left:M}}}else{r.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return r.offset.bodyOffset(this[0])}r.offset.initialized||r.offset.initialize();var O=this[0],L=O.offsetParent,K=O,T=O.ownerDocument,R,M=T.documentElement,P=T.body,Q=T.defaultView,J=Q.getComputedStyle(O,null),S=O.offsetTop,N=O.offsetLeft;while((O=O.parentNode)&&O!==P&&O!==M){R=Q.getComputedStyle(O,null);S-=O.scrollTop,N-=O.scrollLeft;if(O===L){S+=O.offsetTop,N+=O.offsetLeft;if(r.offset.doesNotAddBorder&&!(r.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(O.tagName))){S+=parseInt(R.borderTopWidth,10)||0,N+=parseInt(R.borderLeftWidth,10)||0}K=L,L=O.offsetParent}if(r.offset.subtractsBorderForOverflowNotVisible&&R.overflow!=="visible"){S+=parseInt(R.borderTopWidth,10)||0,N+=parseInt(R.borderLeftWidth,10)||0}J=R}if(J.position==="relative"||J.position==="static"){S+=P.offsetTop,N+=P.offsetLeft}if(J.position==="fixed"){S+=Math.max(M.scrollTop,P.scrollTop),N+=Math.max(M.scrollLeft,P.scrollLeft)}return{top:S,left:N}}}r.offset={initialize:function(){if(this.initialized){return}var Q=document.body,K=document.createElement("div"),M,L,S,N,R,J,O=Q.style.marginTop,P='<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>';R={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(J in R){K.style[J]=R[J]}K.innerHTML=P;Q.insertBefore(K,Q.firstChild);M=K.firstChild,L=M.firstChild,N=M.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(L.offsetTop!==5);this.doesAddBorderForTableAndCells=(N.offsetTop===5);M.style.overflow="hidden",M.style.position="relative";this.subtractsBorderForOverflowNotVisible=(L.offsetTop===-5);Q.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(Q.offsetTop===0);Q.style.marginTop=O;Q.removeChild(K);this.initialized=true},bodyOffset:function(J){r.offset.initialized||r.offset.initialize();var L=J.offsetTop,K=J.offsetLeft;if(r.offset.doesNotIncludeMarginInBodyOffset){L+=parseInt(r.curCSS(J,"marginTop",true),10)||0,K+=parseInt(r.curCSS(J,"marginLeft",true),10)||0}return{top:L,left:K}}};r.fn.extend({position:function(){var N=0,M=0,K;if(this[0]){var L=this.offsetParent(),O=this.offset(),J=/^body|html$/i.test(L[0].tagName)?{top:0,left:0}:L.offset();O.top-=m(this,"marginTop");O.left-=m(this,"marginLeft");J.top+=m(L,"borderTopWidth");J.left+=m(L,"borderLeftWidth");K={top:O.top-J.top,left:O.left-J.left}}return K},offsetParent:function(){var J=this[0].offsetParent||document.body;while(J&&(!/^body|html$/i.test(J.tagName)&&r.css(J,"position")=="static")){J=J.offsetParent}return r(J)}});r.each(["Left","Top"],function(K,J){var L="scroll"+J;r.fn[L]=function(M){if(!this[0]){return null}return M!==g?this.each(function(){this==o||this==document?o.scrollTo(!K?M:r(o).scrollLeft(),K?M:r(o).scrollTop()):this[L]=M}):this[0]==o||this[0]==document?self[K?"pageYOffset":"pageXOffset"]||r.boxModel&&document.documentElement[L]||document.body[L]:this[0][L]}});r.each(["Height","Width"],function(N,L){var J=N?"Left":"Top",M=N?"Right":"Bottom",K=L.toLowerCase();r.fn["inner"+L]=function(){return this[0]?r.css(this[0],K,false,"padding"):null};r.fn["outer"+L]=function(P){return this[0]?r.css(this[0],K,false,P?"margin":"border"):null};var O=L.toLowerCase();r.fn[O]=function(P){return this[0]==o?document.compatMode=="CSS1Compat"&&document.documentElement["client"+L]||document.body["client"+L]:this[0]==document?Math.max(document.documentElement["client"+L],document.body["scroll"+L],document.documentElement["scroll"+L],document.body["offset"+L],document.documentElement["offset"+L]):P===g?(this.length?r.css(this[0],O):null):this.css(O,typeof P==="string"?P:P+"px")}})})();(function(d){var b=function(q){return q!==undefined&&q!==null},p=function(t,q,r){b(t)&&t.apply(q,r)},e=function(q){setTimeout(q,0)},f="",a="&",n="?",o="success",g="error",j=d("head"),h={},c={callback:"C",url:location.href},m=function(w){w=d.extend({},c,w);var v=w.beforeSend,F=0;w.abort=function(){F=1};if(b(v)&&(v(w,w)===false||F)){return w}var u=w.success,r=w.complete,A=w.error,H=w.dataFilter,L=w.callbackParameter,B=w.callback,I=w.cache,q=w.pageCache,y=w.url,N=w.data,C=w.timeout,E,M,K,J;y=b(y)?y:f;N=b(N)?((typeof N)=="string"?N:d.param(N)):f;b(L)&&(N+=(N==f?f:a)+escape(L)+"=?");!I&&!q&&(N+=(N==f?f:a)+"_"+(new Date()).getTime()+"=");E=y.split(n);if(N!=f){M=N.split(n);J=E.length-1;J&&(E[J]+=a+M.shift());E=E.concat(M)}K=E.length-2;K&&(E[K]+=B+E.pop());var t=E.join(n),G=function(O){b(H)&&(O=H.apply(w,[O]));p(u,w,[O,o]);p(r,w,[w,o])},D=function(O){p(A,w,[w,O]);p(r,w,[w,O])},z=h[t];if(q&&b(z)){e(function(){b(z.s)?G(z.s):D(g)});return w}e(function(){if(F){return}var O=d("<iframe />").appendTo(j),Q=O[0],S=Q.contentWindow||Q.contentDocument,U=S.document,P,V,W=function(X,Y){q&&!b(Y)&&(h[t]=f);P();D(b(Y)?Y:g)},R=function(Y){S[Y]=undefined;try{delete S[Y]}catch(X){}},T=B=="E"?"X":"E";if(!b(U)){U=S;S=U.getParentNode()}U.open();S[B]=function(X){F=1;q&&(h[t]={s:X});e(function(){P();G(X)})};S[T]=function(X){(!X||X=="complete")&&!F++&&e(W)};w.abort=P=function(){clearTimeout(V);U.open();R(T);R(B);U.write(f);U.close();O.remove()};U.write(['<html><head><script src="',t,'" onload="',T,'()" onreadystatechange="',T,'(this.readyState)"><\/script></head><body onload="',T,'()"></body></html>'].join(f));U.close();C>0&&(V=setTimeout(function(){!F&&W(f,"timeout")},C))});return w};m.setup=function(q){d.extend(c,q)};d.jsonp=m})(jQuery);
/*
 * jquery.qtip. The jQuery tooltip plugin
 *
 * Copyright (c) 2009 Craig Thompson
 * http://craigsworks.com
 *
 * Licensed under MIT
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Launch  : February 2009
 * Version : 1.0.0-rc3
 * Released: Tuesday 12th May, 2009 - 00:00
 * Debug: jquery.qtip.debug.js
 */
(function(f){f.fn.qtip=function(F,y){var C,w,E,v,B,A,z,D;if(typeof F=="string"){if(typeof f(this).data("qtip")!=="object"){f.fn.qtip.log.error.call(self,1,f.fn.qtip.constants.NO_TOOLTIP_PRESENT,false)}if(F=="api"){return f(this).data("qtip").interfaces[f(this).data("qtip").current]}else{if(F=="interfaces"){return f(this).data("qtip").interfaces}}}else{if(!F){F={}}if(typeof F.content!=="object"||(F.content.jquery&&F.content.length>0)){F.content={text:F.content}}if(typeof F.content.title!=="object"){F.content.title={text:F.content.title}}if(typeof F.position!=="object"){F.position={corner:F.position}}if(typeof F.position.corner!=="object"){F.position.corner={target:F.position.corner,tooltip:F.position.corner}}if(typeof F.show!=="object"){F.show={when:F.show}}if(typeof F.show.when!=="object"){F.show.when={event:F.show.when}}if(typeof F.show.effect!=="object"){F.show.effect={type:F.show.effect}}if(typeof F.hide!=="object"){F.hide={when:F.hide}}if(typeof F.hide.when!=="object"){F.hide.when={event:F.hide.when}}if(typeof F.hide.effect!=="object"){F.hide.effect={type:F.hide.effect}}if(typeof F.style!=="object"){F.style={name:F.style}}F.style=c(F.style);v=f.extend(true,{},f.fn.qtip.defaults,F);v.style=a.call({options:v},v.style);v.user=f.extend(true,{},F)}return f(this).each(function(){if(typeof F=="string"){A=F.toLowerCase();E=f(this).qtip("interfaces");if(typeof E=="object"){if(y===true&&A=="destroy"){while(E.length>0){E[E.length-1].destroy()}}else{if(y!==true){E=[f(this).qtip("api")]}for(C=0;C<E.length;C++){if(A=="destroy"){E[C].destroy()}else{if(E[C].status.rendered===true){if(A=="show"){E[C].show()}else{if(A=="hide"){E[C].hide()}else{if(A=="focus"){E[C].focus()}else{if(A=="disable"){E[C].disable(true)}else{if(A=="enable"){E[C].disable(false)}}}}}}}}}}}else{z=f.extend(true,{},v);z.hide.effect.length=v.hide.effect.length;z.show.effect.length=v.show.effect.length;if(z.position.container===false){z.position.container=f(document.body)}if(z.position.target===false){z.position.target=f(this)}if(z.show.when.target===false){z.show.when.target=f(this)}if(z.hide.when.target===false){z.hide.when.target=f(this)}w=f.fn.qtip.interfaces.length;for(C=0;C<w;C++){if(typeof f.fn.qtip.interfaces[C]=="undefined"){w=C;break}}B=new d(f(this),z,w);f.fn.qtip.interfaces[w]=B;if(typeof f(this).data("qtip")=="object"){if(typeof f(this).attr("qtip")==="undefined"){f(this).data("qtip").current=f(this).data("qtip").interfaces.length}f(this).data("qtip").interfaces.push(B)}else{f(this).data("qtip",{current:0,interfaces:[B]})}if(z.content.prerender===false&&z.show.when.event!==false&&z.show.ready!==true){z.show.when.target.bind(z.show.when.event+".qtip-"+w+"-create",{qtip:w},function(G){D=f.fn.qtip.interfaces[G.data.qtip];D.options.show.when.target.unbind(D.options.show.when.event+".qtip-"+G.data.qtip+"-create");D.cache.mouse={x:G.pageX,y:G.pageY};r.call(D);D.options.show.when.target.trigger(D.options.show.when.event)})}else{B.cache.mouse={x:z.show.when.target.offset().left,y:z.show.when.target.offset().top};r.call(B)}}})};function d(y,w,z){var v=this;v.id=z;v.options=w;v.status={animated:false,rendered:false,disabled:false,focused:false};v.elements={target:y.addClass(v.options.style.classes.target),tooltip:null,wrapper:null,content:null,contentWrapper:null,title:null,button:null,tip:null,bgiframe:null};v.cache={mouse:{},position:{},toggle:0};v.timers={};f.extend(v,v.options.api,{show:function(C){var B,D;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"show")}if(v.elements.tooltip.css("display")!=="none"){return v}v.elements.tooltip.stop(true,false);B=v.beforeShow.call(v,C);if(B===false){return v}function A(){if(v.options.position.type!=="static"){v.focus()}v.onShow.call(v,C);if(f.browser.msie){v.elements.tooltip.get(0).style.removeAttribute("filter")}}v.cache.toggle=1;if(v.options.position.type!=="static"){v.updatePosition(C,(v.options.show.effect.length>0))}if(typeof v.options.show.solo=="object"){D=f(v.options.show.solo)}else{if(v.options.show.solo===true){D=f("div.qtip").not(v.elements.tooltip)}}if(D){D.each(function(){if(f(this).qtip("api").status.rendered===true){f(this).qtip("api").hide()}})}if(typeof v.options.show.effect.type=="function"){v.options.show.effect.type.call(v.elements.tooltip,v.options.show.effect.length);v.elements.tooltip.queue(function(){A();f(this).dequeue()})}else{switch(v.options.show.effect.type.toLowerCase()){case"fade":v.elements.tooltip.fadeIn(v.options.show.effect.length,A);break;case"slide":v.elements.tooltip.slideDown(v.options.show.effect.length,function(){A();if(v.options.position.type!=="static"){v.updatePosition(C,true)}});break;case"grow":v.elements.tooltip.show(v.options.show.effect.length,A);break;default:v.elements.tooltip.show(null,A);break}v.elements.tooltip.addClass(v.options.style.classes.active)}return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_SHOWN,"show")},hide:function(C){var B;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"hide")}else{if(v.elements.tooltip.css("display")==="none"){return v}}clearTimeout(v.timers.show);v.elements.tooltip.stop(true,false);B=v.beforeHide.call(v,C);if(B===false){return v}function A(){v.onHide.call(v,C)}v.cache.toggle=0;if(typeof v.options.hide.effect.type=="function"){v.options.hide.effect.type.call(v.elements.tooltip,v.options.hide.effect.length);v.elements.tooltip.queue(function(){A();f(this).dequeue()})}else{switch(v.options.hide.effect.type.toLowerCase()){case"fade":v.elements.tooltip.fadeOut(v.options.hide.effect.length,A);break;case"slide":v.elements.tooltip.slideUp(v.options.hide.effect.length,A);break;case"grow":v.elements.tooltip.hide(v.options.hide.effect.length,A);break;default:v.elements.tooltip.hide(null,A);break}v.elements.tooltip.removeClass(v.options.style.classes.active)}return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_HIDDEN,"hide")},updatePosition:function(A,B){var G,K,P,N,L,I,C,M,F,H,O,E,J,D;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updatePosition")}else{if(v.options.position.type=="static"){return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.CANNOT_POSITION_STATIC,"updatePosition")}}K={position:{left:0,top:0},dimensions:{height:0,width:0},corner:v.options.position.corner.target};P={position:v.getPosition(),dimensions:v.getDimensions(),corner:v.options.position.corner.tooltip};if(v.options.position.target!=="mouse"){if(v.options.position.target.get(0).nodeName.toLowerCase()=="area"){N=v.options.position.target.attr("coords").split(",");for(G=0;G<N.length;G++){N[G]=parseInt(N[G])}L=v.options.position.target.parent("map").attr("name");I=f('img[usemap="#'+L+'"]:first').offset();K.position={left:Math.floor(I.left+N[0]),top:Math.floor(I.top+N[1])};switch(v.options.position.target.attr("shape").toLowerCase()){case"rect":K.dimensions={width:Math.ceil(Math.abs(N[2]-N[0])),height:Math.ceil(Math.abs(N[3]-N[1]))};break;case"circle":K.dimensions={width:N[2]+1,height:N[2]+1};break;case"poly":K.dimensions={width:N[0],height:N[1]};for(G=0;G<N.length;G++){if(G%2==0){if(N[G]>K.dimensions.width){K.dimensions.width=N[G]}if(N[G]<N[0]){K.position.left=Math.floor(I.left+N[G])}}else{if(N[G]>K.dimensions.height){K.dimensions.height=N[G]}if(N[G]<N[1]){K.position.top=Math.floor(I.top+N[G])}}}K.dimensions.width=K.dimensions.width-(K.position.left-I.left);K.dimensions.height=K.dimensions.height-(K.position.top-I.top);break;default:return f.fn.qtip.log.error.call(v,4,f.fn.qtip.constants.INVALID_AREA_SHAPE,"updatePosition");break}K.dimensions.width-=2;K.dimensions.height-=2}else{if(v.options.position.target.add(document.body).length===1){K.position={left:f(document).scrollLeft(),top:f(document).scrollTop()};K.dimensions={height:f(window).height(),width:f(window).width()}}else{if(typeof v.options.position.target.attr("qtip")!=="undefined"){K.position=v.options.position.target.qtip("api").cache.position}else{K.position=v.options.position.target.offset()}K.dimensions={height:v.options.position.target.outerHeight(),width:v.options.position.target.outerWidth()}}}C=f.extend({},K.position);if(K.corner.search(/right/i)!==-1){C.left+=K.dimensions.width}if(K.corner.search(/bottom/i)!==-1){C.top+=K.dimensions.height}if(K.corner.search(/((top|bottom)Middle)|center/)!==-1){C.left+=(K.dimensions.width/2)}if(K.corner.search(/((left|right)Middle)|center/)!==-1){C.top+=(K.dimensions.height/2)}}else{K.position=C={left:v.cache.mouse.x,top:v.cache.mouse.y};K.dimensions={height:1,width:1}}if(P.corner.search(/right/i)!==-1){C.left-=P.dimensions.width}if(P.corner.search(/bottom/i)!==-1){C.top-=P.dimensions.height}if(P.corner.search(/((top|bottom)Middle)|center/)!==-1){C.left-=(P.dimensions.width/2)}if(P.corner.search(/((left|right)Middle)|center/)!==-1){C.top-=(P.dimensions.height/2)}M=(f.browser.msie)?1:0;F=(f.browser.msie&&parseInt(f.browser.version.charAt(0))===6)?1:0;if(v.options.style.border.radius>0){if(P.corner.search(/Left/)!==-1){C.left-=v.options.style.border.radius}else{if(P.corner.search(/Right/)!==-1){C.left+=v.options.style.border.radius}}if(P.corner.search(/Top/)!==-1){C.top-=v.options.style.border.radius}else{if(P.corner.search(/Bottom/)!==-1){C.top+=v.options.style.border.radius}}}if(M){if(P.corner.search(/top/)!==-1){C.top-=M}else{if(P.corner.search(/bottom/)!==-1){C.top+=M}}if(P.corner.search(/left/)!==-1){C.left-=M}else{if(P.corner.search(/right/)!==-1){C.left+=M}}if(P.corner.search(/leftMiddle|rightMiddle/)!==-1){C.top-=1}}if(v.options.position.adjust.screen===true){C=q.call(v,C,K,P)}if(v.options.position.target==="mouse"&&v.options.position.adjust.mouse===true){if(v.options.position.adjust.screen===true&&v.elements.tip){O=v.elements.tip.attr("rel")}else{O=v.options.position.corner.tooltip}C.left+=(O.search(/right/i)!==-1)?-6:6;C.top+=(O.search(/bottom/i)!==-1)?-6:6}if(!v.elements.bgiframe&&f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){f("select, object").each(function(){E=f(this).offset();E.bottom=E.top+f(this).height();E.right=E.left+f(this).width();if(C.top+P.dimensions.height>=E.top&&C.left+P.dimensions.width>=E.left){m.call(v)}})}C.left+=v.options.position.adjust.x;C.top+=v.options.position.adjust.y;J=v.getPosition();if(C.left!=J.left||C.top!=J.top){D=v.beforePositionUpdate.call(v,A);if(D===false){return v}v.cache.position=C;if(B===true){v.status.animated=true;v.elements.tooltip.animate(C,200,"swing",function(){v.status.animated=false})}else{v.elements.tooltip.css(C)}v.onPositionUpdate.call(v,A);if(typeof A!=="undefined"&&A.type&&A.type!=="mousemove"){f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_POSITION_UPDATED,"updatePosition")}}return v},updateWidth:function(A){var B;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateWidth")}else{if(A&&typeof A!=="number"){return f.fn.qtip.log.error.call(v,2,"newWidth must be of type number","updateWidth")}}B=v.elements.contentWrapper.siblings().add(v.elements.tip).add(v.elements.button);if(!A){if(typeof v.options.style.width.value=="number"){A=v.options.style.width.value}else{v.elements.tooltip.css({width:"auto"});B.hide();if(f.browser.msie){v.elements.wrapper.add(v.elements.contentWrapper.children()).css({zoom:"normal"})}A=v.getDimensions().width+1;if(!v.options.style.width.value){if(A>v.options.style.width.max){A=v.options.style.width.max}if(A<v.options.style.width.min){A=v.options.style.width.min}}}}if(A%2!==0){A-=1}v.elements.tooltip.width(A);B.show();if(v.options.style.border.radius){v.elements.tooltip.find(".qtip-betweenCorners").each(function(C){f(this).width(A-(v.options.style.border.radius*2))})}if(f.browser.msie){v.elements.wrapper.add(v.elements.contentWrapper.children()).css({zoom:"1"});v.elements.wrapper.width(A);if(v.elements.bgiframe){v.elements.bgiframe.width(A).height(v.getDimensions.height)}}return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_WIDTH_UPDATED,"updateWidth")},updateStyle:function(A){var D,E,B,C,F;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateStyle")}else{if(typeof A!=="string"||!f.fn.qtip.styles[A]){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.STYLE_NOT_DEFINED,"updateStyle")}}v.options.style=a.call(v,f.fn.qtip.styles[A],v.options.user.style);v.elements.content.css(t(v.options.style));if(v.options.content.title.text!==false){v.elements.title.css(t(v.options.style.title,true))}v.elements.contentWrapper.css({borderColor:v.options.style.border.color});if(v.options.style.tip.corner!==false){if(f("<canvas>").get(0).getContext){D=v.elements.tooltip.find(".qtip-tip canvas:first");B=D.get(0).getContext("2d");B.clearRect(0,0,300,300);C=D.parent("div[rel]:first").attr("rel");F=b(C,v.options.style.tip.size.width,v.options.style.tip.size.height);h.call(v,D,F,v.options.style.tip.color||v.options.style.border.color)}else{if(f.browser.msie){D=v.elements.tooltip.find('.qtip-tip [nodeName="shape"]');D.attr("fillcolor",v.options.style.tip.color||v.options.style.border.color)}}}if(v.options.style.border.radius>0){v.elements.tooltip.find(".qtip-betweenCorners").css({backgroundColor:v.options.style.border.color});if(f("<canvas>").get(0).getContext){E=g(v.options.style.border.radius);v.elements.tooltip.find(".qtip-wrapper canvas").each(function(){B=f(this).get(0).getContext("2d");B.clearRect(0,0,300,300);C=f(this).parent("div[rel]:first").attr("rel");u.call(v,f(this),E[C],v.options.style.border.radius,v.options.style.border.color)})}else{if(f.browser.msie){v.elements.tooltip.find('.qtip-wrapper [nodeName="arc"]').each(function(){f(this).attr("fillcolor",v.options.style.border.color)})}}}return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_STYLE_UPDATED,"updateStyle")},updateContent:function(E,C){var D,B,A;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateContent")}else{if(!E){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateContent")}}D=v.beforeContentUpdate.call(v,E);if(typeof D=="string"){E=D}else{if(D===false){return}}if(f.browser.msie){v.elements.contentWrapper.children().css({zoom:"normal"})}if(E.jquery&&E.length>0){E.clone(true).appendTo(v.elements.content).show()}else{v.elements.content.html(E)}B=v.elements.content.find("img[complete=false]");if(B.length>0){A=0;B.each(function(G){f('<img src="'+f(this).attr("src")+'" />').load(function(){if(++A==B.length){F()}})})}else{F()}function F(){v.updateWidth();if(C!==false){if(v.options.position.type!=="static"){v.updatePosition(v.elements.tooltip.is(":visible"),true)}if(v.options.style.tip.corner!==false){p.call(v)}}}v.onContentUpdate.call(v);return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_CONTENT_UPDATED,"loadContent")},loadContent:function(A,D,E){var C;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"loadContent")}C=v.beforeContentLoad.call(v);if(C===false){return v}if(E=="post"){f.post(A,D,B)}else{f.get(A,D,B)}function B(F){v.onContentLoad.call(v);f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_CONTENT_LOADED,"loadContent");v.updateContent(F)}return v},updateTitle:function(A){if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateTitle")}else{if(!A){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateTitle")}}returned=v.beforeTitleUpdate.call(v);if(returned===false){return v}if(v.elements.button){v.elements.button=v.elements.button.clone(true)}v.elements.title.html(A);if(v.elements.button){v.elements.title.prepend(v.elements.button)}v.onTitleUpdate.call(v);return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_TITLE_UPDATED,"updateTitle")},focus:function(E){var C,B,A,D;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"focus")}else{if(v.options.position.type=="static"){return f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.CANNOT_FOCUS_STATIC,"focus")}}C=parseInt(v.elements.tooltip.css("z-index"));B=6000+f("div.qtip[qtip]").length-1;if(!v.status.focused&&C!==B){D=v.beforeFocus.call(v,E);if(D===false){return v}f("div.qtip[qtip]").not(v.elements.tooltip).each(function(){if(f(this).qtip("api").status.rendered===true){A=parseInt(f(this).css("z-index"));if(typeof A=="number"&&A>-1){f(this).css({zIndex:parseInt(f(this).css("z-index"))-1})}f(this).qtip("api").status.focused=false}});v.elements.tooltip.css({zIndex:B});v.status.focused=true;v.onFocus.call(v,E);f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_FOCUSED,"focus")}return v},disable:function(A){if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"disable")}if(A){if(!v.status.disabled){v.status.disabled=true;f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_DISABLED,"disable")}else{f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.TOOLTIP_ALREADY_DISABLED,"disable")}}else{if(v.status.disabled){v.status.disabled=false;f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_ENABLED,"disable")}else{f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.TOOLTIP_ALREADY_ENABLED,"disable")}}return v},destroy:function(){var A,B,C;B=v.beforeDestroy.call(v);if(B===false){return v}if(v.status.rendered){v.options.show.when.target.unbind("mousemove.qtip",v.updatePosition);v.options.show.when.target.unbind("mouseout.qtip",v.hide);v.options.show.when.target.unbind(v.options.show.when.event+".qtip");v.options.hide.when.target.unbind(v.options.hide.when.event+".qtip");v.elements.tooltip.unbind(v.options.hide.when.event+".qtip");v.elements.tooltip.unbind("mouseover.qtip",v.focus);v.elements.tooltip.remove()}else{v.options.show.when.target.unbind(v.options.show.when.event+".qtip-create")}if(typeof v.elements.target.data("qtip")=="object"){C=v.elements.target.data("qtip").interfaces;if(typeof C=="object"&&C.length>0){for(A=0;A<C.length-1;A++){if(C[A].id==v.id){C.splice(A,1)}}}}delete f.fn.qtip.interfaces[v.id];if(typeof C=="object"&&C.length>0){v.elements.target.data("qtip").current=C.length-1}else{v.elements.target.removeData("qtip")}v.onDestroy.call(v);f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_DESTROYED,"destroy");return v.elements.target},getPosition:function(){var A,B;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getPosition")}A=(v.elements.tooltip.css("display")!=="none")?false:true;if(A){v.elements.tooltip.css({visiblity:"hidden"}).show()}B=v.elements.tooltip.offset();if(A){v.elements.tooltip.css({visiblity:"visible"}).hide()}return B},getDimensions:function(){var A,B;if(!v.status.rendered){return f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getDimensions")}A=(!v.elements.tooltip.is(":visible"))?true:false;if(A){v.elements.tooltip.css({visiblity:"hidden"}).show()}B={height:v.elements.tooltip.outerHeight(),width:v.elements.tooltip.outerWidth()};if(A){v.elements.tooltip.css({visiblity:"visible"}).hide()}return B}})}function r(){var v,A,y,w,z,C,B;v=this;v.beforeRender.call(v);v.status.rendered=true;v.elements.tooltip='<div qtip="'+v.id+'" class="qtip '+(v.options.style.classes.tooltip||v.options.style)+'"style="display:none; -moz-border-radius:0; -webkit-border-radius:0; border-radius:0;position:'+v.options.position.type+';">  <div class="qtip-wrapper" style="position:relative; overflow:hidden; text-align:left;">    <div class="qtip-contentWrapper" style="overflow:hidden;">       <div class="qtip-content '+v.options.style.classes.content+'"></div></div></div></div>';v.elements.tooltip=f(v.elements.tooltip);v.elements.tooltip.appendTo(v.options.position.container);v.elements.tooltip.data("qtip",{current:0,interfaces:[v]});v.elements.wrapper=v.elements.tooltip.children("div:first");v.elements.contentWrapper=v.elements.wrapper.children("div:first").css({background:v.options.style.background});v.elements.content=v.elements.contentWrapper.children("div:first").css(t(v.options.style));if(f.browser.msie){v.elements.wrapper.add(v.elements.content).css({zoom:1})}if(v.options.hide.when.event=="unfocus"){v.elements.tooltip.attr("unfocus",true)}if(typeof v.options.style.width.value=="number"){v.updateWidth()}if(f("<canvas>").get(0).getContext||f.browser.msie){if(v.options.style.border.radius>0){o.call(v)}else{v.elements.contentWrapper.css({border:v.options.style.border.width+"px solid "+v.options.style.border.color})}if(v.options.style.tip.corner!==false){e.call(v)}}else{v.elements.contentWrapper.css({border:v.options.style.border.width+"px solid "+v.options.style.border.color});v.options.style.border.radius=0;v.options.style.tip.corner=false;f.fn.qtip.log.error.call(v,2,f.fn.qtip.constants.CANVAS_VML_NOT_SUPPORTED,"render")}if((typeof v.options.content.text=="string"&&v.options.content.text.length>0)||(v.options.content.text.jquery&&v.options.content.text.length>0)){y=v.options.content.text}else{if(typeof v.elements.target.attr("title")=="string"&&v.elements.target.attr("title").length>0){y=v.elements.target.attr("title").replace("\\n","<br />");v.elements.target.attr("title","")}else{if(typeof v.elements.target.attr("alt")=="string"&&v.elements.target.attr("alt").length>0){y=v.elements.target.attr("alt").replace("\\n","<br />");v.elements.target.attr("alt","")}else{y=" ";f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.NO_VALID_CONTENT,"render")}}}if(v.options.content.title.text!==false){j.call(v)}v.updateContent(y);n.call(v);if(v.options.show.ready===true){v.show()}if(v.options.content.url!==false){w=v.options.content.url;z=v.options.content.data;C=v.options.content.method||"get";v.loadContent(w,z,C)}v.onRender.call(v);f.fn.qtip.log.error.call(v,1,f.fn.qtip.constants.EVENT_RENDERED,"render")}function o(){var J,D,w,F,B,I,y,K,H,C,A,G,E,v,z;J=this;J.elements.wrapper.find(".qtip-borderBottom, .qtip-borderTop").remove();w=J.options.style.border.width;F=J.options.style.border.radius;B=J.options.style.border.color||J.options.style.tip.color;I=g(F);y={};for(D in I){y[D]='<div rel="'+D+'" style="'+((D.search(/Left/)!==-1)?"left":"right")+":0; position:absolute; height:"+F+"px; width:"+F+'px; overflow:hidden; line-height:0.1px; font-size:1px">';if(f("<canvas>").get(0).getContext){y[D]+='<canvas height="'+F+'" width="'+F+'" style="vertical-align: top"></canvas>'}else{if(f.browser.msie){K=F*2+3;y[D]+='<v:arc stroked="false" fillcolor="'+B+'" startangle="'+I[D][0]+'" endangle="'+I[D][1]+'" style="width:'+K+"px; height:"+K+"px; margin-top:"+((D.search(/bottom/)!==-1)?-2:-1)+"px; margin-left:"+((D.search(/Right/)!==-1)?I[D][2]-3.5:-1)+'px; vertical-align:top; display:inline-block; behavior:url(#default#VML)"></v:arc>'}}y[D]+="</div>"}H=J.getDimensions().width-(Math.max(w,F)*2);C='<div class="qtip-betweenCorners" style="height:'+F+"px; width:"+H+"px; overflow:hidden; background-color:"+B+'; line-height:0.1px; font-size:1px;">';A='<div class="qtip-borderTop" dir="ltr" style="height:'+F+"px; margin-left:"+F+'px; line-height:0.1px; font-size:1px; padding:0;">'+y.topLeft+y.topRight+C;J.elements.wrapper.prepend(A);G='<div class="qtip-borderBottom" dir="ltr" style="height:'+F+"px; margin-left:"+F+'px; line-height:0.1px; font-size:1px; padding:0;">'+y.bottomLeft+y.bottomRight+C;J.elements.wrapper.append(G);if(f("<canvas>").get(0).getContext){J.elements.wrapper.find("canvas").each(function(){E=I[f(this).parent("[rel]:first").attr("rel")];u.call(J,f(this),E,F,B)})}else{if(f.browser.msie){J.elements.tooltip.append('<v:image style="behavior:url(#default#VML);"></v:image>')}}v=Math.max(F,(F+(w-F)));z=Math.max(w-F,0);J.elements.contentWrapper.css({border:"0px solid "+B,borderWidth:z+"px "+v+"px"})}function u(y,A,v,w){var z=y.get(0).getContext("2d");z.fillStyle=w;z.beginPath();z.arc(A[0],A[1],v,0,Math.PI*2,false);z.fill()}function e(z){var w,v,B,y,A;w=this;if(w.elements.tip!==null){w.elements.tip.remove()}v=w.options.style.tip.color||w.options.style.border.color;if(w.options.style.tip.corner===false){return}else{if(!z){z=w.options.style.tip.corner}}B=b(z,w.options.style.tip.size.width,w.options.style.tip.size.height);w.elements.tip='<div class="'+w.options.style.classes.tip+'" dir="ltr" rel="'+z+'" style="position:absolute; height:'+w.options.style.tip.size.height+"px; width:"+w.options.style.tip.size.width+'px; margin:0 auto; line-height:0.1px; font-size:1px;">';if(f("<canvas>").get(0).getContext){w.elements.tip+='<canvas height="'+w.options.style.tip.size.height+'" width="'+w.options.style.tip.size.width+'"></canvas>'}else{if(f.browser.msie){y=w.options.style.tip.size.width+","+w.options.style.tip.size.height;A="m"+B[0][0]+","+B[0][1];A+=" l"+B[1][0]+","+B[1][1];A+=" "+B[2][0]+","+B[2][1];A+=" xe";w.elements.tip+='<v:shape fillcolor="'+v+'" stroked="false" filled="true" path="'+A+'" coordsize="'+y+'" style="width:'+w.options.style.tip.size.width+"px; height:"+w.options.style.tip.size.height+"px; line-height:0.1px; display:inline-block; behavior:url(#default#VML); vertical-align:"+((z.search(/top/)!==-1)?"bottom":"top")+'"></v:shape>';w.elements.tip+='<v:image style="behavior:url(#default#VML);"></v:image>';w.elements.contentWrapper.css("position","relative")}}w.elements.tooltip.prepend(w.elements.tip+"</div>");w.elements.tip=w.elements.tooltip.find("."+w.options.style.classes.tip).eq(0);if(f("<canvas>").get(0).getContext){h.call(w,w.elements.tip.find("canvas:first"),B,v)}if(z.search(/top/)!==-1&&f.browser.msie&&parseInt(f.browser.version.charAt(0))===6){w.elements.tip.css({marginTop:-4})}p.call(w,z)}function h(w,z,v){var y=w.get(0).getContext("2d");y.fillStyle=v;y.beginPath();y.moveTo(z[0][0],z[0][1]);y.lineTo(z[1][0],z[1][1]);y.lineTo(z[2][0],z[2][1]);y.fill()}function p(y){var w,A,v,B,z;w=this;if(w.options.style.tip.corner===false||!w.elements.tip){return}if(!y){y=w.elements.tip.attr("rel")}A=positionAdjust=(f.browser.msie)?1:0;w.elements.tip.css(y.match(/left|right|top|bottom/)[0],0);if(y.search(/top|bottom/)!==-1){if(f.browser.msie){if(parseInt(f.browser.version.charAt(0))===6){positionAdjust=(y.search(/top/)!==-1)?-3:1}else{positionAdjust=(y.search(/top/)!==-1)?1:2}}if(y.search(/Middle/)!==-1){w.elements.tip.css({left:"50%",marginLeft:-(w.options.style.tip.size.width/2)})}else{if(y.search(/Left/)!==-1){w.elements.tip.css({left:w.options.style.border.radius-A})}else{if(y.search(/Right/)!==-1){w.elements.tip.css({right:w.options.style.border.radius+A})}}}if(y.search(/top/)!==-1){w.elements.tip.css({top:-positionAdjust})}else{w.elements.tip.css({bottom:positionAdjust})}}else{if(y.search(/left|right/)!==-1){if(f.browser.msie){positionAdjust=(parseInt(f.browser.version.charAt(0))===6)?1:((y.search(/left/)!==-1)?1:2)}if(y.search(/Middle/)!==-1){w.elements.tip.css({top:"50%",marginTop:-(w.options.style.tip.size.height/2)})}else{if(y.search(/Top/)!==-1){w.elements.tip.css({top:w.options.style.border.radius-A})}else{if(y.search(/Bottom/)!==-1){w.elements.tip.css({bottom:w.options.style.border.radius+A})}}}if(y.search(/left/)!==-1){w.elements.tip.css({left:-positionAdjust})}else{w.elements.tip.css({right:positionAdjust})}}}v="padding-"+y.match(/left|right|top|bottom/)[0];B=w.options.style.tip.size[(v.search(/left|right/)!==-1)?"width":"height"];w.elements.tooltip.css("padding",0);w.elements.tooltip.css(v,B);if(f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){z=parseInt(w.elements.tip.css("margin-top"))||0;z+=parseInt(w.elements.content.css("margin-top"))||0;w.elements.tip.css({marginTop:z})}}function j(){var v=this;if(v.elements.title!==null){v.elements.title.remove()}v.elements.title=f('<div class="'+v.options.style.classes.title+'">').css(t(v.options.style.title,true)).css({zoom:(f.browser.msie)?1:0}).prependTo(v.elements.contentWrapper);if(v.options.content.title.text){v.updateTitle.call(v,v.options.content.title.text)}if(v.options.content.title.button!==false&&typeof v.options.content.title.button=="string"){v.elements.button=f('<a class="'+v.options.style.classes.button+'" style="float:right; position: relative"></a>').css(t(v.options.style.button,true)).html(v.options.content.title.button).prependTo(v.elements.title).click(function(w){if(!v.status.disabled){v.hide(w)}})}}function n(){var w,z,y,v;w=this;z=w.options.show.when.target;y=w.options.hide.when.target;if(w.options.hide.fixed){y=y.add(w.elements.tooltip)}if(w.options.hide.when.event=="inactive"){v=["click","dblclick","mousedown","mouseup","mousemove","mouseout","mouseenter","mouseleave","mouseover"];function C(D){if(w.status.disabled===true){return}clearTimeout(w.timers.inactive);w.timers.inactive=setTimeout(function(){f(v).each(function(){y.unbind(this+".qtip-inactive");w.elements.content.unbind(this+".qtip-inactive")});w.hide(D)},w.options.hide.delay)}}else{if(w.options.hide.fixed===true){w.elements.tooltip.bind("mouseover.qtip",function(){if(w.status.disabled===true){return}clearTimeout(w.timers.hide)})}}function B(D){if(w.status.disabled===true){return}if(w.options.hide.when.event=="inactive"){f(v).each(function(){y.bind(this+".qtip-inactive",C);w.elements.content.bind(this+".qtip-inactive",C)});C()}clearTimeout(w.timers.show);clearTimeout(w.timers.hide);w.timers.show=setTimeout(function(){w.show(D)},w.options.show.delay)}function A(D){if(w.status.disabled===true){return}if(w.options.hide.fixed===true&&w.options.hide.when.event.search(/mouse(out|leave)/i)!==-1&&f(D.relatedTarget).parents("div.qtip[qtip]").length>0){D.stopPropagation();D.preventDefault();clearTimeout(w.timers.hide);return false}clearTimeout(w.timers.show);clearTimeout(w.timers.hide);w.elements.tooltip.stop(true,true);w.timers.hide=setTimeout(function(){w.hide(D)},w.options.hide.delay)}if((w.options.show.when.target.add(w.options.hide.when.target).length===1&&w.options.show.when.event==w.options.hide.when.event&&w.options.hide.when.event!=="inactive")||w.options.hide.when.event=="unfocus"){w.cache.toggle=0;z.bind(w.options.show.when.event+".qtip",function(D){if(w.cache.toggle==0){B(D)}else{A(D)}})}else{z.bind(w.options.show.when.event+".qtip",B);if(w.options.hide.when.event!=="inactive"){y.bind(w.options.hide.when.event+".qtip",A)}}if(w.options.position.type.search(/(fixed|absolute)/)!==-1){w.elements.tooltip.bind("mouseover.qtip",w.focus)}if(w.options.position.target==="mouse"&&w.options.position.type!=="static"){z.bind("mousemove.qtip",function(D){w.cache.mouse={x:D.pageX,y:D.pageY};if(w.status.disabled===false&&w.options.position.adjust.mouse===true&&w.options.position.type!=="static"&&w.elements.tooltip.css("display")!=="none"){w.updatePosition(D)}})}}function q(y,z,E){var D,v,B,C,w,A;D=this;if(E.corner=="center"){return z.position}v=f.extend({},y);C={x:false,y:false};w={left:(v.left<f.fn.qtip.cache.screen.scroll.left),right:(v.left+E.dimensions.width+2>=f.fn.qtip.cache.screen.width+f.fn.qtip.cache.screen.scroll.left),top:(v.top<f.fn.qtip.cache.screen.scroll.top),bottom:(v.top+E.dimensions.height+2>=f.fn.qtip.cache.screen.height+f.fn.qtip.cache.screen.scroll.top)};B={left:(w.left&&(E.corner.search(/right/i)!=-1||(E.corner.search(/right/i)==-1&&!w.right))),right:(w.right&&(E.corner.search(/left/i)!=-1||(E.corner.search(/left/i)==-1&&!w.left))),top:(w.top&&E.corner.search(/top/i)==-1),bottom:(w.bottom&&E.corner.search(/bottom/i)==-1)};if(B.left){if(D.options.position.target!=="mouse"){v.left=z.position.left+z.dimensions.width}else{v.left=D.cache.mouse.x}C.x="Left"}else{if(B.right){if(D.options.position.target!=="mouse"){v.left=z.position.left-E.dimensions.width}else{v.left=D.cache.mouse.x-E.dimensions.width}C.x="Right"}}if(B.top){if(D.options.position.target!=="mouse"){v.top=z.position.top+z.dimensions.height}else{v.top=D.cache.mouse.y}C.y="top"}else{if(B.bottom){if(D.options.position.target!=="mouse"){v.top=z.position.top-E.dimensions.height}else{v.top=D.cache.mouse.y-E.dimensions.height}C.y="bottom"}}if(v.left<0){v.left=y.left;C.x=false}if(v.top<0){v.top=y.top;C.y=false}if(D.options.style.tip.corner!==false){v.corner=new String(E.corner);if(C.x!==false){v.corner=v.corner.replace(/Left|Right|Middle/,C.x)}if(C.y!==false){v.corner=v.corner.replace(/top|bottom/,C.y)}if(v.corner!==D.elements.tip.attr("rel")){e.call(D,v.corner)}}return v}function t(y,w){var z,v;z=f.extend(true,{},y);for(v in z){if(w===true&&v.search(/(tip|classes)/i)!==-1){delete z[v]}else{if(!w&&v.search(/(width|border|tip|title|classes|user)/i)!==-1){delete z[v]}}}return z}function c(v){if(typeof v.tip!=="object"){v.tip={corner:v.tip}}if(typeof v.tip.size!=="object"){v.tip.size={width:v.tip.size,height:v.tip.size}}if(typeof v.border!=="object"){v.border={width:v.border}}if(typeof v.width!=="object"){v.width={value:v.width}}if(typeof v.width.max=="string"){v.width.max=parseInt(v.width.max.replace(/([0-9]+)/i,"$1"))}if(typeof v.width.min=="string"){v.width.min=parseInt(v.width.min.replace(/([0-9]+)/i,"$1"))}if(typeof v.tip.size.x=="number"){v.tip.size.width=v.tip.size.x;delete v.tip.size.x}if(typeof v.tip.size.y=="number"){v.tip.size.height=v.tip.size.y;delete v.tip.size.y}return v}function a(){var v,w,y,B,z,A;v=this;y=[true,{}];for(w=0;w<arguments.length;w++){y.push(arguments[w])}B=[f.extend.apply(f,y)];while(typeof B[0].name=="string"){B.unshift(c(f.fn.qtip.styles[B[0].name]))}B.unshift(true,{classes:{tooltip:"qtip-"+(arguments[0].name||"defaults")}},f.fn.qtip.styles.defaults);z=f.extend.apply(f,B);A=(f.browser.msie)?1:0;z.tip.size.width+=A;z.tip.size.height+=A;if(z.tip.size.width%2>0){z.tip.size.width+=1}if(z.tip.size.height%2>0){z.tip.size.height+=1}if(z.tip.corner===true){z.tip.corner=(v.options.position.corner.tooltip==="center")?false:v.options.position.corner.tooltip}return z}function b(z,y,w){var v={bottomRight:[[0,0],[y,w],[y,0]],bottomLeft:[[0,0],[y,0],[0,w]],topRight:[[0,w],[y,0],[y,w]],topLeft:[[0,0],[0,w],[y,w]],topMiddle:[[0,w],[y/2,0],[y,w]],bottomMiddle:[[0,0],[y,0],[y/2,w]],rightMiddle:[[0,0],[y,w/2],[0,w]],leftMiddle:[[y,0],[y,w],[0,w/2]]};v.leftTop=v.bottomRight;v.rightTop=v.bottomLeft;v.leftBottom=v.topRight;v.rightBottom=v.topLeft;return v[z]}function g(v){var w;if(f("<canvas>").get(0).getContext){w={topLeft:[v,v],topRight:[0,v],bottomLeft:[v,0],bottomRight:[0,0]}}else{if(f.browser.msie){w={topLeft:[-90,90,0],topRight:[-90,90,-v],bottomLeft:[90,270,0],bottomRight:[90,270,-v]}}}return w}function m(){var v,w,y;v=this;y=v.getDimensions();w='<iframe class="qtip-bgiframe" frameborder="0" tabindex="-1" src="javascript:false" style="display:block; position:absolute; z-index:-1; filter:alpha(opacity=\'0\'); border: 1px solid red; height:'+y.height+"px; width:"+y.width+'px" />';v.elements.bgiframe=v.elements.wrapper.prepend(w).children(".qtip-bgiframe:first")}f(document).ready(function(){f.fn.qtip.cache={screen:{scroll:{left:f(window).scrollLeft(),top:f(window).scrollTop()},width:f(window).width(),height:f(window).height()}};var v;f(window).bind("resize scroll",function(w){clearTimeout(v);v=setTimeout(function(){if(w.type==="scroll"){f.fn.qtip.cache.screen.scroll={left:f(window).scrollLeft(),top:f(window).scrollTop()}}else{f.fn.qtip.cache.screen.width=f(window).width();f.fn.qtip.cache.screen.height=f(window).height()}for(i=0;i<f.fn.qtip.interfaces.length;i++){var y=f.fn.qtip.interfaces[i];if(y.status.rendered===true&&(y.options.position.type!=="static"||y.options.position.adjust.scroll&&w.type==="scroll"||y.options.position.adjust.resize&&w.type==="resize")){y.updatePosition(w,true)}}},100)});f(document).bind("mousedown.qtip",function(w){if(f(w.target).parents("div.qtip").length===0){f(".qtip[unfocus]").each(function(){var y=f(this).qtip("api");if(f(this).is(":visible")&&!y.status.disabled&&f(w.target).add(y.elements.target).length>1){y.hide(w)}})}})});f.fn.qtip.interfaces=[];f.fn.qtip.log={error:function(){return this}};f.fn.qtip.constants={};f.fn.qtip.defaults={content:{prerender:false,text:false,url:false,data:null,title:{text:false,button:false}},position:{target:false,corner:{target:"bottomRight",tooltip:"topLeft"},adjust:{x:0,y:0,mouse:true,screen:false,scroll:true,resize:true},type:"absolute",container:false},show:{when:{target:false,event:"mouseover"},effect:{type:"fade",length:100},delay:140,solo:false,ready:false},hide:{when:{target:false,event:"mouseout"},effect:{type:"fade",length:100},delay:0,fixed:false},api:{beforeRender:function(){},onRender:function(){},beforePositionUpdate:function(){},onPositionUpdate:function(){},beforeShow:function(){},onShow:function(){},beforeHide:function(){},onHide:function(){},beforeContentUpdate:function(){},onContentUpdate:function(){},beforeContentLoad:function(){},onContentLoad:function(){},beforeTitleUpdate:function(){},onTitleUpdate:function(){},beforeDestroy:function(){},onDestroy:function(){},beforeFocus:function(){},onFocus:function(){}}};f.fn.qtip.styles={defaults:{background:"white",color:"#111",overflow:"hidden",textAlign:"left",width:{min:0,max:250},padding:"5px 9px",border:{width:1,radius:0,color:"#d3d3d3"},tip:{corner:false,color:false,size:{width:13,height:13},opacity:1},title:{background:"#e1e1e1",fontWeight:"bold",padding:"7px 12px"},button:{cursor:"pointer"},classes:{target:"",tip:"qtip-tip",title:"qtip-title",button:"qtip-button",content:"qtip-content",active:"qtip-active"}},cream:{border:{width:3,radius:0,color:"#F9E98E"},title:{background:"#F0DE7D",color:"#A27D35"},background:"#FBF7AA",color:"#A27D35",classes:{tooltip:"qtip-cream"}},light:{border:{width:3,radius:0,color:"#E2E2E2"},title:{background:"#f1f1f1",color:"#454545"},background:"white",color:"#454545",classes:{tooltip:"qtip-light"}},dark:{border:{width:3,radius:0,color:"#303030"},title:{background:"#404040",color:"#f3f3f3"},background:"#505050",color:"#f3f3f3",classes:{tooltip:"qtip-dark"}},red:{border:{width:3,radius:0,color:"#CE6F6F"},title:{background:"#f28279",color:"#9C2F2F"},background:"#F79992",color:"#9C2F2F",classes:{tooltip:"qtip-red"}},green:{border:{width:3,radius:0,color:"#A9DB66"},title:{background:"#b9db8c",color:"#58792E"},background:"#CDE6AC",color:"#58792E",classes:{tooltip:"qtip-green"}},blue:{border:{width:3,radius:0,color:"#ADD9ED"},title:{background:"#D0E9F5",color:"#5E99BD"},background:"#E5F6FE",color:"#4D9FBF",classes:{tooltip:"qtip-blue"}}}})(jQuery);(function($){$.template=function(html,options){return new $.template.instance(html,options)};$.template.instance=function(html,options){if(options&&options.regx){options.regx=this.regx[options.regx]}this.options=$.extend({compile:false,regx:this.regx.standard},options||{});this.html=html;if(this.options.compile){this.compile()}this.isTemplate=true};$.template.regx=$.template.instance.prototype.regx={jsp:/\$\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,ext:/\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,jtemplates:/\{\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}\}/g};$.template.regx.standard=$.template.regx.jsp;$.template.helpers=$.template.instance.prototype.helpers={substr:function(value,start,length){return String(value).substr(start,length)}};$.extend($.template.instance.prototype,{apply:function(values){if(this.options.compile){return this.compiled(values)}else{var tpl=this;var fm=this.helpers;var fn=function(m,name,format,args){if(format){if(format.substr(0,5)=="this."){return tpl.call(format.substr(5),values[name],values)}else{if(args){var re=/^\s*['"](.*)["']\s*$/;args=args.split(",");for(var i=0,len=args.length;i<len;i++){args[i]=args[i].replace(re,"$1")}args=[values[name]].concat(args)}else{args=[values[name]]}return fm[format].apply(fm,args)}}else{return values[name]!==undefined?values[name]:""}};return this.html.replace(this.options.regx,fn)}},compile:function(){var sep=$.browser.mozilla?"+":",";var fm=this.helpers;var fn=function(m,name,format,args){if(format){args=args?","+args:"";if(format.substr(0,5)!="this."){format="fm."+format+"("}else{format='this.call("'+format.substr(5)+'", ';args=", values"}}else{args="";format="(values['"+name+"'] == undefined ? '' : "}return"'"+sep+format+"values['"+name+"']"+args+")"+sep+"'"};var body;if($.browser.mozilla){body="this.compiled = function(values){ return '"+this.html.replace(/\\/g,"\\\\").replace(/(\r\n|\n)/g,"\\n").replace(/'/g,"\\'").replace(this.options.regx,fn)+"';};"}else{body=["this.compiled = function(values){ return ['"];body.push(this.html.replace(/\\/g,"\\\\").replace(/(\r\n|\n)/g,"\\n").replace(/'/g,"\\'").replace(this.options.regx,fn));body.push("'].join('');};");body=body.join("")}eval(body);return this}});var $_old={domManip:$.fn.domManip,text:$.fn.text,html:$.fn.html};$.fn.domManip=function(args,table,reverse,callback){if(args[0].isTemplate){args[0]=args[0].apply(args[1]);delete args[1]}var r=$_old.domManip.apply(this,arguments);return r};$.fn.html=function(value,o){if(value&&value.isTemplate){var value=value.apply(o)}var r=$_old.html.apply(this,[value]);return r};$.fn.text=function(value,o){if(value&&value.isTemplate){var value=value.apply(o)}var r=$_old.text.apply(this,[value]);return r}})(jQuery);jQuery.url=function(){var e={};var b={};var d={url:window.location,strictMode:false,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};var c=function(){str=decodeURI(d.url);var j=d.parser[d.strictMode?"strict":"loose"].exec(str);var o={};var n=14;while(n--){o[d.key[n]]=j[n]||""}o[d.q.name]={};o[d.key[12]].replace(d.q.parser,function(p,m,q){if(m){o[d.q.name][m]=q}});return o};var f=function(j){if(!b.length){a()}if(j=="base"){if(b.port!==null&&b.port!==""){return b.protocol+"://"+b.host+":"+b.port+"/"}else{return b.protocol+"://"+b.host+"/"}}return(b[j]==="")?null:b[j]};var h=function(j){if(!b.length){a()}return(b.queryKey[j]===null)?null:b.queryKey[j]};var a=function(){b=c();g()};var g=function(){var j=b.path;e=[];e=b.path.length==1?{}:(j.charAt(j.length-1)=="/"?j.substring(1,j.length-1):path=j.substring(1)).split("/")};return{setMode:function(j){strictMode=j=="strict"?true:false;return this},setUrl:function(j){d.url=j===undefined?window.location:j;a();return this},segment:function(j){if(!b.length){a()}if(j===undefined){return e.length}return(e[j]===""||e[j]===undefined)?null:e[j]},attr:f,param:h}}();(function(a){a.extend(a.expr[":"],{icontains:function(c,d,b){return(c.textContent||c.innerText||jQuery(c).text()||"").toLowerCase().indexOf(b[3].toLowerCase())>=0}});a.iterators={getText:function(){return a(this).text()},parseInt:function(b){return parseInt(b,10)}};a.extend({range:function(){if(!arguments.length){return[]}var f,b,g;if(arguments.length==1){f=0;b=arguments[0]-1;g=1}else{f=arguments[0];b=arguments[1]-1;g=arguments[2]||1}if(g<0&&f>=b){g*=-1;var e=f;f=b;b=e;f+=((b-f)%g)}var c=[];for(var d=f;d<=b;d+=g){c.push(d)}return c},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38},keyIs:function(b,c){return parseInt(a.keyCode[b.toUpperCase()],10)==parseInt((typeof(c)=="number")?c:c.keyCode,10)},keys:function(b){var c=[];for(k in b){c.push(k)}return c},redirect:function(b){window.location.href=b;return b},stop:function(d,c,b){if(c){d.preventDefault()}if(b){d.stopPropagation()}return c&&false||true},basename:function(c){var b=c.split("/");return b[b.length]===""&&s||b.slice(0,b.length).join("/")},filename:function(b){return b.split("/").pop()},filesizeformat:function(d,e){var c=parseInt(d,10);var f=e||["byte","bytes","KB","MB","GB"];if(isNaN(c)||c===0){return"0 "+f[0]}if(c==1){return"1 "+f[0]}if(c<1024){return c.toFixed(2)+" "+f[1]}if(c<1048576){return(c/1024).toFixed(2)+" "+f[2]}if(c<1073741824){return(c/1048576).toFixed(2)+" "+f[3]}else{return(c/1073741824).toFixed(2)+" "+f[4]}},fileExtension:function(b){var c=b.split(".");return c[c.length-1]||false},isString:function(b){return typeof(b)=="string"&&true||false},isRegExp:function(b){return b&&b.constructor.toString().indexOf("RegExp()")!=-1||false},isObject:function(b){return(typeof(b)=="object")},toCurrency:function(b){b=parseFloat(b,10).toFixed(2);return(b=="NaN")?"0.00":b},pxToEm:function(c,d){d=jQuery.extend({scope:"body",reverse:false},d);var g=(c==="")?0:parseFloat(c);var f;var e=function(){var j=document.documentElement;return self.innerWidth||(j&&j.clientWidth)||document.body.clientWidth};if(d.scope=="body"&&a.browser.msie&&(parseFloat(a("body").css("font-size"))/e()).toFixed(1)>0){var h=function(){return(parseFloat(a("body").css("font-size"))/e()).toFixed(3)*16};f=h()}else{f=parseFloat(jQuery(d.scope).css("font-size"))}var b=(d.reverse===true)?(g*f).toFixed(2)+"px":(g/f).toFixed(2)+"em";return b}});a.extend(a.fn,{type:function(){try{return a(this).get(0).nodeName.toLowerCase()}catch(b){return false}},selectRange:function(d,b){if(a(this).get(0).createTextRange){var c=a(this).get(0).createTextRange();c.collapse(true);c.moveEnd("character",b);c.moveStart("character",d);c.select()}else{if(a(this).get(0).setSelectionRange){a(this).bind("focus",function(f){f.preventDefault()}).get(0).setSelectionRange(d,b)}}return a(this)},equalHeights:function(b){a(this).each(function(){var c=0;a(this).children().each(function(d){if(a(this).height()>c){c=a(this).height()}});if(!b||!a.pxToEm){c=a.pxToEm(c)}if(a.browser.msie&&a.browser.version==6){a(this).children().css({height:c})}a(this).children().css({"min-height":c})});return this},delay:function(b,c){jQuery.fx.step.delay=function(){};return this.animate({delay:1},b,c)}})})(jQuery);(function($){var strings={strConversion:{__repr:function(i){switch(this.__getType(i)){case"array":case"date":case"number":return i.toString();case"object":var o=[];for(x=0;x<i.length;i++){o.push(i+": "+this.__repr(i[x]))}return o.join(", ");case"string":return i;default:return i}},__getType:function(i){if(!i||!i.constructor){return typeof(i)}var match=i.constructor.toString().match(/Array|Number|String|Object|Date/);return match&&match[0].toLowerCase()||typeof(i)},__pad:function(str,l,s,t){var p=s||" ";var o=str;if(l-str.length>0){o=new Array(Math.ceil(l/p.length)).join(p).substr(0,t=!t?l:t==1?0:Math.ceil(l/2))+str+p.substr(0,l-t)}return o},__getInput:function(arg,args){var key=arg.getKey();switch(this.__getType(args)){case"object":var keys=key.split(".");var obj=args;for(var subkey=0;subkey<keys.length;subkey++){obj=obj[keys[subkey]]}if(typeof(obj)!="undefined"){if(strings.strConversion.__getType(obj)=="array"){return arg.getFormat().match(/\.\*/)&&obj[1]||obj}return obj}else{}break;case"array":key=parseInt(key,10);if(arg.getFormat().match(/\.\*/)&&typeof args[key+1]!="undefined"){return args[key+1]}else{if(typeof args[key]!="undefined"){return args[key]}else{return key}}break}return"{"+key+"}"},__formatToken:function(token,args){var arg=new Argument(token,args);return strings.strConversion[arg.getFormat().slice(-1)](this.__getInput(arg,args),arg)},d:function(input,arg){var o=parseInt(input,10);var p=arg.getPaddingLength();if(p){return this.__pad(o.toString(),p,arg.getPaddingString(),0)}else{return o}},i:function(input,args){return this.d(input,args)},o:function(input,arg){var o=input.toString(8);if(arg.isAlternate()){o=this.__pad(o,o.length+1,"0",0)}return this.__pad(o,arg.getPaddingLength(),arg.getPaddingString(),0)},u:function(input,args){return Math.abs(this.d(input,args))},x:function(input,arg){var o=parseInt(input,10).toString(16);o=this.__pad(o,arg.getPaddingLength(),arg.getPaddingString(),0);return arg.isAlternate()?"0x"+o:o},X:function(input,arg){return this.x(input,arg).toUpperCase()},e:function(input,arg){return parseFloat(input,10).toExponential(arg.getPrecision())},E:function(input,arg){return this.e(input,arg).toUpperCase()},f:function(input,arg){return this.__pad(parseFloat(input,10).toFixed(arg.getPrecision()),arg.getPaddingLength(),arg.getPaddingString(),0)},F:function(input,args){return this.f(input,args)},g:function(input,arg){var o=parseFloat(input,10);return(o.toString().length>6)?Math.round(o.toExponential(arg.getPrecision())):o},G:function(input,args){return this.g(input,args)},c:function(input,args){var match=input.match(/\w|\d/);return match&&match[0]||""},r:function(input,args){return this.__repr(input)},s:function(input,args){return input.toString&&input.toString()||""+input}},format:function(str,args){var end=0;var start=0;var match=false;var buffer=[];var token="";var tmp=(str||"").split("");for(start=0;start<tmp.length;start++){if(tmp[start]=="{"&&tmp[start+1]!="{"){end=str.indexOf("}",start);token=tmp.slice(start+1,end).join("");if(tmp[start-1]!="{"&&tmp[end+1]!="}"){var tokenArgs=(typeof arguments[1]!="object")?arguments2Array(arguments,2):args||[];buffer.push(strings.strConversion.__formatToken(token,tokenArgs))}else{buffer.push(token)}}else{if(start>end||buffer.length<1){buffer.push(tmp[start])}}}return(buffer.length>1)?buffer.join(""):buffer[0]},calc:function(str,args){return eval(format(str,args))},repeat:function(s,n){return new Array(n+1).join(s)},UTF8encode:function(s){return unescape(encodeURIComponent(s))},UTF8decode:function(s){return decodeURIComponent(escape(s))},tpl:function(){var out="";var render=true;if(arguments.length==2&&$.isArray(arguments[1])){this[arguments[0]]=arguments[1].join("");return $(this[arguments[0]])}if(arguments.length==2&&$.isString(arguments[1])){this[arguments[0]]=arguments[1];return $(this[arguments[0]])}if(arguments.length==1){return $(this[arguments[0]])}if(arguments.length==2&&arguments[1]==false){return this[arguments[0]]}if(arguments.length==2&&$.isObject(arguments[1])){return $($.format(this[arguments[0]],arguments[1]))}if(arguments.length==3&&$.isObject(arguments[1])){return(arguments[2]==true)?$.format(this[arguments[0]],arguments[1]):$($.format(this[arguments[0]],arguments[1]))}}};var Argument=function(arg,args){this.__arg=arg;this.__args=args;this.__max_precision=parseFloat("1."+(new Array(32)).join("1"),10).toString().length-3;this.__def_precision=6;this.getString=function(){return this.__arg};this.getKey=function(){return this.__arg.split(":")[0]};this.getFormat=function(){var match=this.getString().split(":");return(match&&match[1])?match[1]:"s"};this.getPrecision=function(){var match=this.getFormat().match(/\.(\d+|\*)/g);if(!match){return this.__def_precision}else{match=match[0].slice(1);if(match!="*"){return parseInt(match,10)}else{if(strings.strConversion.__getType(this.__args)=="array"){return this.__args[1]&&this.__args[0]||this.__def_precision}else{if(strings.strConversion.__getType(this.__args)=="object"){return this.__args[this.getKey()]&&this.__args[this.getKey()][0]||this.__def_precision}else{return this.__def_precision}}}}};this.getPaddingLength=function(){var match=false;if(this.isAlternate()){match=this.getString().match(/0?#0?(\d+)/);if(match&&match[1]){return parseInt(match[1],10)}}match=this.getString().match(/(0|\.)(\d+|\*)/g);return match&&parseInt(match[0].slice(1),10)||0};this.getPaddingString=function(){var o="";if(this.isAlternate()){o=" "}if(this.getFormat().match(/#0|0#|^0|\.\d+/)){o="0"}return o};this.getFlags=function(){var match=this.getString().matc(/^(0|\#|\-|\+|\s)+/);return match&&match[0].split("")||[]};this.isAlternate=function(){return !!this.getFormat().match(/^0?#/)}};var arguments2Array=function(args,shift){var o=[];for(l=args.length,x=(shift||0)-1;x<l;x++){o.push(args[x])}return o};$.extend(strings)})(jQuery);(function(c){var d=window.location.hash;var a=[];var b={};c.extend({anchorHandler:{apply:function(){c.map(a,function(f){var e=d.match(f.r)&&d.match(f.r)[0]||false;if(e){f.cb.apply(c("a[href*="+e+"]").get(0),[f.r,d||""])}});return c.anchorHandler},add:function(g,h,e){var f=c.extend({handleClick:true,preserveHash:true},e);if(f.handleClick){c("a[href*=#]").each(function(m,j){if(j.href.match(g)){c(j).bind("click.anchorHandler",function(){if(f.preserveHash){window.location.hash=j.hash}return h.apply(this,[g,j.href])})}})}a.push({r:g,cb:h});c(c.anchorHandler.apply);return c.anchorHandler}}})})(jQuery);jQuery.cookie=function(b,j,o){if(typeof j!="undefined"){o=o||{};if(j===null){j="";o.expires=-1}var e="";if(o.expires&&(typeof o.expires=="number"||o.expires.toUTCString)){var f;if(typeof o.expires=="number"){f=new Date();f.setTime(f.getTime()+(o.expires*24*60*60*1000))}else{f=o.expires}e="; expires="+f.toUTCString()}var n=o.path?"; path="+(o.path):"";var g=o.domain?"; domain="+(o.domain):"";var a=o.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,n,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var m=document.cookie.split(";");for(var h=0;h<m.length;h++){var c=jQuery.trim(m[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}};(function(b){function a(d,o){var g=function(q,p){var p=p||new Date();if(p>=q){return true}var r={};var t=Math.floor((q.getTime()-p.getTime())/1000);r.days=Math.floor(t/86400);t%=86400;r.hours=Math.floor(t/3600);t%=3600;r.minutes=Math.floor(t/60);t%=60;r.seconds=t;r.years=Math.floor(r.days/365);r.months=Math.floor(r.days/30);r.weeks=Math.floor(r.days/7);return r};var c=function(p){var q=new Date(p.getFullYear(),0,1);return Math.ceil((((p-q)/86400000)+q.getDay())/7)};var o=b.extend({date:new Date(),modifiers:[],interval:1000,msgFormat:"%d [day|days] %hh %mm %ss",msgNow:"Now !"},o);var h={y:new RegExp("\\%y(.+?)\\[(\\w+)\\|(\\w+)\\]","g"),M:new RegExp("\\%M(.+?)\\[(\\w+)\\|(\\w+)\\]","g"),w:new RegExp("\\%w(.+?)\\[(\\w+)\\|(\\w+)\\]","g"),d:new RegExp("\\%d(.+?)\\[(\\w+)\\|(\\w+)\\]","g"),h:new RegExp("\\%h(.+?)\\[(\\w+)\\|(\\w+)\\]","g"),m:new RegExp("\\%m(.+?)\\[(\\w+)\\|(\\w+)\\]","g"),s:new RegExp("\\%s(.+?)\\[(\\w+)\\|(\\w+)\\]","g")};var n=function(r,p,q){return(!h[p])?"":r.match(/\[|\]/g)&&(r.replace(h[p],q+"$1"+((parseInt(q,10)<2)?"$2":"$3"))||"")||r.replace("%"+p,q)};var m=function(r,p){var q=r;q=n(q,"y",p.years);q=n(q,"M",p.months);q=n(q,"w",p.weeks);q=n(q,"d",p.days);q=n(q,"h",p.hours);q=n(q,"m",p.minutes);q=n(q,"s",p.seconds);return q};var f=function(){var p=g(e.date);if(p===true){e.stop();clearInterval(e.id);b(e.el).html(o.msgNow);return true}else{b(e.el).text(m(o.msgFormat,p))}};var j=function(v,u){if(v.length===0){return u}var q=/^([+-]\d+)([yMdhms])$/;var t={s:1000,m:60*1000,h:60*60*1000,d:24*60*60*1000,M:30*24*60*60*1000,y:365*24*60*60*1000};var p=0;for(var w=0,y=v.length;w<y;++w){var r=v[w].match(q);if(r!==null){p+=parseInt(r[1],10)*t[r[2]]}}return new Date(u.getTime()+p)};var e={id:setInterval(f,o.interval),el:d,start:function(){return new a(b(this.el),o)},stop:function(){return clearInterval(this.id)},date:j(o.modifiers,o.date)};b(d).data("countdown",e);f();return b(d).data("countdown")}b.fn.countdown=function(c){if(this.get(0)){return new a(this.get(0),c)}}})(jQuery);(function(g){var a="2.24";var b=g.browser.msie&&/MSIE 6.0/.test(navigator.userAgent);function d(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments,""))}}g.fn.cycle=function(j){return this.each(function(){if(j===undefined||j===null){j={}}if(j.constructor==String){switch(j){case"stop":if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;g(this).data("cycle.opts","");return;case"pause":this.cyclePause=1;return;case"resume":this.cyclePause=0;return;default:j={fx:j}}}else{if(j.constructor==Number){var q=j;j=g(this).data("cycle.opts");if(!j){d("options not found, can not advance slide");return}if(q<0||q>=j.elements.length){d("invalid slide index: "+q);return}j.nextSlide=q;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);this.cycleTimeout=0}e(j.elements,j,1,1);return}}if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var u=g(this);var r=j.slideExpr?g(j.slideExpr,this):u.children();var n=r.get();if(n.length<2){d("terminating; too few slides: "+n.length);return}var m=g.extend({},g.fn.cycle.defaults,j||{},g.metadata?u.metadata():g.meta?u.data():{});if(m.autostop){m.countdown=m.autostopCount||n.length}u.data("cycle.opts",m);m.container=this;m.elements=n;m.before=m.before?[m.before]:[];m.after=m.after?[m.after]:[];m.after.unshift(function(){m.busy=0});if(m.continuous){m.after.push(function(){e(n,m,0,!m.rev)})}if(b&&m.cleartype&&!m.cleartypeNoBg){c(r)}var w=this.className;m.width=parseInt((w.match(/w:(\d+)/)||[])[1])||m.width;m.height=parseInt((w.match(/h:(\d+)/)||[])[1])||m.height;m.timeout=parseInt((w.match(/t:(\d+)/)||[])[1])||m.timeout;if(u.css("position")=="static"){u.css("position","relative")}if(m.width){u.width(m.width)}if(m.height&&m.height!="auto"){u.height(m.height)}if(m.random){m.randomMap=[];for(var o=0;o<n.length;o++){m.randomMap.push(o)}m.randomMap.sort(function(z,y){return Math.random()-0.5});m.randomIndex=0;m.startingSlide=m.randomMap[0]}else{if(m.startingSlide>=n.length){m.startingSlide=0}}var p=m.startingSlide||0;r.css({position:"absolute",top:0,left:0}).hide().each(function(y){var A=p?y>=p?n.length-(y-p):p-y:n.length-y;g(this).css("z-index",A)});g(n[p]).css("opacity",1).show();if(g.browser.msie){n[p].style.removeAttribute("filter")}if(m.fit&&m.width){r.width(m.width)}if(m.fit&&m.height&&m.height!="auto"){r.height(m.height)}if(m.pause){u.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}var v=g.fn.cycle.transitions[m.fx];if(g.isFunction(v)){v(u,r,m)}else{if(m.fx!="custom"){d("unknown transition: "+m.fx)}}r.each(function(){var y=g(this);this.cycleH=(m.fit&&m.height)?m.height:y.height();this.cycleW=(m.fit&&m.width)?m.width:y.width()});m.cssBefore=m.cssBefore||{};m.animIn=m.animIn||{};m.animOut=m.animOut||{};r.not(":eq("+p+")").css(m.cssBefore);if(m.cssFirst){g(r[p]).css(m.cssFirst)}if(m.timeout){if(m.speed.constructor==String){m.speed={slow:600,fast:200}[m.speed]||400}if(!m.sync){m.speed=m.speed/2}while((m.timeout-m.speed)<250){m.timeout+=m.speed}}if(m.easing){m.easeIn=m.easeOut=m.easing}if(!m.speedIn){m.speedIn=m.speed}if(!m.speedOut){m.speedOut=m.speed}m.slideCount=n.length;m.currSlide=p;if(m.random){m.nextSlide=m.currSlide;if(++m.randomIndex==n.length){m.randomIndex=0}m.nextSlide=m.randomMap[m.randomIndex]}else{m.nextSlide=m.startingSlide>=(n.length-1)?0:m.startingSlide+1}var t=r[p];if(m.before.length){m.before[0].apply(t,[t,t,m,true])}if(m.after.length>1){m.after[1].apply(t,[t,t,m,true])}if(m.click&&!m.next){m.next=m.click}if(m.next){g(m.next).bind("click",function(){return f(n,m,m.rev?-1:1)})}if(m.prev){g(m.prev).bind("click",function(){return f(n,m,m.rev?1:-1)})}if(m.pager){h(n,m)}m.addSlide=function(z){var y=g(z),A=y[0];if(!m.autostopCount){m.countdown++}n.push(A);if(m.els){m.els.push(A)}m.slideCount=n.length;y.css("position","absolute").appendTo(u);if(b&&m.cleartype&&!m.cleartypeNoBg){c(y)}if(m.fit&&m.width){y.width(m.width)}if(m.fit&&m.height&&m.height!="auto"){r.height(m.height)}A.cycleH=(m.fit&&m.height)?m.height:y.height();A.cycleW=(m.fit&&m.width)?m.width:y.width();y.css(m.cssBefore);if(m.pager){g.fn.cycle.createPagerAnchor(n.length-1,A,g(m.pager),n,m)}if(typeof m.onAddSlide=="function"){m.onAddSlide(y)}};if(m.timeout||m.continuous){this.cycleTimeout=setTimeout(function(){e(n,m,0,!m.rev)},m.continuous?10:m.timeout+(m.delay||0))}})};function e(r,j,q,t){if(j.busy){return}var o=j.container,v=r[j.currSlide],u=r[j.nextSlide];if(o.cycleTimeout===0&&!q){return}if(!q&&!o.cyclePause&&((j.autostop&&(--j.countdown<=0))||(j.nowrap&&!j.random&&j.nextSlide<j.currSlide))){if(j.end){j.end(j)}return}if(q||!o.cyclePause){if(j.before.length){g.each(j.before,function(p,w){w.apply(u,[v,u,j,t])})}var m=function(){if(g.browser.msie&&j.cleartype){this.style.removeAttribute("filter")}g.each(j.after,function(p,w){w.apply(u,[v,u,j,t])})};if(j.nextSlide!=j.currSlide){j.busy=1;if(j.fxFn){j.fxFn(v,u,j,m,t)}else{if(g.isFunction(g.fn.cycle[j.fx])){g.fn.cycle[j.fx](v,u,j,m)}else{g.fn.cycle.custom(v,u,j,m)}}}if(j.random){j.currSlide=j.nextSlide;if(++j.randomIndex==r.length){j.randomIndex=0}j.nextSlide=j.randomMap[j.randomIndex]}else{var n=(j.nextSlide+1)==r.length;j.nextSlide=n?0:j.nextSlide+1;j.currSlide=n?r.length-1:j.nextSlide-1}if(j.pager){g.fn.cycle.updateActivePagerLink(j.pager,j.currSlide)}}if(j.timeout&&!j.continuous){o.cycleTimeout=setTimeout(function(){e(r,j,0,!j.rev)},j.timeout)}else{if(j.continuous&&o.cyclePause){o.cycleTimeout=setTimeout(function(){e(r,j,0,!j.rev)},10)}}}g.fn.cycle.updateActivePagerLink=function(j,m){g(j).find("a").removeClass("activeSlide").filter("a:eq("+m+")").addClass("activeSlide")};function f(j,m,q){var o=m.container,n=o.cycleTimeout;if(n){clearTimeout(n);o.cycleTimeout=0}if(m.random&&q<0){m.randomIndex--;if(--m.randomIndex==-2){m.randomIndex=j.length-2}else{if(m.randomIndex==-1){m.randomIndex=j.length-1}}m.nextSlide=m.randomMap[m.randomIndex]}else{if(m.random){if(++m.randomIndex==j.length){m.randomIndex=0}m.nextSlide=m.randomMap[m.randomIndex]}else{m.nextSlide=m.currSlide+q;if(m.nextSlide<0){if(m.nowrap){return false}m.nextSlide=j.length-1}else{if(m.nextSlide>=j.length){if(m.nowrap){return false}m.nextSlide=0}}}}d("nextSlide: "+m.nextSlide+"; randomIndex: "+m.randomIndex);if(m.prevNextClick&&typeof m.prevNextClick=="function"){m.prevNextClick(q>0,m.nextSlide,j[m.nextSlide])}e(j,m,1,q>=0);return false}function h(m,n){var j=g(n.pager);g.each(m,function(p,q){g.fn.cycle.createPagerAnchor(p,q,j,m,n)});g.fn.cycle.updateActivePagerLink(n.pager,n.startingSlide)}g.fn.cycle.createPagerAnchor=function(n,o,j,m,p){var q=(typeof p.pagerAnchorBuilder=="function")?g(p.pagerAnchorBuilder(n,o)):g('<a href="#">'+(n+1)+"</a>");if(q.parents("body").length==0){q.appendTo(j)}q.bind(p.pagerEvent,function(){p.nextSlide=n;var t=p.container,r=t.cycleTimeout;if(r){clearTimeout(r);t.cycleTimeout=0}if(typeof p.pagerClick=="function"){p.pagerClick(p.nextSlide,m[p.nextSlide])}e(m,p,1,p.currSlide<n);return false})};function c(n){function m(o){var o=parseInt(o).toString(16);return o.length<2?"0"+o:o}function j(q){for(;q&&q.nodeName.toLowerCase()!="html";q=q.parentNode){var o=g.css(q,"background-color");if(o.indexOf("rgb")>=0){var p=o.match(/\d+/g);return"#"+m(p[0])+m(p[1])+m(p[2])}if(o&&o!="transparent"){return o}}return"#ffffff"}n.each(function(){g(this).css("background-color",j(this))})}g.fn.cycle.custom=function(r,o,p,j){var q=g(r),n=g(o);n.css(p.cssBefore);var m=function(){n.animate(p.animIn,p.speedIn,p.easeIn,j)};q.animate(p.animOut,p.speedOut,p.easeOut,function(){if(p.cssAfter){q.css(p.cssAfter)}if(!p.sync){m()}});if(p.sync){m()}};g.fn.cycle.transitions={fade:function(m,n,j){n.not(":eq("+j.startingSlide+")").css("opacity",0);j.before.push(function(){g(this).show()});j.animIn={opacity:1};j.animOut={opacity:0};j.cssBefore={opacity:0};j.cssAfter={display:"none"}}};g.fn.cycle.ver=function(){return a};g.fn.cycle.defaults={fx:"fade",timeout:4000,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,pause:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:0,nowrap:0}})(jQuery);(function(a){a.fn.cycle.transitions.scrollUp=function(c,d,b){c.css("overflow","hidden");b.before.push(function(g,e,f){a(this).show();f.cssBefore.top=e.offsetHeight;f.animOut.top=0-g.offsetHeight});b.cssFirst={top:0};b.animIn={top:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.scrollDown=function(c,d,b){c.css("overflow","hidden");b.before.push(function(g,e,f){a(this).show();f.cssBefore.top=0-e.offsetHeight;f.animOut.top=g.offsetHeight});b.cssFirst={top:0};b.animIn={top:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.scrollLeft=function(c,d,b){c.css("overflow","hidden");b.before.push(function(g,e,f){a(this).show();f.cssBefore.left=e.offsetWidth;f.animOut.left=0-g.offsetWidth});b.cssFirst={left:0};b.animIn={left:0}};a.fn.cycle.transitions.scrollRight=function(c,d,b){c.css("overflow","hidden");b.before.push(function(g,e,f){a(this).show();f.cssBefore.left=0-e.offsetWidth;f.animOut.left=g.offsetWidth});b.cssFirst={left:0};b.animIn={left:0}};a.fn.cycle.transitions.scrollHorz=function(c,d,b){c.css("overflow","hidden").width();b.before.push(function(j,g,h,f){a(this).show();var e=j.offsetWidth,m=g.offsetWidth;h.cssBefore=f?{left:m}:{left:-m};h.animIn.left=0;h.animOut.left=f?-e:e;d.not(j).css(h.cssBefore)});b.cssFirst={left:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.scrollVert=function(c,d,b){c.css("overflow","hidden");b.before.push(function(m,g,h,f){a(this).show();var j=m.offsetHeight,e=g.offsetHeight;h.cssBefore=f?{top:-e}:{top:e};h.animIn.top=0;h.animOut.top=f?j:-j;d.not(m).css(h.cssBefore)});b.cssFirst={top:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.slideX=function(c,d,b){b.before.push(function(g,e,f){a(g).css("zIndex",1)});b.onAddSlide=function(e){e.hide()};b.cssBefore={zIndex:2};b.animIn={width:"show"};b.animOut={width:"hide"}};a.fn.cycle.transitions.slideY=function(c,d,b){b.before.push(function(g,e,f){a(g).css("zIndex",1)});b.onAddSlide=function(e){e.hide()};b.cssBefore={zIndex:2};b.animIn={height:"show"};b.animOut={height:"hide"}};a.fn.cycle.transitions.shuffle=function(e,f,d){var b=e.css("overflow","visible").width();f.css({left:0,top:0});d.before.push(function(){a(this).show()});d.speed=d.speed/2;d.random=0;d.shuffle=d.shuffle||{left:-b,top:15};d.els=[];for(var c=0;c<f.length;c++){d.els.push(f[c])}for(var c=0;c<d.startingSlide;c++){d.els.push(d.els.shift())}d.fxFn=function(o,m,n,g,j){var h=j?a(o):a(m);h.animate(n.shuffle,n.speedIn,n.easeIn,function(){j?n.els.push(n.els.shift()):n.els.unshift(n.els.pop());if(j){for(var q=0,p=n.els.length;q<p;q++){a(n.els[q]).css("z-index",p-q)}}else{var r=a(o).css("z-index");h.css("z-index",parseInt(r)+1)}h.animate({left:0,top:0},n.speedOut,n.easeOut,function(){a(j?this:o).hide();if(g){g()}})})};d.onAddSlide=function(g){g.hide()}};a.fn.cycle.transitions.turnUp=function(c,d,b){b.before.push(function(g,e,f){a(this).show();f.cssBefore.top=e.cycleH;f.animIn.height=e.cycleH});b.onAddSlide=function(e){e.hide()};b.cssFirst={top:0};b.cssBefore={height:0};b.animIn={top:0};b.animOut={height:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.turnDown=function(c,d,b){b.before.push(function(g,e,f){a(this).show();f.animIn.height=e.cycleH;f.animOut.top=g.cycleH});b.onAddSlide=function(e){e.hide()};b.cssFirst={top:0};b.cssBefore={top:0,height:0};b.animOut={height:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.turnLeft=function(c,d,b){b.before.push(function(g,e,f){a(this).show();f.cssBefore.left=e.cycleW;f.animIn.width=e.cycleW});b.onAddSlide=function(e){e.hide()};b.cssBefore={width:0};b.animIn={left:0};b.animOut={width:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.turnRight=function(c,d,b){b.before.push(function(g,e,f){a(this).show();f.animIn.width=e.cycleW;f.animOut.left=g.cycleW});b.onAddSlide=function(e){e.hide()};b.cssBefore={left:0,width:0};b.animIn={left:0};b.animOut={width:0};b.cssAfter={display:"none"}};a.fn.cycle.transitions.zoom=function(c,d,b){b.cssFirst={top:0,left:0};b.cssAfter={display:"none"};b.before.push(function(g,e,f){a(this).show();f.cssBefore={width:0,height:0,top:e.cycleH/2,left:e.cycleW/2};f.cssAfter={display:"none"};f.animIn={top:0,left:0,width:e.cycleW,height:e.cycleH};f.animOut={width:0,height:0,top:g.cycleH/2,left:g.cycleW/2};a(g).css("zIndex",2);a(e).css("zIndex",1)});b.onAddSlide=function(e){e.hide()}};a.fn.cycle.transitions.fadeZoom=function(c,d,b){b.before.push(function(g,e,f){f.cssBefore={width:0,height:0,opacity:1,left:e.cycleW/2,top:e.cycleH/2,zIndex:1};f.animIn={top:0,left:0,width:e.cycleW,height:e.cycleH}});b.animOut={opacity:0};b.cssAfter={zIndex:0}};a.fn.cycle.transitions.blindX=function(d,e,c){var b=d.css("overflow","hidden").width();e.show();c.before.push(function(h,f,g){a(h).css("zIndex",1)});c.cssBefore={left:b,zIndex:2};c.cssAfter={zIndex:1};c.animIn={left:0};c.animOut={left:b}};a.fn.cycle.transitions.blindY=function(d,e,c){var b=d.css("overflow","hidden").height();e.show();c.before.push(function(h,f,g){a(h).css("zIndex",1)});c.cssBefore={top:b,zIndex:2};c.cssAfter={zIndex:1};c.animIn={top:0};c.animOut={top:b}};a.fn.cycle.transitions.blindZ=function(e,f,d){var c=e.css("overflow","hidden").height();var b=e.width();f.show();d.before.push(function(j,g,h){a(j).css("zIndex",1)});d.cssBefore={top:c,left:b,zIndex:2};d.cssAfter={zIndex:1};d.animIn={top:0,left:0};d.animOut={top:c,left:b}};a.fn.cycle.transitions.growX=function(c,d,b){b.before.push(function(g,e,f){f.cssBefore={left:this.cycleW/2,width:0,zIndex:2};f.animIn={left:0,width:this.cycleW};f.animOut={left:0};a(g).css("zIndex",1)});b.onAddSlide=function(e){e.hide().css("zIndex",1)}};a.fn.cycle.transitions.growY=function(c,d,b){b.before.push(function(g,e,f){f.cssBefore={top:this.cycleH/2,height:0,zIndex:2};f.animIn={top:0,height:this.cycleH};f.animOut={top:0};a(g).css("zIndex",1)});b.onAddSlide=function(e){e.hide().css("zIndex",1)}};a.fn.cycle.transitions.curtainX=function(c,d,b){b.before.push(function(g,e,f){f.cssBefore={left:e.cycleW/2,width:0,zIndex:1,display:"block"};f.animIn={left:0,width:this.cycleW};f.animOut={left:g.cycleW/2,width:0};a(g).css("zIndex",2)});b.onAddSlide=function(e){e.hide()};b.cssAfter={zIndex:1,display:"none"}};a.fn.cycle.transitions.curtainY=function(c,d,b){b.before.push(function(g,e,f){f.cssBefore={top:e.cycleH/2,height:0,zIndex:1,display:"block"};f.animIn={top:0,height:this.cycleH};f.animOut={top:g.cycleH/2,height:0};a(g).css("zIndex",2)});b.onAddSlide=function(e){e.hide()};b.cssAfter={zIndex:1,display:"none"}};a.fn.cycle.transitions.cover=function(f,g,e){var j=e.direction||"left";var b=f.css("overflow","hidden").width();var c=f.height();e.before.push(function(m,d,h){h.cssBefore=h.cssBefore||{};h.cssBefore.zIndex=2;h.cssBefore.display="block";if(j=="right"){h.cssBefore.left=-b}else{if(j=="up"){h.cssBefore.top=c}else{if(j=="down"){h.cssBefore.top=-c}else{h.cssBefore.left=b}}}a(m).css("zIndex",1)});if(!e.animIn){e.animIn={left:0,top:0}}if(!e.animOut){e.animOut={left:0,top:0}}e.cssAfter=e.cssAfter||{};e.cssAfter.zIndex=2;e.cssAfter.display="none"};a.fn.cycle.transitions.uncover=function(f,g,e){var j=e.direction||"left";var b=f.css("overflow","hidden").width();var c=f.height();e.before.push(function(m,d,h){h.cssBefore.display="block";if(j=="right"){h.animOut.left=b}else{if(j=="up"){h.animOut.top=-c}else{if(j=="down"){h.animOut.top=c}else{h.animOut.left=-b}}}a(m).css("zIndex",2);a(d).css("zIndex",1)});e.onAddSlide=function(d){d.hide()};if(!e.animIn){e.animIn={left:0,top:0}}e.cssBefore=e.cssBefore||{};e.cssBefore.top=0;e.cssBefore.left=0;e.cssAfter=e.cssAfter||{};e.cssAfter.zIndex=1;e.cssAfter.display="none"};a.fn.cycle.transitions.toss=function(e,f,d){var b=e.css("overflow","visible").width();var c=e.height();d.before.push(function(j,g,h){a(j).css("zIndex",2);h.cssBefore.display="block";if(!h.animOut.left&&!h.animOut.top){h.animOut={left:b*2,top:-c/2,opacity:0}}else{h.animOut.opacity=0}});d.onAddSlide=function(g){g.hide()};d.cssBefore={left:0,top:0,zIndex:1,opacity:1};d.animIn={left:0};d.cssAfter={zIndex:2,display:"none"}};a.fn.cycle.transitions.wipe=function(q,n,e){var p=q.css("overflow","hidden").width();var j=q.height();e.cssBefore=e.cssBefore||{};var f;if(e.clip){if(/l2r/.test(e.clip)){f="rect(0px 0px "+j+"px 0px)"}else{if(/r2l/.test(e.clip)){f="rect(0px "+p+"px "+j+"px "+p+"px)"}else{if(/t2b/.test(e.clip)){f="rect(0px "+p+"px 0px 0px)"}else{if(/b2t/.test(e.clip)){f="rect("+j+"px "+p+"px "+j+"px 0px)"}else{if(/zoom/.test(e.clip)){var u=parseInt(j/2);var g=parseInt(p/2);f="rect("+u+"px "+g+"px "+u+"px "+g+"px)"}}}}}}e.cssBefore.clip=e.cssBefore.clip||f||"rect(0px 0px 0px 0px)";var m=e.cssBefore.clip.match(/(\d+)/g);var u=parseInt(m[0]),c=parseInt(m[1]),o=parseInt(m[2]),g=parseInt(m[3]);e.before.push(function(y,h,v){if(y==h){return}var d=a(y).css("zIndex",2);var b=a(h).css({zIndex:3,display:"block"});var t=1,r=parseInt((v.speedIn/13))-1;function w(){var A=u?u-parseInt(t*(u/r)):0;var B=g?g-parseInt(t*(g/r)):0;var C=o<j?o+parseInt(t*((j-o)/r||1)):j;var z=c<p?c+parseInt(t*((p-c)/r||1)):p;b.css({clip:"rect("+A+"px "+z+"px "+C+"px "+B+"px)"});(t++<=r)?setTimeout(w,13):d.css("display","none")}w()});e.cssAfter={};e.animIn={left:0};e.animOut={left:0}}})(jQuery);(function(a){a.extend(a.fn,{delayedObserver:function(d,c,b){return this.each(function(){var e=a(this);var f=b||{};e.data("oldval",e.val()).data("delay",c||0.5).data("condition",f.condition||function(){return(a(this).data("oldval")==a(this).val())}).data("callback",d)[(f.event||"keyup")](function(){if(e.data("condition").apply(e)){return}else{if(e.data("timer")){clearTimeout(e.data("timer"))}e.data("timer",setTimeout(function(){e.data("callback").apply(e)},e.data("delay")*1000));e.data("oldval",e.val())}})})}})})(jQuery);(function(){var b;b=jQuery.fn.flash=function(g,f,d,j){var h=d||b.replace;f=b.copy(b.pluginOptions,f);if(!b.hasFlash(f.version)){if(f.expressInstall&&b.hasFlash(6,0,65)){var e={flashvars:{MMredirectURL:location,MMplayerType:"PlugIn",MMdoctitle:jQuery("title").text()}}}else{if(f.update){h=j||b.update}else{return this}}}g=b.copy(b.htmlOptions,e,g);return this.each(function(){h.call(this,b.copy(g))})};b.copy=function(){var f={},e={};for(var g=0;g<arguments.length;g++){var d=arguments[g];if(d==undefined){continue}jQuery.extend(f,d);if(d.flashvars==undefined){continue}jQuery.extend(e,d.flashvars)}f.flashvars=e;return f};b.hasFlash=function(){if(/hasFlash\=true/.test(location)){return true}if(/hasFlash\=false/.test(location)){return false}var e=b.hasFlash.playerVersion().match(/\d+/g);var f=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String(b.pluginOptions.version).match(/\d+/g);for(var d=0;d<3;d++){e[d]=parseInt(e[d]||0);f[d]=parseInt(f[d]||0);if(e[d]<f[d]){return false}if(e[d]>f[d]){return true}}return true};b.hasFlash.playerVersion=function(){try{try{var d=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");try{d.AllowScriptAccess="always"}catch(f){return"6,0,0"}}catch(f){}return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version").replace(/\D+/g,",").match(/^,?(.+),?$/)[1]}catch(f){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1]}}catch(f){}}return"0,0,0"};b.htmlOptions={height:240,flashvars:{},pluginspage:"http://www.adobe.com/go/getflashplayer",src:"#",type:"application/x-shockwave-flash",width:320};b.pluginOptions={expressInstall:false,update:true,version:"6.0.65"};b.replace=function(d){this.innerHTML='<div class="alt">'+this.innerHTML+"</div>";jQuery(this).addClass("flash-replaced").prepend(b.transform(d))};b.update=function(e){var d=String(location).split("?");d.splice(1,0,"?hasFlash=true&");d=d.join("");var f='<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+d+'">Click here.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+"</span>";jQuery(this).addClass("flash-update").prepend(f)};function a(){var e="";for(var d in this){if(typeof this[d]!="function"){e+=d+'="'+this[d]+'" '}}return e}function c(){var e="";for(var d in this){if(typeof this[d]!="function"){e+=d+"="+encodeURIComponent(this[d])+"&"}}return e.replace(/&$/,"")}b.transform=function(d){d.toString=a;if(d.flashvars){d.flashvars.toString=c}return"<embed "+String(d)+"/>"};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}})();(function(a){a._i18n={trans:{},"default":"en",language:"en"};a.i18n=function(){var f=function(h,j){var g=false;if(a._i18n.trans[a._i18n.language]&&a._i18n.trans[a._i18n.language][h]&&a._i18n.trans[a._i18n.language][h][j]){g=a._i18n.trans[a._i18n.language][h][j]}else{if(a._i18n.trans[a._i18n["default"]]&&a._i18n.trans[a._i18n["default"]][h]&&a._i18n.trans[a._i18n["default"]][h][j]){g=a._i18n.trans[a._i18n["default"]][h][j]}}return g||j};if(arguments.length<2){a._i18n.language=arguments[0];return a._i18n.language}else{if(typeof(arguments[1])=="string"){var c=f(arguments[0],arguments[1]);if(arguments[2]&&typeof(arguments[2])=="object"){return a.format(c,arguments[2])}else{return c}}else{var b=arguments[0].split(".");var e=b[0];var d=b[1]||"jQuery";if(!a._i18n.trans[e]){a._i18n.trans[e]={};a._i18n.trans[e][d]=arguments[1]}else{a.extend(a._i18n.trans[e][d],arguments[1])}}}}})(jQuery);(function(b){b.fn.caret=function(e,c){if(this.length==0){return}if(typeof e=="number"){c=(typeof c=="number")?c:e;return this.each(function(){if(this.setSelectionRange){this.focus();this.setSelectionRange(e,c)}else{if(this.createTextRange){var f=this.createTextRange();f.collapse(true);f.moveEnd("character",c);f.moveStart("character",e);f.select()}}})}else{if(this[0].setSelectionRange){e=this[0].selectionStart;c=this[0].selectionEnd}else{if(document.selection&&document.selection.createRange){var d=document.selection.createRange();e=0-d.duplicate().moveStart("character",-100000);c=e+d.text.length}}return{begin:e,end:c}}};var a={"9":"[0-9]",a:"[A-Za-z]","*":"[A-Za-z0-9]"};b.mask={addPlaceholder:function(e,d){a[e]=d}};b.fn.unmask=function(){return this.trigger("unmask")};b.fn.mask=function(c,e){e=b.extend({placeholder:"_",completed:null},e);var d=new RegExp("^"+b.map(c.split(""),function(g,f){return a[g]||((/[A-Za-z0-9]/.test(g)?"":"\\")+g)}).join("")+"$");return this.each(function(){var r=b(this);var j=new Array(c.length);var m=new Array(c.length);var f=false;var q=false;var u=null;b.each(c.split(""),function(w,y){m[w]=(a[y]==null);j[w]=m[w]?y:e.placeholder;if(!m[w]&&u==null){u=w}});function t(){h();o();setTimeout(function(){b(r[0]).caret(f?c.length:u)},0)}function n(y){var z=b(this).caret();var w=y.keyCode;q=(w<16||(w>16&&w<32)||(w>32&&w<41));if((z.begin-z.end)!=0&&(!q||w==8||w==46)){g(z.begin,z.end)}if(w==8){while(z.begin-->=0){if(!m[z.begin]){j[z.begin]=e.placeholder;if(b.browser.opera){s=o();r.val(s.substring(0,z.begin)+" "+s.substring(z.begin));b(this).caret(z.begin+1)}else{o();b(this).caret(Math.max(u,z.begin))}return false}}}else{if(w==46){g(z.begin,z.begin+1);o();b(this).caret(Math.max(u,z.begin));return false}else{if(w==27){g(0,c.length);o();b(this).caret(u);return false}}}}function v(A){if(q){q=false;return(A.keyCode==8)?false:null}A=A||window.event;var w=A.charCode||A.keyCode||A.which;var B=b(this).caret();if(A.ctrlKey||A.altKey){return true}else{if((w>=41&&w<=122)||w==32||w>186){var z=p(B.begin-1);if(z<c.length){if(new RegExp(a[c.charAt(z)]).test(String.fromCharCode(w))){j[z]=String.fromCharCode(w);o();var y=p(z);b(this).caret(y);if(e.completed&&y==c.length){e.completed.call(r)}}}}}return false}function g(z,w){for(var y=z;y<w&&y<c.length;y++){if(!m[y]){j[y]=e.placeholder}}}function o(){return r.val(j.join("")).val()}function h(){var B=r.val();var A=0;for(var y=0;y<c.length;y++){if(!m[y]){j[y]=e.placeholder;while(A++<B.length){var w=new RegExp(a[c.charAt(y)]);if(B.charAt(A-1).match(w)){j[y]=B.charAt(A-1);break}}}}var z=o();if(!z.match(d)){r.val("");g(0,c.length);f=false}else{f=true}}function p(w){while(++w<c.length){if(!m[w]){return w}}return c.length}r.one("unmask",function(){r.unbind("focus",t);r.unbind("blur",h);r.unbind("keydown",n);r.unbind("keypress",v);if(b.browser.msie){this.onpaste=null}else{if(b.browser.mozilla){this.removeEventListener("input",h,false)}}});r.bind("focus",t);r.bind("blur",h);r.bind("keydown",n);r.bind("keypress",v);if(b.browser.msie){this.onpaste=function(){setTimeout(h,0)}}else{if(b.browser.mozilla){this.addEventListener("input",h,false)}}h()})}})(jQuery);(function(a){a.event.special.mousewheel={setup:function(){var b=a.event.special.mousewheel.handler;if(a.browser.mozilla){a(this).bind("mousemove.mousewheel",function(c){a.data(this,"mwcursorposdata",{pageX:c.pageX,pageY:c.pageY,clientX:c.clientX,clientY:c.clientY})})}if(this.addEventListener){this.addEventListener((a.browser.mozilla?"DOMMouseScroll":"mousewheel"),b,false)}else{this.onmousewheel=b}},teardown:function(){var b=a.event.special.mousewheel.handler;a(this).unbind("mousemove.mousewheel");if(this.removeEventListener){this.removeEventListener((a.browser.mozilla?"DOMMouseScroll":"mousewheel"),b,false)}else{this.onmousewheel=function(){}}a.removeData(this,"mwcursorposdata")},handler:function(d){var b=Array.prototype.slice.call(arguments,1);d=a.event.fix(d||window.event);a.extend(d,a.data(this,"mwcursorposdata")||{});var e=0,c=true;if(d.wheelDelta){e=d.wheelDelta/120}if(d.detail){e=-d.detail/3}if(a.browser.opera){e=-d.wheelDelta}d.data=d.data||{};d.type="mousewheel";b.unshift(e);b.unshift(d);return a.event.handle.apply(this,b)}};a.fn.extend({mousewheel:function(b){return b?this.bind("mousewheel",b):this.trigger("mousewheel")},unmousewheel:function(b){return this.unbind("mousewheel",b)}})})(jQuery);
/*
        Slimbox v2.02 - The ultimate lightweight Lightbox clone for jQuery
        (c) 2007-2009 Christophe Beyls <http://www.digitalia.be>
        MIT-style license.
*/
(function(B){var J=B(window),z,g,K=-1,r,C,I,A,D,Q,w,q=!window.XMLHttpRequest,e=window.opera&&(document.compatMode=="CSS1Compat")&&(B.browser.version>=9.3),p=document.documentElement,o={},y=new Image(),O=new Image(),M,a,h,u,N,d,L,c,F,P;B(function(){B("body").append(B([M=B('<div id="lbOverlay" />')[0],a=B('<div id="lbCenter" />')[0],L=B('<div id="lbBottomContainer" />')[0]]).css("display","none"));h=B('<div id="lbImage" />').appendTo(a).append(u=B('<div style="position: relative;" />').append([N=B('<a id="lbPrevLink" href="#" />').click(G)[0],d=B('<a id="lbNextLink" href="#" />').click(f)[0]])[0])[0];c=B('<div id="lbBottom" />').appendTo(L).append([B('<a id="lbCloseLink" href="#" />').add(M).click(H)[0],F=B('<div id="lbCaption" />')[0],P=B('<div id="lbNumber" />')[0],B('<div style="clear: both;" />')[0]])[0]});B.slimbox=function(T,S,R){z=B.extend({loop:false,overlayOpacity:0.8,overlayFadeDuration:400,resizeDuration:400,resizeEasing:"swing",initialWidth:250,initialHeight:250,imageFadeDuration:400,captionAnimationDuration:400,counterText:"Image {x} of {y}",closeKeys:[27,88,67],previousKeys:[37,80],nextKeys:[39,78]},R);if(typeof T=="string"){T=[[T,S]];S=0}D=J.scrollTop()+((e?p.clientHeight:J.height())/2);Q=z.initialWidth;w=z.initialHeight;B(a).css({top:Math.max(0,D-(w/2)),width:Q,height:w,marginLeft:-Q/2}).show();A=q||(M.currentStyle&&(M.currentStyle.position!="fixed"));if(A){M.style.position="absolute"}B(M).css("opacity",z.overlayOpacity).fadeIn(z.overlayFadeDuration);E();n(1);g=T;z.loop=z.loop&&(g.length>1);return b(S)};B.fn.slimbox=function(R,U,T){U=U||function(V){return[V.href,V.title]};T=T||function(){return true};var S=this;return S.unbind("click").click(function(){var X=this,Z=0,Y,V=0,W;Y=B.grep(S,function(ab,aa){return T.call(X,ab,aa)});for(W=Y.length;V<W;++V){if(Y[V]==X){Z=V}Y[V]=U(Y[V],V)}return B.slimbox(Y,Z,R)})};function E(){var S=J.scrollLeft(),R=e?p.clientWidth:J.width();B([a,L]).css("left",S+(R/2));if(A){B(M).css({left:S,top:J.scrollTop(),width:R,height:J.height()})}}function n(R){B("object").add(q?"select":"embed").each(function(T,U){if(R){B.data(U,"slimbox",U.style.visibility)}U.style.visibility=R?"hidden":B.data(U,"slimbox")});var S=R?"bind":"unbind";J[S]("scroll resize",E);B(document)[S]("keydown",t)}function t(T){var S=T.keyCode,R=B.inArray;return(R(S,z.closeKeys)>=0)?H():(R(S,z.nextKeys)>=0)?f():(R(S,z.previousKeys)>=0)?G():false}function G(){return b(C)}function f(){return b(I)}function b(R){if(R>=0){K=R;r=g[K][0];C=(K||(z.loop?g.length:0))-1;I=((K+1)%g.length)||(z.loop?0:-1);v();a.className="lbLoading";o=new Image();o.onload=m;o.src=r}return false}function m(){a.className="";B(h).css({backgroundImage:"url("+r+")",visibility:"hidden",display:""});B(u).width(o.width);B([u,N,d]).height(o.height);B(F).html(g[K][1]||"");B(P).html((((g.length>1)&&z.counterText)||"").replace(/{x}/,K+1).replace(/{y}/,g.length));if(C>=0){y.src=g[C][0]}if(I>=0){O.src=g[I][0]}Q=h.offsetWidth;w=h.offsetHeight;var R=Math.max(0,D-(w/2));if(a.offsetHeight!=w){B(a).animate({height:w,top:R},z.resizeDuration,z.resizeEasing)}if(a.offsetWidth!=Q){B(a).animate({width:Q,marginLeft:-Q/2},z.resizeDuration,z.resizeEasing)}B(a).queue(function(){B(L).css({width:Q,top:R+w,marginLeft:-Q/2,visibility:"hidden",display:""});B(h).css({display:"none",visibility:"",opacity:""}).fadeIn(z.imageFadeDuration,j)})}function j(){if(C>=0){B(N).show()}if(I>=0){B(d).show()}B(c).css("marginTop",-c.offsetHeight).animate({marginTop:0},z.captionAnimationDuration);L.style.visibility=""}function v(){o.onload=null;o.src=y.src=O.src=r;B([a,h,c]).stop(true);B([N,d,h,L]).hide()}function H(){if(K>=0){v();K=C=I=-1;B(a).hide();B(M).stop().fadeOut(z.overlayFadeDuration,n)}return false}})(jQuery);(function(c){c.timeago=function(g){if(g instanceof Date){return a(g)}else{if(typeof g=="string"){return a(c.timeago.parse(g))}else{return a(c.timeago.parse(c(g).attr("title")))}}};var f=c.timeago;c.extend(c.timeago,{settings:{refreshMillis:60000,allowFuture:false,strings:{ago:"ago",fromNow:"from now",seconds:"less than a minute",minute:"about a minute",minutes:"%d minutes",hour:"about an hour",hours:"about %d hours",day:"a day",days:"%d days",month:"about a month",months:"%d months",year:"about a year",years:"%d years"}},inWords:function(m){var n=this.settings.strings;var r=n.ago;if(this.settings.allowFuture){if(m<0){r=n.fromNow}m=Math.abs(m)}var p=m/1000;var g=p/60;var o=g/60;var q=o/24;var h=q/365;var j=p<45&&d(n.seconds,Math.round(p))||p<90&&n.minute||g<45&&d(n.minutes,Math.round(g))||g<90&&n.hour||o<24&&d(n.hours,Math.round(o))||o<48&&n.day||q<30&&d(n.days,Math.floor(q))||q<60&&n.month||q<365&&d(n.months,Math.floor(q/30))||h<2&&n.year||d(n.years,Math.floor(h));return j+" "+r},parse:function(h){var g=c.trim(h);g=g.replace(/-/,"/").replace(/-/,"/");g=g.replace(/T/," ").replace(/Z/," UTC");g=g.replace(/([\+-]\d\d)\:?(\d\d)/," $1$2");return new Date(g)}});c.fn.timeago=function(){var h=this;h.each(b);var g=f.settings;if(g.refreshMillis>0){setInterval(function(){h.each(b)},g.refreshMillis)}return h};function b(){var g=f.parse(this.title);if(!isNaN(g)){c(this).text(a(g))}return this}function a(g){return f.inWords(e(g))}function e(g){return(new Date().getTime()-g.getTime())}function d(g,h){return g.replace(/%d/i,h)}if(c.browser.msie&&c.browser.version<7){document.createElement("abbr")}})(jQuery);if(!window.OpenAjax){OpenAjax=new function(){var b=true;var j=false;var d=window;var e;var a="org.openajax.hub.";var c={};this.hub=c;c.implementer="http://openajax.org";c.implVersion="1.0";c.specVersion="1.0";c.implExtraData={};var e={};c.libraries=e;c.registerLibrary=function(m,h,g,f){e[m]={prefix:m,namespaceURI:h,version:g,extraData:f};this.publish(a+"registerLibrary",e[m])};c.unregisterLibrary=function(f){this.publish(a+"unregisterLibrary",e[f]);delete e[f]};c._subscriptions={c:{},s:[]};c._cleanup=[];c._subIndex=0;c._pubDepth=0;c.subscribe=function(f,q,n,m,h){if(!n){n=window}var o=f+"."+this._subIndex;var g={scope:n,cb:q,fcb:h,data:m,sid:this._subIndex++,hdl:o};var p=f.split(".");this._subscribe(this._subscriptions,p,0,g);return o};c.publish=function(f,h){var m=f.split(".");this._pubDepth++;this._publish(this._subscriptions,m,0,f,h);this._pubDepth--;if((this._cleanup.length>0)&&(this._pubDepth==0)){for(var g=0;g<this._cleanup.length;g++){this.unsubscribe(this._cleanup[g].hdl)}delete (this._cleanup);this._cleanup=[]}};c.unsubscribe=function(g){var h=g.split(".");var f=h.pop();this._unsubscribe(this._subscriptions,h,0,f)};c._subscribe=function(f,n,g,m){var h=n[g];if(g==n.length){f.s.push(m)}else{if(typeof f.c=="undefined"){f.c={}}if(typeof f.c[h]=="undefined"){f.c[h]={c:{},s:[]};this._subscribe(f.c[h],n,g+1,m)}else{this._subscribe(f.c[h],n,g+1,m)}}};c._publish=function(w,v,p,f,g){if(typeof w!="undefined"){var h;if(p==v.length){h=w}else{this._publish(w.c[v[p]],v,p+1,f,g);this._publish(w.c["*"],v,p+1,f,g);h=w.c["**"]}if(typeof h!="undefined"){var q=h.s;var u=q.length;for(var n=0;n<u;n++){if(q[n].cb){var t=q[n].scope;var m=q[n].cb;var o=q[n].fcb;var r=q[n].data;if(typeof m=="string"){m=t[m]}if(typeof o=="string"){o=t[o]}if((!o)||(o.call(t,f,g,r))){m.call(t,f,g,r)}}}}}};c._unsubscribe=function(r,q,m,g){if(typeof r!="undefined"){if(m<q.length){var f=r.c[q[m]];this._unsubscribe(f,q,m+1,g);if(f.s.length==0){for(var p in f.c){return}delete r.c[q[m]]}return}else{var n=r.s;var o=n.length;for(var h=0;h<o;h++){if(g==n[h].sid){if(this._pubDepth>0){n[h].cb=null;this._cleanup.push(n[h])}else{n.splice(h,1)}return}}}}};c.reinit=function(){for(var f in OpenAjax.hub.libraries){delete OpenAjax.hub.libraries[f]}OpenAjax.hub.registerLibrary("OpenAjax","http://openajax.org/hub","1.0",{});delete OpenAjax._subscriptions;OpenAjax._subscriptions={c:{},s:[]};delete OpenAjax._cleanup;OpenAjax._cleanup=[];OpenAjax._subIndex=0;OpenAjax._pubDepth=0}};OpenAjax.hub.registerLibrary("OpenAjax","http://openajax.org/hub","1.0",{})}(function(c){c.tools=c.tools||{};c.tools.overlay={version:"1.1.2",addEffect:function(e,f,g){b[e]=[f,g]},conf:{top:"10%",left:"center",absolute:false,speed:"normal",closeSpeed:"fast",effect:"default",close:null,oneInstance:true,closeOnClick:true,closeOnEsc:true,api:false,expose:null,target:null}};var b={};c.tools.overlay.addEffect("default",function(e){this.getOverlay().fadeIn(this.getConf().speed,e)},function(e){this.getOverlay().fadeOut(this.getConf().closeSpeed,e)});var d=[];function a(g,n){var r=this,p=c(this),q=c(window),m,j,h,e=n.expose&&c.tools.expose.version;var f=n.target||g.attr("rel");j=f?c(f):null||g;if(!j.length){throw"Could not find Overlay: "+f}if(g&&g.index(j)==-1){g.click(function(t){if(c().jquery=="1.2.6"){r.load(t.type,t);return false}else{r.load(t);return t.preventDefault()}})}c.each(n,function(t,u){if(c.isFunction(u)){p.bind(t,u)}});c.extend(r,{load:function(z){if(r.isOpened()){return r}var v=b[n.effect];if(!v){throw'Overlay: cannot find effect : "'+n.effect+'"'}if(n.oneInstance){c.each(d,function(){this.close(z)})}if(c().jquery=="1.2.6"){z=z||window.event;p.trigger("onBeforeLoad",z)}else{z=z||c.Event();z.type="onBeforeLoad";p.trigger(z)}if(c().jquery=="1.2.6"){}else{if(z.isDefaultPrevented()){return r}}h=true;if(e){j.expose().load(z)}var y=n.top;var w=n.left;var t=j.outerWidth({margin:true});var u=j.outerHeight({margin:true});if(typeof y=="string"){y=y=="center"?Math.max((q.height()-u)/2,0):parseInt(y,10)/100*q.height()}if(w=="center"){w=Math.max((q.width()-t)/2,0)}if(!n.absolute){y+=q.scrollTop();w+=q.scrollLeft()}j.css({top:y,left:w,position:"absolute"});if(c().jquery=="1.2.6"){p.trigger("onStart",z)}else{z.type="onStart";p.trigger(z)}v[0].call(r,function(){if(h){if(c().jquery=="1.2.6"){p.trigger("onLoad",z)}else{z.type="onLoad";p.trigger(z)}}});if(n.closeOnClick){c(document).bind("click.overlay",function(B){if(!r.isOpened()){return}var A=c(B.target);if(A.parents(j).length>1){return}c.each(d,function(){this.close(B)})})}if(n.closeOnEsc){c(document).unbind("keydown.overlay").bind("keydown.overlay",function(A){if(A.keyCode==27){c.each(d,function(){this.close(A)})}})}return r},close:function(u){if(!r.isOpened()){return r}if(c().jquery=="1.2.6"){u=u||window.event;p.trigger("onBeforeClose",u)}else{u=u||c.Event();u.type="onBeforeClose";p.trigger(u);if(u.isDefaultPrevented()){return}}h=false;b[n.effect][1].call(r,function(){if(c().jquery=="1.2.6"){u=u||window.event;p.trigger("onClose",u)}else{u.type="onClose";p.trigger(u)}});var t=true;c.each(d,function(){if(this.isOpened()){t=false}});if(t){c(document).unbind("click.overlay").unbind("keydown.overlay")}return r},getContent:function(){return j},getOverlay:function(){return j},getTrigger:function(){return g},getClosers:function(){return m},isOpened:function(){return h},getConf:function(){return n},bind:function(t,u){p.bind(t,u);return r},unbind:function(t){p.unbind(t);return r}});c.each("onBeforeLoad,onStart,onLoad,onBeforeClose,onClose".split(","),function(t,u){r[u]=function(v){return r.bind(u,v)}});if(e){if(typeof n.expose=="string"){n.expose={color:n.expose}}c.extend(n.expose,{api:true,closeOnClick:n.closeOnClick,closeOnEsc:false});var o=j.expose(n.expose);o.onBeforeClose(function(t){r.close(t)});r.onClose(function(t){o.close(t)})}m=j.find(n.close||".close");if(!m.length&&!n.close){m=c('<div class="close"></div>');j.prepend(m)}m.click(function(t){r.close(t)})}c.fn.overlay=function(e){var f=this.eq(typeof e=="number"?e:0).data("overlay");if(f){return f}if(c.isFunction(e)){e={onBeforeLoad:e}}var g=c.extend({},c.tools.overlay.conf);e=c.extend(true,g,e);this.each(function(){f=new a(c(this),e);d.push(f);c(this).data("overlay",f)});return e.api?f:this}})(jQuery);