// jquery /* * 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 l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("",""]||!O.indexOf("",""]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"","
"]||!O.indexOf("",""]||(!O.indexOf("",""]||!O.indexOf("",""]||!o.support.htmlSerialize&&[1,"div
","
"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); /* * 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 R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return UT[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="

";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="
";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.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(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("
").append(M.responseText.replace(//g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.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(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.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(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='
';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})(); // cufon /* * Copyright (c) 2009 Simo Kinnunen. * Licensed under the MIT license. * * @version 1.09 */ var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E0){E=" "+E}}else{if(B400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||JD){D=J}K.push(J)}if(ID){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?ML:(M<=I&&L<=I)?M>L:MO){O=K}if(I>N){N=I}if(Kcufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m. 2004. All Rights Reserved * * Description: * This font was created using the Font Creator Program 4.5 from High-Logic.com */ Cufon.registerFont({"w":200,"face":{"font-family":"mizike-with-umlauts","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"26","cap-height":"71","bbox":"-37 -334.329 418.584 112.074","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+01FF"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"67,-324v16,-1,25,3,24,19v0,51,-13,146,-41,283v-14,11,-27,8,-29,-22v-2,-36,12,-68,27,-184v8,-64,11,-96,19,-96xm32,28v10,1,16,6,16,17v0,24,-28,31,-37,13v-1,-14,5,-19,21,-30","w":100},"\"":{"d":"56,-270v-10,-23,14,-61,34,-41v0,16,-4,19,-13,14v-7,28,0,51,14,74r-4,2v-21,-15,-31,-32,-31,-49xm27,-315v19,10,-12,41,-5,52v-2,10,11,20,17,37v-3,2,-4,5,-9,4v-43,-18,-32,-81,-3,-93","w":99},"#":{"d":"117,-200v24,-69,11,-87,39,-90v4,4,9,8,6,17v-13,42,-21,65,-21,73v18,2,62,-13,62,8v0,3,-19,15,-61,15v-7,0,-8,7,-11,22r-10,51v17,2,48,-9,48,10v0,9,-13,13,-39,13r-13,2v-6,40,3,51,-12,53v-5,0,-8,-15,-8,-46v-16,2,-28,7,-27,11v-5,43,1,63,-13,61v-4,0,-7,-13,-9,-39r2,-20r-40,13v-6,0,-10,-4,-10,-13v-3,-14,33,-23,53,-26r4,-74r-29,9v2,8,16,17,0,21v-37,-20,-19,-42,27,-52v3,-4,1,-64,18,-55v13,7,3,32,7,46v25,-4,37,-8,37,-10xm79,-166r-4,74v18,-4,25,-8,26,-12r11,-68"},"$":{"d":"120,-323v21,9,9,43,8,66v3,0,8,-3,14,-8v15,4,52,-18,53,9v0,5,-15,10,-45,17r-23,8r0,81v46,45,68,48,17,82r-14,6v2,27,10,71,-2,88v-14,2,-8,-21,-17,-68v-1,-4,1,-12,-3,-13v-8,0,-11,5,-11,16v-9,44,-7,71,-22,55v-2,-21,-2,-42,1,-63v-14,2,-23,1,-27,-15v0,-4,9,-7,27,-9r-1,-79v-32,-8,-52,-16,-61,-26v1,-39,34,-42,58,-58v2,-29,-20,-72,4,-87v5,0,11,2,12,10r6,67v9,0,13,-6,13,-19v0,-35,4,-55,13,-60xm95,-217r2,52r7,3r0,-58xm43,-187v10,3,23,11,32,11v-2,-9,0,-22,-3,-29v-18,10,-28,15,-29,18xm98,-137r0,59r9,-3r-2,-47v0,-6,-2,-9,-7,-9xm128,-115v1,8,-3,22,2,26v23,-10,16,-13,-2,-26"},"%":{"d":"260,-317v9,-1,14,2,14,10v-16,38,-152,199,-196,257v-23,31,-33,45,-43,44v-7,-2,-10,-6,-10,-14v39,-64,117,-163,235,-297xm9,-216v0,-37,44,-69,79,-69v13,0,20,3,18,16v0,5,-9,8,-28,10v-38,21,-55,46,-27,71v22,-3,46,-18,73,-48v-9,0,-18,5,-44,16v-1,-3,-4,-4,-4,-8v20,-24,38,-37,56,-37v16,0,25,9,25,17v0,21,-26,49,-77,83r-33,6v-26,-10,-38,-29,-38,-57xm207,-139v38,0,54,12,59,40v-3,23,-14,47,-36,69v-21,20,-84,53,-96,-6v1,-35,14,-67,49,-67v12,0,18,6,18,17v-11,20,-17,30,-32,24v-5,8,-8,21,-4,30r18,0v36,-22,55,-45,55,-69v0,-6,-10,-10,-29,-14v-11,1,-26,5,-24,-10v0,-4,7,-9,22,-14","w":320},"&":{"d":"38,-212v-3,-33,46,-98,79,-95v25,2,58,19,50,58v-6,31,-18,50,-26,61v23,4,53,2,79,3v18,5,5,26,-5,25r-55,-3r0,3v9,1,71,56,62,83v0,16,-10,35,-30,56v19,31,35,40,15,58v-11,1,-12,-5,-19,-19r-21,-26v-56,12,-88,4,-126,-33v-19,-45,-6,-57,24,-108v-17,-34,-27,-55,-27,-63xm117,-281v-17,-3,-52,36,-51,71v1,1,5,23,20,40v44,-42,55,-46,55,-93v0,-9,-8,-15,-24,-18xm136,-149v-16,-22,-24,-10,-36,2r74,103v58,-38,-11,-91,-38,-105xm81,-125v-54,56,-5,103,70,92","w":240},"'":{"d":"9,-246v6,-58,27,-93,56,-56v1,17,-2,14,-19,25v-6,27,-11,32,13,56v0,10,-6,14,-15,14v-11,0,-23,-15,-35,-39","w":68},"(":{"d":"41,-254v29,-50,31,-72,60,-69v9,0,13,4,13,11v0,3,-12,13,-28,37v-43,66,-52,120,-56,169v8,42,20,73,37,92v4,13,23,37,56,70v1,8,-3,12,-9,13v-29,-16,-71,-59,-99,-112r-15,-60v0,-50,12,-100,41,-151","w":119},")":{"d":"93,-51v1,17,-39,131,-81,126r-4,-9v46,-65,84,-151,73,-261v-6,-66,-16,-87,-44,-110v-1,-11,6,-16,13,-16v30,10,58,52,58,128v0,72,-5,120,-15,142","w":105},"*":{"d":"49,-294v11,-17,16,-25,23,-25v8,-1,8,12,11,27v12,0,36,-14,36,6v-11,6,-26,8,-36,15v-5,7,21,34,6,43v-9,1,-10,-3,-14,-13v-26,-35,-33,3,-60,7v-9,-9,-3,-23,12,-27r5,-10v-14,-6,-23,-26,-7,-30v6,3,14,5,24,7","w":140},"+":{"d":"102,-229v35,0,17,49,15,76v41,-1,125,0,84,34r-87,0v-6,54,-5,80,-24,79v-30,-2,-8,-57,-15,-77v-51,-3,-74,2,-70,-24v10,-17,88,-5,77,-12v5,-51,11,-76,20,-76","w":210},",":{"d":"38,-64v47,21,50,22,52,65v1,21,-24,49,-69,61v-18,-19,3,-23,33,-49v4,0,6,-6,8,-20v-4,-32,-38,-22,-43,-43v0,-8,6,-13,19,-14","w":100},"-":{"d":"43,-162v17,0,91,-16,91,13v0,11,-8,18,-24,18r-98,5v-9,1,-12,-11,-12,-23v0,-9,14,-13,43,-13","w":119},"\u00ad":{"d":"43,-162v17,0,91,-16,91,13v0,11,-8,18,-24,18r-98,5v-9,1,-12,-11,-12,-23v0,-9,14,-13,43,-13","w":119},".":{"d":"16,8v10,-38,48,-39,57,-5v0,14,-7,27,-24,33v-22,0,-33,-9,-33,-28","w":101},"\/":{"d":"141,-281v-24,46,-92,222,-125,293v-10,1,-12,-2,-12,-12v3,-33,33,-123,98,-266v10,-22,20,-32,26,-32v8,0,13,7,13,17","w":112},"0":{"d":"119,-8v-53,5,-80,-31,-89,-49v-8,7,-13,6,-23,4v0,-13,16,-21,13,-23v-6,0,-11,-25,-15,-77r15,-57v-10,-13,7,-23,14,-29v8,-22,45,-47,79,-49v6,4,12,7,21,4r40,19v21,-25,34,-38,41,-38v7,0,12,5,14,15v0,2,-12,16,-36,43v11,12,22,35,22,69v0,90,-38,146,-96,168xm32,-152v5,32,2,48,10,47r106,-139v-49,-21,-49,-10,-97,26v-6,12,-12,34,-19,66xm169,-208v-29,41,-67,85,-113,135v-2,8,23,40,57,37v42,-17,66,-60,71,-130v-5,-28,-10,-42,-15,-42","w":212},"1":{"d":"118,-318v15,-7,31,2,29,20v-19,42,-32,160,-22,252v24,0,66,-13,67,14v6,22,-54,13,-74,28v-6,0,-18,0,-17,-4v-21,5,-90,5,-86,-7v-8,-6,2,-15,17,-24r2,7r56,-7v-7,-61,-7,-122,0,-184v-15,19,-28,29,-40,29v-27,0,-17,-27,4,-42v26,-29,47,-56,64,-82"},"2":{"d":"124,-296v28,0,42,33,42,99v-11,53,-21,80,-29,80v-4,12,-24,36,-62,71v52,-2,136,8,122,28v0,9,-4,15,-13,18r-87,-13v-33,-3,-88,29,-97,-11v0,-10,17,-25,49,-45v61,-62,79,-78,79,-132v0,-37,-4,-56,-11,-56v-19,0,-41,29,-68,87v-10,11,-37,6,-34,-14v31,-75,68,-112,109,-112"},"3":{"d":"194,-296v10,4,15,12,15,23v0,13,-31,47,-94,100v37,9,74,22,74,63v0,18,-18,44,-59,67v-54,32,-95,43,-117,43v-12,-5,-14,-7,-13,-20v0,-5,32,-19,92,-49v39,-19,56,-39,56,-51v0,-14,-37,-22,-110,-25v-18,-32,2,-40,49,-59r53,-43v-42,10,-74,18,-91,17v-42,6,-52,-35,-26,-45r38,2v71,-15,115,-23,133,-23"},"4":{"d":"144,-300v22,0,18,9,28,41v-3,12,-14,6,-19,9r-14,80r50,-16v9,2,13,8,12,19v0,5,-23,17,-69,35v-4,49,-9,98,-5,151r-9,7v-24,1,-18,-59,-26,-82r5,-67r-52,5v-25,-6,-38,-17,-38,-33v20,-90,40,-134,61,-134v9,0,15,5,15,16v-28,64,-40,95,-40,116v25,5,67,-3,61,-14v15,-88,28,-133,40,-133"},"5":{"d":"56,-284v55,5,126,-20,154,13v1,16,-5,23,-22,23r-105,2r-5,80r36,-9v67,14,100,39,100,74v0,66,-39,71,-136,76v-24,1,-69,25,-71,-9v0,-14,23,-27,69,-29v123,-5,132,-50,36,-78v-30,12,-49,18,-58,18v-10,-5,-16,-11,-16,-18v0,-42,11,-72,11,-101v-6,-9,-20,-11,-17,-29v5,-9,12,-13,24,-13","w":207},"6":{"d":"48,-137v46,-33,152,-27,152,28v0,47,-28,80,-84,101v-37,2,-57,-10,-75,-38v-9,0,-25,-27,-31,-86v-9,-83,12,-104,68,-181v11,-13,33,-14,33,5v0,4,-19,24,-42,68v-26,50,-22,53,-21,103xm57,-95v-3,17,21,46,52,52v38,-14,56,-35,56,-64v-24,-30,-104,-13,-108,12","w":205},"7":{"d":"57,-170v-5,-18,73,-3,63,-31v11,-41,24,-71,18,-81v-40,4,-137,25,-138,-18v8,-17,39,-8,61,-8v43,0,114,-33,114,22v0,17,-7,48,-21,95v17,-1,47,-12,45,12v0,6,-18,10,-55,15v-40,110,-62,164,-83,164v-11,0,-13,-10,-12,-22v0,-4,16,-40,46,-108v1,-8,7,-19,6,-26r-20,4v-14,-7,-22,-13,-24,-18"},"8":{"d":"180,-51v-35,37,-48,46,-111,49v-30,-10,-45,-18,-45,-26v-30,-23,-18,-114,7,-134r11,-11v-9,2,-37,-24,-29,-54v6,-23,21,-49,44,-73v37,-39,82,-24,116,3v18,51,-14,74,-46,111v9,0,24,7,47,22v17,19,19,43,23,64v-7,33,-13,49,-17,49xm116,-292v-18,0,-20,18,-32,23v-3,-2,-4,-6,-4,-14v-5,0,-14,12,-28,36v-5,9,-10,18,-8,33v33,40,93,-4,105,-54v0,-17,-11,-24,-33,-24xm163,-88v25,-57,-80,-91,-101,-44v-5,0,-9,2,-9,-5v-12,7,-23,77,-6,90v19,36,117,6,116,-41","w":191},"9":{"d":"26,-234v17,-35,95,-92,139,-38v13,-5,27,0,24,17v-15,67,-24,144,-38,228v-5,29,-5,40,-21,38v-5,0,-8,-7,-8,-21v0,-58,11,-111,19,-161v-33,31,-50,49,-84,53v-27,3,-45,-17,-52,-41v0,-34,7,-58,21,-75xm112,-263v-44,14,-81,48,-71,101v34,34,101,-65,105,-85v-12,-10,-23,-16,-34,-16","w":202},":":{"d":"58,-212v37,5,12,80,-4,75v-43,9,-37,-37,-18,-65xm21,-25v0,-51,44,-62,50,-14v6,55,-44,58,-50,14","w":100},";":{"d":"71,-175v-1,35,-10,46,-40,43v-9,0,-15,-6,-19,-19v0,-44,49,-58,59,-24xm44,-79v22,0,34,10,34,31v18,22,-2,83,-23,77v-9,5,-30,15,-33,0v0,-8,11,-17,32,-27v4,-12,12,-23,6,-26v-16,10,-28,11,-37,-8v0,-32,7,-47,21,-47","w":100},"\u037e":{"d":"71,-175v-1,35,-10,46,-40,43v-9,0,-15,-6,-19,-19v0,-44,49,-58,59,-24xm44,-79v22,0,34,10,34,31v18,22,-2,83,-23,77v-9,5,-30,15,-33,0v0,-8,11,-17,32,-27v4,-12,12,-23,6,-26v-16,10,-28,11,-37,-8v0,-32,7,-47,21,-47","w":100},"<":{"d":"51,-166v54,-55,72,-90,95,-93v8,0,19,7,17,21v-8,25,-88,101,-112,134r122,48v25,17,37,25,36,39v0,11,-5,17,-15,17v-8,0,-25,-13,-57,-26v-143,-58,-176,-49,-86,-140","w":210},"=":{"d":"17,-202v68,8,158,-28,194,20v3,22,-19,18,-40,19r-127,8v-34,-4,-50,-10,-49,-27v0,-11,7,-17,22,-20xm10,-51v-2,-22,12,-31,42,-37v4,2,9,14,12,7v63,5,127,-18,159,25v1,11,-2,18,-7,23v-46,-7,-208,3,-206,-18","w":210},">":{"d":"0,-18v-7,-14,104,-91,131,-97v-1,-13,-42,-42,-124,-120v-3,-16,3,-28,19,-28v7,0,42,30,105,89v38,37,58,58,58,70v0,14,-12,21,-37,21v-26,10,-65,37,-122,79v-11,8,-32,2,-30,-14","w":210},"?":{"d":"76,-306v73,-7,136,22,140,96v1,22,-37,57,-108,92v9,23,14,40,14,50v1,37,-36,35,-39,11v5,-28,-4,-39,-23,-59v-2,-25,18,-27,62,-48r57,-48v3,-36,-42,-59,-91,-60v-57,13,-67,38,-35,67v1,13,-3,20,-16,20v-14,1,-39,-19,-39,-55v0,-26,26,-48,78,-66xm65,51v-2,-30,13,-37,41,-34v30,17,18,54,-21,52v-14,0,-20,-6,-20,-18","w":209},"@":{"d":"58,-203v-66,115,26,226,171,226v42,0,92,-5,136,-6v2,3,5,5,4,10v0,9,-45,27,-136,27v-58,0,-96,-7,-113,-20v-32,-9,-54,-23,-67,-44v-21,-3,-49,-76,-48,-125v0,-83,59,-145,180,-168v74,-14,103,5,157,58r11,27v0,69,-29,125,-86,168v-27,7,-66,8,-63,-26v-36,35,-99,50,-121,-2r0,-17v1,-20,36,-55,104,-104v19,-14,77,-21,77,14v0,5,-5,7,-15,7v12,27,-7,63,-24,79v4,17,7,25,11,25v35,8,89,-77,90,-140v0,-13,-21,-32,-62,-54v-85,-17,-144,7,-206,65xm131,-112v-8,8,-30,34,-4,36v41,4,71,-24,69,-44v12,-42,25,-55,33,-60v-25,-1,-44,22,-98,68","w":365},"A":{"d":"139,-300v31,-20,42,-2,52,41v4,6,17,46,41,120r79,-8v8,2,12,7,12,13v0,7,-16,12,-49,18v-21,4,-31,3,-30,10v25,69,38,114,38,136v0,13,-8,21,-26,21v-9,0,-16,-18,-20,-54r-34,-100r-104,15v-33,70,-50,106,-76,102v-36,-5,3,-40,10,-55v6,-13,19,-32,18,-42v-21,-1,-51,13,-54,-13v0,-7,24,-14,72,-20v14,-50,53,-165,71,-184xm153,-242v-15,32,-28,71,-40,119r80,-9v-14,-36,-23,-77,-40,-110","w":283},"B":{"d":"-11,-215v23,-47,169,-102,217,-102v28,0,43,12,43,25v0,41,-81,100,-116,135v0,2,17,11,51,22v23,8,45,23,67,48v4,57,-25,65,-95,105v-42,25,-76,46,-102,46v-8,0,-13,-3,-14,-10v-4,-36,170,-82,173,-127v0,-11,-34,-28,-100,-51v0,74,-6,120,-20,118v-8,8,-24,1,-23,-11v6,-139,9,-209,12,-209v12,-12,29,-12,31,8v1,8,-3,22,2,27v56,-48,86,-78,91,-91v-33,-1,-80,17,-172,58v-17,7,-25,16,-25,23v0,7,-3,9,-10,8v-5,0,-8,-8,-10,-22","w":240},"C":{"d":"202,-316v55,28,69,32,69,81v0,32,-18,59,-56,81v-10,1,-15,-4,-15,-14v0,-11,9,-34,28,-67v2,-22,-8,-19,-31,-33v-42,0,-87,38,-136,114r-8,50v12,44,40,83,90,93v42,0,89,-17,141,-51v17,-2,24,6,23,23v5,24,-103,85,-172,75v-49,-7,-80,-32,-95,-61v-7,0,-18,-27,-33,-81v6,-51,19,-83,33,-101v56,-71,108,-109,162,-109","w":259},"D":{"d":"13,-313v103,0,174,3,242,51v19,28,28,45,28,52v0,34,-19,63,-44,89v-31,33,-99,93,-206,180v-16,0,-24,-8,-24,-21v-6,-7,39,-41,63,-63v-14,0,-22,-5,-24,-16v16,-93,24,-171,24,-233v-33,2,-62,0,-96,0v-4,-6,-13,-8,-13,-16v0,-15,17,-23,50,-23xm98,-274v12,89,6,123,-15,240v54,-42,105,-90,152,-144r7,-34v-15,-22,-38,-38,-66,-46v-2,-2,-28,-8,-78,-16","w":254},"E":{"d":"249,-310v11,4,12,9,11,22v-1,10,-96,48,-119,65v0,10,-3,27,-9,48v18,17,72,-18,71,22v-4,10,-35,29,-90,55r-36,115v17,0,61,-23,151,-68v11,-1,15,5,17,13v0,25,-52,58,-160,94v-28,9,-40,1,-44,-37r29,-95v-14,-15,1,-38,18,-52r8,-32v-29,0,-75,12,-75,-20v0,-26,59,-64,175,-113xm77,-188v0,3,7,6,21,10r9,-27xm126,-145v10,-4,21,-7,28,-15v-17,1,-27,-7,-28,15","w":240},"F":{"d":"248,-324v30,1,44,3,44,14v-7,21,-12,32,-18,32v-6,0,-9,-5,-9,-15v-55,11,-99,33,-151,47v5,11,9,41,13,88v4,-3,12,-11,16,-3v-5,15,-21,18,-16,42v59,-12,107,-21,141,-20v10,14,-2,22,-29,22v-34,0,-70,16,-112,29v-3,107,-11,195,-35,187v-11,-3,-16,-7,-16,-16v0,-40,12,-92,16,-158v-20,4,-36,2,-36,-22v14,-16,40,-22,35,-53v-3,-20,-1,-52,-9,-84r-46,12v10,23,21,29,11,39v-15,-17,-30,-29,-45,-37r-2,-9v-4,-19,184,-74,248,-95","w":228},"G":{"d":"109,-313v39,-16,102,15,94,47v0,27,4,56,-24,56v-46,0,10,-72,-46,-70v-45,45,-68,107,-68,185v0,36,11,61,32,75v33,-1,50,-17,79,-21v4,5,13,5,12,14v0,11,-22,25,-67,42v-42,0,-67,-10,-76,-30v-7,0,-16,-25,-27,-73v0,-99,30,-174,91,-225xm186,-151v23,12,93,-16,93,21v-16,47,-50,114,-99,202v-12,5,-26,-4,-25,-13v0,-15,29,-76,84,-186v0,-3,2,-8,-3,-7r-87,14v-22,-1,-32,-2,-31,-13v18,-9,40,-15,68,-18","w":260},"H":{"d":"185,-297v1,-28,19,-27,31,-14v-9,60,-20,103,-17,161r78,-11v2,3,6,4,6,9v0,5,-26,13,-78,24r-9,6v0,116,-6,174,-19,174v-10,13,-25,1,-25,-17v0,-47,8,-101,3,-144r-54,21v1,37,-1,117,-14,108v-30,4,-29,-50,-28,-86r-30,13v1,7,16,7,2,15v-19,-2,-27,-10,-27,-22v8,-11,26,-21,55,-32r3,-157v4,-16,33,-17,37,0r2,136v21,-5,37,-17,56,-24v1,-6,3,-11,3,-19v6,-93,15,-141,25,-141","w":226},"I":{"d":"206,-323v16,0,42,-4,37,16v0,7,-27,16,-80,28v-4,2,-12,0,-12,6v4,91,-5,214,-8,263r43,-12v54,8,79,11,65,43v-81,-11,-147,44,-223,50v-14,1,-25,-7,-25,-25v0,-10,16,-36,47,-78v7,0,8,4,9,10v-12,25,-25,41,-19,46r72,-25v-4,-85,7,-177,8,-265v-21,0,-41,11,-61,34v-4,19,-12,26,-21,13v-1,-29,9,-44,33,-66v0,-14,44,-38,135,-38"},"J":{"d":"37,-294v0,-10,2,-16,12,-16v43,26,179,15,217,8v20,33,-22,44,-95,58v24,63,33,120,31,191v0,30,-19,60,-58,89v-54,19,-66,16,-120,16v-14,0,-25,-8,-23,-27v-7,-18,55,-84,94,-94v7,3,10,9,10,19v0,10,-19,26,-44,52v65,-6,105,-23,104,-74v0,-50,-10,-108,-29,-172v-63,-3,-101,-22,-99,-50","w":244},"K":{"d":"39,-294v6,-5,13,-8,25,-7r14,15r-3,127v82,-63,140,-104,173,-122v0,-16,36,-18,42,0v1,17,-21,19,-56,46r-164,124r0,2v44,3,90,19,139,46v39,43,66,81,76,121v-5,4,-7,10,-17,8v-35,-46,-69,-118,-131,-129v0,-4,-26,-10,-76,-18v-17,94,-26,142,-30,142v-21,7,-26,-8,-26,-43v0,-176,43,-238,34,-312","w":240},"L":{"d":"81,-308v8,-13,32,-5,29,12v-12,68,-34,169,-67,305v76,-29,138,-51,190,-49v12,28,-13,19,-62,40r-119,52v-35,3,-50,-6,-50,-46v23,-103,50,-208,79,-314"},"M":{"d":"237,-328v16,-1,25,2,30,14v-5,67,-6,150,-3,219v40,-133,65,-209,77,-226v14,-3,35,-4,33,14v-10,144,8,279,34,352v-4,17,14,41,10,48v-23,15,-21,-4,-39,-39v-6,-12,-37,-54,-43,-135r-7,-91r-3,0v-29,98,-48,155,-59,170v-34,11,-41,-3,-43,-57v-1,-31,4,-70,-2,-97v-34,128,-54,197,-60,208v-14,8,-25,10,-35,-9v5,0,10,-102,15,-305v-71,77,-114,115,-129,115v-15,4,-34,-1,-33,-13v0,-4,14,-12,38,-28v16,-10,50,-48,107,-110v11,0,8,-14,27,-14v33,0,26,55,27,91v1,25,-5,58,0,79v29,-116,49,-179,58,-186","w":397},"N":{"d":"146,-139v8,-124,6,-184,34,-181r10,8r-3,89r0,255v0,15,-8,21,-24,20v-22,3,-52,-75,-101,-203v-8,63,-12,110,-12,138v1,29,2,75,-22,72v-19,3,-20,-37,-19,-63v10,-140,18,-210,24,-210v4,-17,12,-22,29,-21v21,-4,60,150,84,188r0,-92","w":210},"O":{"d":"9,-73v-1,-61,19,-138,50,-181v-8,4,-21,12,-20,-4v28,-27,43,-43,83,-45v70,-3,116,40,129,96v12,51,-17,146,-28,145v-7,22,-27,42,-60,62v0,2,-16,6,-48,11v-39,-6,-64,-17,-74,-31v-8,-3,-18,-21,-32,-53xm43,-81v21,39,20,57,69,57v37,0,66,-20,87,-61v16,-2,29,-134,0,-143v-2,-8,-14,-18,-34,-29v-10,5,-12,-9,-29,-6v-54,11,-98,108,-93,182","w":253},"P":{"d":"264,-213v1,-59,-21,-69,-77,-68v-26,1,-75,15,-146,42v17,9,20,24,5,32v-28,0,-46,-25,-46,-32v0,-16,44,-37,131,-64r56,-13v53,3,80,11,80,20v33,24,36,43,34,89v-16,39,-42,65,-75,81v-46,22,-71,34,-78,34v-6,91,-14,168,-53,158v-6,-6,-18,-8,-13,-22v27,-80,15,-140,22,-227v-12,-47,39,-85,41,-28r3,96v66,-34,105,-67,116,-98","w":261},"Q":{"d":"159,-265v38,2,98,64,86,136r2,13v-17,54,-35,87,-55,98v19,44,29,71,29,84v-4,3,-5,8,-12,7v-10,-6,-23,-29,-38,-70r-60,10v-45,-11,-67,-23,-67,-36v-16,-12,-29,-43,-39,-93v0,-74,21,-139,70,-183v31,-28,79,-14,84,34xm49,-115v19,57,12,81,68,93v24,-4,35,-7,35,-10r-40,-75v27,7,39,29,60,57v17,-7,21,-31,34,-63v0,-43,-6,-70,-18,-82v0,-7,-13,-17,-38,-30v-17,-9,-38,11,-38,-14v-1,-4,9,-6,16,-11v0,-9,-6,-14,-16,-14v-32,11,-62,79,-63,149","w":260},"R":{"d":"138,-316v74,-12,132,17,156,59v2,38,-5,83,-25,78v-26,31,-68,54,-128,70v-18,0,-27,9,-27,28v95,60,141,84,169,123v3,17,-10,26,-19,26r-171,-104v-23,60,-46,90,-67,90v-4,-6,-14,-8,-14,-17v0,-6,14,-41,41,-104v-38,-36,-39,-71,29,-78v8,0,18,-26,32,-76v7,-26,17,-39,30,-39v13,6,18,13,18,22v0,26,-17,59,-16,82v52,-21,86,-41,102,-62r3,-23v-22,-22,-45,-33,-67,-33v-84,0,-126,14,-126,31v-8,18,-65,-7,-56,-12r0,-14v0,-15,45,-32,136,-47","w":284},"S":{"d":"217,-51v-18,-34,-218,-79,-206,-108v-8,-6,-11,-13,-11,-24v0,-44,161,-119,218,-117v36,10,42,40,4,52v-6,-5,0,-12,-7,-15v-32,0,-86,22,-162,65v-6,10,-11,15,-15,15v0,12,53,29,148,67v56,22,59,31,65,69v4,27,-55,67,-133,85v-15,0,-22,-6,-20,-22v-5,-10,110,-45,119,-67","w":247},"T":{"d":"233,-303r83,0v6,5,9,10,9,22v0,9,-32,15,-97,17v-32,8,-49,12,-49,14v-29,84,-49,168,-63,249v-8,44,-38,65,-47,17v13,-83,32,-173,64,-258v-32,6,-59,15,-90,22v10,20,22,30,7,34v-32,-15,-47,-24,-46,-42v0,-28,76,-52,229,-75","w":232},"U":{"d":"171,-314v26,2,22,51,22,82v0,106,-9,179,-25,219v-20,49,-37,74,-53,74v-28,0,-47,-19,-63,-54v-24,-51,-54,-121,-54,-214v0,-40,41,-46,41,-4v0,7,0,14,-3,17v22,126,47,189,74,189v13,-14,26,-54,38,-119v-3,-53,-10,-192,23,-190"},"V":{"d":"180,-310v7,-14,41,-14,49,0r0,6v-12,0,-29,42,-52,126v-7,25,-21,91,-39,198v-9,2,-16,6,-27,5v-14,2,-54,-96,-102,-275v18,-19,38,-3,48,26r51,151r3,0v10,-75,31,-155,69,-237","w":212},"W":{"d":"245,-320v10,-1,25,-7,26,6r-82,373v-33,27,-59,-17,-57,-55r-28,-105v-9,8,-23,41,-44,99v-21,13,-42,5,-40,-27v-8,-25,-11,-141,-9,-215v1,-32,1,-54,23,-54v9,0,16,5,21,16v-2,55,-5,125,2,178v14,-31,23,-48,43,-45v30,4,44,21,44,43v5,7,11,28,19,61v4,-4,14,-48,33,-133v22,-95,39,-142,49,-142","w":265},"X":{"d":"13,-285v0,-12,7,-18,19,-18v17,4,63,83,82,107v54,-67,82,-100,100,-99v3,5,10,8,8,18r-89,112r104,142v5,21,-7,44,-21,44v-9,0,-15,-11,-19,-34v-59,-70,-89,-110,-89,-118v-19,21,-44,58,-72,110r0,8v26,10,71,-15,72,18v0,11,-20,16,-59,16v-22,9,-52,-13,-49,-23v0,-32,29,-87,85,-163v-12,-15,-27,-37,-43,-68v-23,3,-14,-13,-29,-52","w":240},"Y":{"d":"15,-260v-11,-5,-5,27,-20,20v0,-9,4,-21,-2,-26v3,-21,11,-31,26,-30v18,0,35,18,50,54v15,22,25,57,44,90v16,-41,42,-91,78,-151v-3,-17,28,-34,39,-16v-4,17,-130,278,-159,365v-11,1,-17,3,-21,-8v11,-53,28,-105,45,-158v-7,0,-12,-12,-22,-32v-29,-63,-50,-98,-58,-108","w":193},"Z":{"d":"228,-59v14,43,-143,68,-163,73v-39,-1,-46,-12,-46,-46v0,-12,24,-42,71,-90v-11,-3,-17,-9,-17,-19v0,-17,24,-29,71,-34v35,-48,62,-82,56,-95r-168,20v-27,-3,-34,-5,-32,-27v0,-7,11,-14,32,-20r7,3v83,-13,135,-20,155,-20v29,1,48,17,47,32v0,22,-14,56,-43,102v4,12,25,-4,26,15v0,10,-11,14,-35,14v-14,0,-33,17,-58,51v-26,23,-48,45,-64,66r155,-34","w":219},"[":{"d":"24,-319v65,1,97,7,96,27v0,8,-5,12,-15,12v-24,0,-52,-10,-70,-4r0,272v16,-3,29,-8,49,-7v25,8,37,15,36,29v-9,18,-26,0,-47,4v-17,-2,-30,17,-51,17v-11,0,-17,-6,-17,-17r0,-312v0,-10,6,-17,19,-21","w":100},"\\":{"d":"9,-300v2,-12,5,-17,13,-16v7,0,15,22,33,64v59,132,93,205,93,224v0,7,-5,10,-10,10v-9,0,-20,-28,-43,-82v-35,-85,-67,-150,-86,-200","w":147},"]":{"d":"46,-301v22,-2,65,-18,70,7v-14,119,-2,193,-2,305v0,13,-5,25,-21,23v-19,-9,-49,-15,-89,-20v-6,-13,-5,-27,14,-29v34,4,54,7,62,11v2,-73,-8,-228,8,-275v-25,-1,-30,1,-63,9v-4,0,-7,-4,-11,-11v0,-11,11,-18,32,-20","w":100},"^":{"d":"67,-316v17,-6,20,5,29,30v8,23,26,37,32,63v-4,4,-6,9,-15,7v-19,-18,-32,-37,-39,-59r-4,0v-12,27,-26,51,-41,73v-11,1,-20,-1,-18,-12","w":144},"_":{"d":"14,8v60,-6,119,-15,181,-7v8,-4,17,2,16,12v0,7,-2,11,-8,11v-20,0,-45,-6,-73,-4r-116,9v-7,0,-10,-4,-10,-12v0,-5,3,-8,10,-9"},"`":{"d":"11,-319v30,2,20,26,42,49v0,6,-8,9,-22,9v-19,-11,-31,-26,-38,-45v5,-9,10,-13,18,-13","w":70},"a":{"d":"16,-58v58,-168,71,-195,128,-28v21,-4,66,-6,56,16v0,7,-14,12,-42,16v2,20,20,54,-9,54v-10,0,-20,-16,-30,-47v-44,6,-55,15,-61,28r-16,-2v1,12,-10,15,-23,14v-7,0,-13,-12,-19,-35v0,-3,5,-8,16,-16xm82,-135r-24,65v16,-4,33,-7,44,-16v-11,-33,-17,-49,-20,-49"},"b":{"d":"96,-197v40,-12,96,14,90,38v0,26,-24,49,-72,70r0,6v41,15,61,33,61,52v0,27,-53,44,-157,52v-23,-8,-19,-42,12,-38v-1,-45,1,-62,17,-110v-13,11,-40,1,-40,-17v0,-14,28,-35,89,-53xm91,-159v8,10,-4,26,-6,38v32,-13,51,-23,52,-35v-14,-3,-29,-3,-46,-3xm73,-69v-6,11,-6,31,-6,49v39,-9,58,-15,58,-20","w":193},"c":{"d":"4,-56v21,-63,58,-127,138,-133v20,19,13,32,-27,45v-37,30,-56,49,-64,91v18,21,64,19,105,19v5,3,7,8,6,17v-4,11,-33,18,-84,22v-46,-11,-69,-28,-69,-50v-4,0,-5,-4,-5,-11","w":168},"d":{"d":"98,-185v64,12,104,25,99,101v-3,51,-67,108,-113,108v-24,0,-28,-21,-19,-37v-18,-15,-20,-78,-19,-126v-16,0,-24,8,-24,24v-15,3,-17,-12,-22,-37v5,-20,38,-31,98,-33xm72,-142r12,126v53,-27,79,-50,77,-93v-12,-23,-45,-34,-89,-33"},"e":{"d":"164,-200v11,5,17,13,17,23v0,16,-36,32,-110,46v3,13,3,25,0,39v38,-10,65,-16,83,-16v5,7,8,14,7,27v-4,6,-39,20,-104,42r0,4v30,22,90,-26,91,27v0,11,-22,22,-67,34v-38,-1,-74,-14,-74,-53v0,-42,7,-74,23,-96v-17,-8,-17,-15,-16,-35v5,-15,28,-22,70,-22","w":184},"f":{"d":"128,-198v17,4,22,6,20,20v0,6,-27,14,-79,23v6,15,-4,41,2,54r47,-6v15,28,-5,32,-54,43v-6,57,-17,85,-32,85v-38,0,-9,-51,-7,-77v-25,-5,-17,-36,7,-51r0,-17v-14,20,-32,1,-32,-22v0,-23,43,-41,128,-52","w":135},"g":{"d":"102,-176v25,-12,70,-15,66,30v-8,16,-26,13,-41,8v-36,15,-68,30,-74,72v13,22,37,29,71,27v4,2,5,5,11,5r11,-24v-21,2,-60,14,-55,-17v9,-15,38,-22,88,-22v11,3,19,9,17,25r-39,77v7,41,-43,35,-38,8r5,-27v-53,18,-115,2,-115,-58v0,-37,30,-74,93,-104"},"h":{"d":"48,-185v34,-4,27,61,21,91r53,0r6,-32v-8,0,-16,-1,-15,-6v23,-42,17,-56,44,-53v30,13,11,59,9,91v15,6,16,10,15,27v0,5,-9,10,-27,15v-5,35,-16,63,-32,85v-46,1,-11,-55,-12,-85v-14,4,-32,3,-50,3v0,21,-12,43,-36,67v-12,2,-14,-6,-20,-11v4,-12,17,-106,17,-169v0,-13,9,-21,27,-23","w":188},"i":{"d":"105,-212v41,11,56,4,53,27v0,6,-18,12,-53,20v-7,56,-19,74,-15,120r43,-14v9,5,13,8,13,17v-3,6,-36,26,-99,60v1,8,-24,7,-35,7v-7,-8,-12,-17,-10,-34v11,-9,14,-27,30,-30v6,-1,5,14,3,20r27,-13v-7,-33,-11,-67,0,-103r-10,-4v-8,33,-26,33,-28,-6v-2,-41,48,-54,81,-67","w":144},"j":{"d":"83,-49v-9,-35,-20,-87,-65,-89v-16,-12,-11,-29,0,-40v34,6,66,-2,98,-6v26,3,32,0,30,19v0,6,-21,15,-63,27v20,38,30,70,30,95v0,44,-33,64,-74,64v-43,-14,-58,-30,-37,-58v19,3,29,17,54,12v19,-4,27,-14,27,-24","w":114},"k":{"d":"170,-139v3,18,-40,43,-99,72r0,3v37,20,75,35,115,46v2,4,7,6,6,13v0,6,-12,10,-35,11v-42,-8,-78,-23,-110,-46r-6,0v-13,51,-6,73,-29,70v-5,0,-10,-12,-14,-35v23,-113,44,-169,62,-169v10,-1,14,3,16,11r-19,67v36,-16,66,-38,105,-51","w":180},"l":{"d":"9,-158v0,-31,34,-38,34,-8v0,52,-4,101,-11,146v28,-9,47,-28,82,-30v3,5,10,6,9,15v-29,27,-55,48,-99,54v-17,-5,-26,-15,-26,-29v0,-62,11,-111,11,-148","w":108},"m":{"d":"187,30v-41,17,-31,-90,-44,-87v-29,102,-63,101,-89,-3r-2,0v-1,24,-6,51,2,70v-7,25,-5,32,-23,32v-18,0,-24,-16,-24,-41v0,-64,10,-116,31,-159v40,-13,40,24,60,101r3,0v16,-52,31,-78,47,-78v27,-8,49,74,47,148v0,10,-3,15,-8,17","w":205},"n":{"d":"161,-167v11,0,11,7,16,11v-2,65,12,197,-42,189v-13,-7,-40,-34,-78,-82v-1,46,-11,69,-39,68v-10,-4,-14,-14,-13,-29v6,-10,13,-41,20,-93v9,-14,16,-19,32,-18r75,94r0,-22v0,-79,10,-118,29,-118","w":169},"o":{"d":"179,-100v2,88,-46,115,-107,126v-25,5,-60,-26,-65,-67v3,-27,16,-59,40,-96v0,-13,9,-21,25,-21v72,0,107,19,107,58xm50,-41v4,16,13,24,28,24v43,-12,64,-32,64,-64v-1,-43,-48,-31,-70,-16v-14,26,-22,45,-22,56","w":182},"p":{"d":"62,-180v77,8,110,32,105,97v-36,45,-58,65,-99,63v-2,58,-2,84,-20,83v-46,-1,-24,-85,-29,-130v-11,-15,-21,-36,-21,-63v0,-23,21,-40,64,-50xm33,-127v21,0,32,26,32,77v18,-5,29,-23,55,-50v-10,-35,-65,-46,-87,-27","w":165},"q":{"d":"82,-194v25,5,63,-16,60,23v26,-2,55,34,57,87v0,13,-8,34,-26,64v22,25,30,32,13,50v-25,1,-29,-19,-44,-27v-44,37,-146,-3,-137,-53v-3,-65,22,-84,77,-144xm89,-144v-27,36,-40,62,-40,80v0,18,7,31,23,37r40,0v-3,-18,-11,-31,-16,-47v6,-4,9,-11,20,-10r30,30v29,-50,18,-76,-57,-90"},"r":{"d":"107,-179v37,10,56,26,55,57v-15,27,-43,46,-82,57r0,7v50,29,75,45,76,69v-5,4,-6,9,-16,9v-9,0,-40,-16,-93,-48v0,32,-12,50,-34,54v-10,-5,-15,-7,-15,-15v-3,-56,12,-104,6,-151v34,-26,68,-39,103,-39xm53,-131v2,9,5,21,0,30v39,-10,77,-25,51,-36v-20,-1,-35,3,-51,6","w":152},"s":{"d":"128,-173v15,-5,28,-1,28,17v0,11,-15,20,-45,28r-54,28r0,5v70,27,98,34,92,90v-38,39,-64,57,-94,56v-31,-26,-3,-34,37,-56v6,-8,19,-9,19,-24v-10,-9,-38,-22,-84,-40v-14,-11,-22,-21,-22,-31v0,-19,41,-46,123,-73","w":165},"t":{"d":"86,-182v37,0,56,6,56,17v0,13,-17,20,-53,20v2,10,2,22,2,35v-5,88,-17,132,-38,132v-10,0,-15,-11,-17,-32r17,-106v-8,0,-20,9,-25,3v4,-9,15,-10,20,-23v-10,0,-20,8,-28,23v-19,2,-19,-15,-20,-40v13,-19,41,-29,86,-29","w":124},"u":{"d":"70,-168v12,4,18,11,17,21r-14,115r4,10v24,-17,51,-53,83,-108v11,-7,15,-20,35,-17r11,14v-42,111,-84,167,-126,167v-40,0,-42,-12,-62,-59v5,-53,15,-98,31,-136"},"v":{"d":"168,-176r10,12r-44,163v-7,25,-19,38,-35,38v-32,0,-95,-102,-97,-163v5,-5,7,-12,19,-10v7,4,23,34,47,88v10,10,15,25,28,31v21,-107,45,-159,72,-159","w":180},"w":{"d":"4,-138v-5,-22,11,-30,34,-28v13,6,31,48,53,126r3,0v23,-26,19,-34,49,-32v14,9,21,18,21,25r7,0v17,-77,39,-116,67,-116v5,0,9,7,14,18v-19,110,-44,164,-74,164v-20,-5,-27,-17,-42,-21v-23,27,-27,32,-59,32v-19,0,-47,-55,-73,-168","w":259},"x":{"d":"-2,-154v-2,-17,11,-18,26,-17v11,0,33,18,63,54r68,-54v14,0,21,7,20,22r-63,60v35,61,54,62,51,111r-11,6v-34,-25,-59,-52,-74,-82v-26,23,-40,43,-43,62v6,6,21,13,9,20v-27,0,-40,-9,-40,-26v0,-24,16,-53,48,-88v-22,-31,-39,-53,-54,-68","w":180},"y":{"d":"120,-208v18,1,42,-5,42,15v-16,11,-24,26,-24,43v-23,108,-36,183,-40,224v-7,9,-18,2,-23,-6v-2,-53,3,-99,8,-145v-61,-34,-90,-75,-90,-100v4,-7,9,-10,16,-10r71,73v4,2,5,6,11,6v5,-42,15,-75,29,-100","w":162},"z":{"d":"89,-158v30,1,90,-25,90,15v0,14,-16,31,-33,57v8,1,11,3,10,10v0,7,-16,12,-49,16r-44,38r134,0v4,5,10,7,10,18v0,11,-42,23,-126,23v-51,0,-68,-10,-64,-49v4,-9,8,-13,13,-13v-3,-5,-9,-7,-8,-15v0,-8,18,-16,52,-23r54,-46v-26,-1,-70,12,-126,23v-6,-6,-11,-9,-11,-23v0,-10,33,-20,98,-31","w":195},"{":{"d":"75,-143v-8,16,-17,11,-41,29v6,4,20,8,41,13v9,10,3,11,-14,16v-36,35,-40,84,9,123v5,10,20,19,30,31v-13,11,-28,-5,-41,-20v-30,-37,-42,-44,-42,-74v0,-29,10,-52,30,-69v-8,-3,-25,-7,-36,-20v-2,-9,32,-17,38,-28v-84,-21,-32,-144,21,-168v4,1,5,4,5,7v-33,43,-59,63,-56,114v-5,18,43,43,53,42","w":98},"|":{"d":"28,-284v-2,-29,15,-33,28,-21v6,113,20,227,7,340v0,4,-4,9,-12,10v-14,1,-20,-13,-18,-31v12,-97,0,-198,-5,-298","w":93},"}":{"d":"46,-207v0,-58,-17,-78,-41,-112v2,-4,4,-5,9,-5v26,11,81,133,22,172v4,7,23,12,27,27v-1,4,-8,12,-20,24v27,15,37,49,40,70v2,16,-22,73,-57,111v-6,1,-9,-2,-9,-7v4,-11,56,-89,51,-104v-11,-32,-18,-48,-22,-48v-5,-11,-22,-7,-23,-22v7,-9,16,-15,22,-25v-1,-9,-27,-9,-34,-23v4,-10,43,-28,35,-58","w":84},"~":{"d":"0,-109v16,-40,44,-76,81,-84v12,0,22,19,30,59r9,7v21,-11,43,-35,65,-73v7,-5,23,-6,22,7v-14,27,-44,82,-91,91v-35,-11,-30,-38,-40,-67v-24,16,-43,39,-55,67v-6,6,-22,5,-21,-7","w":210},"\u00a1":{"w":119},"\u00a2":{"d":"97,-213v7,-22,-9,-61,18,-59v15,6,9,36,10,56v24,-5,49,24,27,37v-15,1,-14,-14,-29,-11v-1,35,-3,67,-6,95v15,6,45,-14,44,11v0,4,-16,10,-46,18v-10,66,1,93,-21,91v-10,-3,-11,-10,-10,-21r5,-73v-89,-26,-66,-98,8,-144xm95,-177v-31,28,-52,48,-21,73v6,3,11,5,16,5"},"\u00a3":{},"\u00a4":{},"\u00a5":{},"\u00a6":{"w":93},"\u00a7":{},"\u00a8":{"d":"126,-311v29,3,19,26,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm53,-313v29,3,19,27,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14","w":70},"\u00a9":{"d":"94,-247v-1,-10,12,-14,25,-12v126,17,115,25,140,97v0,85,-40,139,-121,162v-38,0,-68,-15,-94,-37v-30,-25,-45,-53,-44,-97v0,-28,20,-59,59,-93v23,-10,35,-18,35,-20xm129,-227v-60,17,-100,45,-100,98v0,51,41,101,111,100v65,-29,95,-65,91,-135v-12,-42,-26,-54,-55,-56v-10,10,-22,-14,-47,-7xm121,-192v26,-4,54,13,30,28v-25,-8,-56,5,-54,26v-4,16,37,63,54,30v10,-7,22,2,22,13v0,13,-12,24,-36,27v-25,3,-67,-28,-67,-70v0,-28,17,-48,51,-54","w":265},"\u00aa":{"w":133},"\u00ab":{},"\u00ac":{"w":210},"\u00ae":{"w":265},"\u00af":{"w":198},"\u00b0":{"w":143},"\u00b1":{"w":197},"\u00b2":{"w":119},"\u00b3":{"w":119},"\u00b4":{"w":119},"\u00b5":{"w":207},"\u00b6":{"w":193},"\u00b7":{"w":100},"\u2219":{"w":100},"\u00b8":{"w":119},"\u00b9":{"w":119},"\u00ba":{"w":131},"\u00bb":{},"\u00bc":{"w":300},"\u00bd":{"w":300},"\u00be":{"w":300},"\u00bf":{"w":219},"\u00c0":{"w":240},"\u00c1":{"w":240},"\u00c2":{"w":240},"\u00c3":{"w":240},"\u00c4":{"d":"170,-329v29,3,19,26,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm97,-331v29,3,19,27,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm140,-242v31,-20,42,-2,52,41v4,6,17,46,41,120r79,-8v8,2,12,7,12,13v0,7,-16,12,-49,18v-21,4,-31,3,-30,10v25,69,38,114,38,136v0,13,-8,21,-26,21v-9,0,-16,-18,-20,-54r-34,-100r-104,15v-33,70,-50,106,-76,102v-36,-5,3,-40,10,-55v6,-13,19,-32,18,-42v-21,-1,-51,13,-54,-13v0,-7,24,-14,72,-20v14,-50,53,-165,71,-184xm154,-184v-15,32,-28,71,-40,119r80,-9v-14,-36,-23,-77,-40,-110","w":283},"\u00c5":{"w":240},"\u00c6":{"w":360},"\u00c7":{"w":259},"\u00c8":{"w":240},"\u00c9":{"w":240},"\u00ca":{"w":240},"\u00cb":{"w":240},"\u00cc":{"w":100},"\u00cd":{"w":100},"\u00ce":{"w":100},"\u00cf":{"w":100},"\u00d0":{"w":259},"\u00d1":{"w":259},"\u00d2":{"w":280},"\u00d3":{"w":280},"\u00d4":{"w":280},"\u00d5":{"w":280},"\u00d6":{"d":"165,-257v29,-3,19,-26,41,-49v0,-6,-8,-9,-22,-9v-19,11,-31,25,-38,44v5,9,11,14,19,14xm92,-255v29,-3,19,-27,41,-49v0,-6,-8,-9,-22,-9v-19,11,-31,25,-38,44v5,9,11,14,19,14xm5,-7v-1,-61,19,-138,50,-181v-8,4,-21,12,-20,-4v28,-27,43,-43,83,-45v70,-3,116,40,129,96v12,51,-17,146,-28,145v-7,22,-27,42,-60,62v0,2,-16,6,-48,11v-39,-6,-64,-17,-74,-31v-8,-3,-18,-21,-32,-53xm39,-15v21,39,20,57,69,57v37,0,66,-20,87,-61v16,-2,29,-134,0,-143v-2,-8,-14,-18,-34,-29v-10,5,-12,-9,-29,-6v-54,11,-98,108,-93,182","w":253},"\u00d7":{"w":210},"\u00d8":{"w":280},"\u00d9":{"w":259},"\u00da":{"w":259},"\u00db":{"w":259},"\u00dc":{"d":"105,-262v29,-4,19,-33,41,-61v-0,-8,-8,-11,-22,-11v-19,13,-31,31,-38,54v5,11,11,18,19,18xm33,-260v29,-4,19,-33,41,-61v-0,-7,-8,-11,-22,-11v-19,14,-31,31,-37,55v4,11,10,17,18,17xm173,-291v26,2,22,51,22,82v0,106,-9,179,-25,219v-20,49,-37,74,-53,74v-28,0,-47,-19,-63,-54v-24,-51,-54,-121,-54,-214v0,-40,41,-46,41,-4v0,7,0,14,-3,17v22,126,47,189,74,189v13,-14,26,-54,38,-119v-3,-53,-10,-192,23,-190"},"\u00dd":{"w":240},"\u00de":{"w":240},"\u00df":{"d":"157,-152v13,12,83,18,83,63v0,20,-24,37,-67,60v-31,16,-53,33,-72,33v-5,0,-9,-2,-10,-7v-2,-25,121,-58,122,-90v0,-8,-23,-20,-70,-36v0,156,-4,244,-12,241r-14,0v-3,-1,-5,-56,-5,-166v0,-98,7,-147,9,-147v8,-9,21,-9,22,5v1,6,-2,16,1,20r40,-42r-10,-20v0,0,1,-1,-87,38v-11,5,-18,12,-18,17v0,5,-3,5,-7,5v-43,0,-63,-2,-65,-7v-6,-19,29,-37,108,-54r78,-20v22,7,15,48,3,65","w":240},"\u00e0":{},"\u00e1":{},"\u00e2":{},"\u00e3":{},"\u00e4":{"d":"112,-278v29,3,19,26,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm39,-280v29,3,19,27,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm16,-58v58,-168,71,-195,128,-28v21,-4,66,-6,56,16v0,7,-14,12,-42,16v2,20,20,54,-9,54v-10,0,-20,-16,-30,-47v-44,6,-55,15,-61,28r-16,-2v1,12,-10,15,-23,14v-7,0,-13,-12,-19,-35v0,-3,5,-8,16,-16xm82,-135r-24,65v16,-4,33,-7,44,-16v-11,-33,-17,-49,-20,-49"},"\u00e5":{},"\u00e6":{"w":320},"\u00e7":{"w":180},"\u00e8":{},"\u00e9":{},"\u00ea":{},"\u00eb":{},"\u00ec":{"w":100},"\u00ed":{"w":100},"\u00ee":{"w":100},"\u00ef":{"w":100},"\u00f0":{},"\u00f1":{},"\u00f2":{},"\u00f3":{},"\u00f4":{},"\u00f5":{},"\u00f6":{"d":"99,-238v29,3,19,26,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm26,-240v29,3,19,27,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm179,-100v2,88,-46,115,-107,126v-25,5,-60,-26,-65,-67v3,-27,16,-59,40,-96v0,-13,9,-21,25,-21v72,0,107,19,107,58xm50,-41v4,16,13,24,28,24v43,-12,64,-32,64,-64v-1,-43,-48,-31,-70,-16v-14,26,-22,45,-22,56","w":182},"\u00f7":{"w":197},"\u00f8":{"w":219},"\u00f9":{},"\u00fa":{},"\u00fb":{},"\u00fc":{"d":"148,-251v29,3,19,26,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm75,-253v29,3,19,27,41,49v0,6,-8,9,-22,9v-19,-11,-31,-25,-38,-44v5,-9,11,-14,19,-14xm70,-168v12,4,18,11,17,21r-14,115r4,10v24,-17,51,-53,83,-108v11,-7,15,-20,35,-17r11,14v-42,111,-84,167,-126,167v-40,0,-42,-12,-62,-59v5,-53,15,-98,31,-136"},"\u00fd":{"w":180},"\u00fe":{},"\u00ff":{"w":180},"\u0100":{"w":240},"\u0101":{},"\u0102":{"w":240},"\u0103":{},"\u0104":{"w":240},"\u0105":{},"\u0106":{"w":259},"\u0107":{"w":180},"\u0108":{"w":259},"\u0109":{"w":180},"\u010a":{"w":259},"\u010b":{"w":180},"\u010c":{"w":259},"\u010d":{"w":180},"\u010e":{"w":259},"\u010f":{"w":221},"\u0110":{"w":259},"\u0111":{},"\u0112":{"w":240},"\u0113":{},"\u0114":{"w":240},"\u0115":{},"\u0116":{"w":240},"\u0117":{},"\u0118":{"w":240},"\u0119":{},"\u011a":{"w":240},"\u011b":{},"\u011c":{"w":280},"\u011d":{},"\u011e":{"w":280},"\u011f":{},"\u0120":{"w":280},"\u0121":{},"\u0122":{"w":280},"\u0123":{},"\u0124":{"w":259},"\u0125":{},"\u0126":{"w":259},"\u0127":{},"\u0128":{"w":100},"\u0129":{"w":100},"\u012a":{"w":100},"\u012b":{"w":100},"\u012c":{"w":100},"\u012d":{"w":100},"\u012e":{"w":100},"\u012f":{"w":79},"\u0130":{"w":100},"\u0131":{"w":100},"\u0132":{"w":264},"\u0133":{"w":159},"\u0134":{"w":180},"\u0135":{"w":79},"\u0136":{"w":240},"\u0137":{"w":180},"\u0138":{"w":180},"\u0139":{},"\u013a":{"w":79},"\u013b":{},"\u013c":{"w":79},"\u013d":{},"\u013e":{"w":104},"\u013f":{},"\u0140":{"w":120},"\u0141":{},"\u0142":{"w":79},"\u0143":{"w":259},"\u0144":{},"\u0145":{"w":259},"\u0146":{},"\u0147":{"w":259},"\u0148":{},"\u0149":{"w":217},"\u014a":{"w":260},"\u014b":{},"\u014c":{"w":280},"\u014d":{},"\u014e":{"w":280},"\u014f":{},"\u0150":{"w":280},"\u0151":{},"\u0152":{"w":360},"\u0153":{"w":339},"\u0154":{"w":259},"\u0155":{"w":119},"\u0156":{"w":259},"\u0157":{"w":119},"\u0158":{"w":259},"\u0159":{"w":119},"\u015a":{"w":240},"\u015b":{"w":180},"\u015c":{"w":240},"\u015d":{"w":180},"\u015e":{"w":240},"\u015f":{"w":180},"\u0160":{"w":240},"\u0161":{"w":180},"\u0162":{"w":219},"\u0163":{"w":100},"\u0164":{"w":219},"\u0165":{"w":135},"\u0166":{"w":219},"\u0167":{"w":100},"\u0168":{"w":259},"\u0169":{},"\u016a":{"w":259},"\u016b":{},"\u016c":{"w":259},"\u016d":{},"\u016e":{"w":259},"\u016f":{},"\u0170":{"w":259},"\u0171":{},"\u0172":{"w":259},"\u0173":{},"\u0174":{"w":339},"\u0175":{"w":259},"\u0176":{"w":240},"\u0177":{"w":180},"\u0178":{"w":240},"\u0179":{"w":219},"\u017a":{"w":180},"\u017b":{"w":219},"\u017c":{"w":180},"\u017d":{"w":219},"\u017e":{"w":180},"\u017f":{"w":79},"\u0192":{},"\u01fa":{"w":240},"\u01fb":{},"\u01fc":{"w":360},"\u01fd":{"w":320},"\u01fe":{"w":280},"\u01ff":{"w":219}}}); // Nice headlines thanks to Cufon, see http://cufon.shoqolate.com/generate/ if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) Cufon.replace('ul#nav li a')('h1')('h2')('h3')('.submit-button button'); // jquery cycle plugin /* * jQuery Cycle Plugin (with Transition Definitions) * Examples and documentation at: http://jquery.malsup.com/cycle/ * Copyright (c) 2007-2009 M. Alsup * Version: 2.73 (04-NOV-2009) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * Requires: jQuery v1.2.6 or later * * Originally based on the work of: * 1) Matt Oakes * 2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/) * 3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/) */ (function(i){var l="2.73";if(i.support==undefined){i.support={opacity:!(i.browser.msie)}}function a(q){if(i.fn.cycle.debug){f(q)}}function f(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "))}}i.fn.cycle=function(r,q){var s={s:this.selector,c:this.context};if(this.length===0&&r!="stop"){if(!i.isReady&&s.s){f("DOM not ready, queuing slideshow");i(function(){i(s.s,s.c).cycle(r,q)});return this}f("terminating; zero elements found by selector"+(i.isReady?"":" (DOM not ready)"));return this}return this.each(function(){var w=m(this,r,q);if(w===false){return}if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=this.cyclePause=0;var x=i(this);var y=w.slideExpr?i(w.slideExpr,this):x.children();var u=y.get();if(u.length<2){f("terminating; too few slides: "+u.length);return}var t=k(x,y,u,w,s);if(t===false){return}var v=t.continuous?10:h(t.currSlide,t.nextSlide,t,!t.rev);if(v){v+=(t.delay||0);if(v<10){v=10}a("first timeout: "+v);this.cycleTimeout=setTimeout(function(){e(u,t,0,!t.rev)},v)}})};function m(q,t,r){if(q.cycleStop==undefined){q.cycleStop=0}if(t===undefined||t===null){t={}}if(t.constructor==String){switch(t){case"stop":q.cycleStop++;if(q.cycleTimeout){clearTimeout(q.cycleTimeout)}q.cycleTimeout=0;i(q).removeData("cycle.opts");return false;case"pause":q.cyclePause=1;return false;case"resume":q.cyclePause=0;if(r===true){t=i(q).data("cycle.opts");if(!t){f("options not found, can not resume");return false}if(q.cycleTimeout){clearTimeout(q.cycleTimeout);q.cycleTimeout=0}e(t.elements,t,1,1)}return false;case"prev":case"next":var u=i(q).data("cycle.opts");if(!u){f('options not found, "prev/next" ignored');return false}i.fn.cycle[t](u);return false;default:t={fx:t}}return t}else{if(t.constructor==Number){var s=t;t=i(q).data("cycle.opts");if(!t){f("options not found, can not advance slide");return false}if(s<0||s>=t.elements.length){f("invalid slide index: "+s);return false}t.nextSlide=s;if(q.cycleTimeout){clearTimeout(q.cycleTimeout);q.cycleTimeout=0}if(typeof r=="string"){t.oneTimeFx=r}e(t.elements,t,1,s>=t.currSlide);return false}}return t}function b(q,r){if(!i.support.opacity&&r.cleartype&&q.style.filter){try{q.style.removeAttribute("filter")}catch(s){}}}function k(y,J,u,t,E){var C=i.extend({},i.fn.cycle.defaults,t||{},i.metadata?y.metadata():i.meta?y.data():{});if(C.autostop){C.countdown=C.autostopCount||u.length}var r=y[0];y.data("cycle.opts",C);C.$cont=y;C.stopCount=r.cycleStop;C.elements=u;C.before=C.before?[C.before]:[];C.after=C.after?[C.after]:[];C.after.unshift(function(){C.busy=0});if(!i.support.opacity&&C.cleartype){C.after.push(function(){b(this,C)})}if(C.continuous){C.after.push(function(){e(u,C,0,!C.rev)})}n(C);if(!i.support.opacity&&C.cleartype&&!C.cleartypeNoBg){g(J)}if(y.css("position")=="static"){y.css("position","relative")}if(C.width){y.width(C.width)}if(C.height&&C.height!="auto"){y.height(C.height)}if(C.startingSlide){C.startingSlide=parseInt(C.startingSlide)}if(C.random){C.randomMap=[];for(var H=0;H=u.length){C.startingSlide=0}}C.currSlide=C.startingSlide=C.startingSlide||0;var x=C.startingSlide;J.css({position:"absolute",top:0,left:0}).hide().each(function(w){var L=x?w>=x?u.length-(w-x):x-w:u.length-w;i(this).css("z-index",L)});i(u[x]).css("opacity",1).show();b(u[x],C);if(C.fit&&C.width){J.width(C.width)}if(C.fit&&C.height&&C.height!="auto"){J.height(C.height)}var D=C.containerResize&&!y.innerHeight();if(D){var v=0,B=0;for(var F=0;Fv?A:v;B=I>B?I:B}if(v>0&&B>0){y.css({width:v+"px",height:B+"px"})}}if(C.pause){y.hover(function(){this.cyclePause++},function(){this.cyclePause--})}if(c(C)===false){return false}var s=false;t.requeueAttempts=t.requeueAttempts||0;J.each(function(){var N=i(this);this.cycleH=(C.fit&&C.height)?C.height:N.height();this.cycleW=(C.fit&&C.width)?C.width:N.width();if(N.is("img")){var L=(i.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var O=(i.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var M=(i.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var w=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(L||O||M||w){if(E.s&&C.requeueOnImageNotLoaded&&++t.requeueAttempts<100){f(t.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){i(E.s,E.c).cycle(t)},C.requeueTimeout);s=true;return false}else{f("could not determine size of image: "+this.src,this.cycleW,this.cycleH)}}}return true});if(s){return false}C.cssBefore=C.cssBefore||{};C.animIn=C.animIn||{};C.animOut=C.animOut||{};J.not(":eq("+x+")").css(C.cssBefore);if(C.cssFirst){i(J[x]).css(C.cssFirst)}if(C.timeout){C.timeout=parseInt(C.timeout);if(C.speed.constructor==String){C.speed=i.fx.speeds[C.speed]||parseInt(C.speed)}if(!C.sync){C.speed=C.speed/2}while((C.timeout-C.speed)<250){C.timeout+=C.speed}}if(C.easing){C.easeIn=C.easeOut=C.easing}if(!C.speedIn){C.speedIn=C.speed}if(!C.speedOut){C.speedOut=C.speed}C.slideCount=u.length;C.currSlide=C.lastSlide=x;if(C.random){C.nextSlide=C.currSlide;if(++C.randomIndex==u.length){C.randomIndex=0}C.nextSlide=C.randomMap[C.randomIndex]}else{C.nextSlide=C.startingSlide>=(u.length-1)?0:C.startingSlide+1}if(!C.multiFx){var G=i.fn.cycle.transitions[C.fx];if(i.isFunction(G)){G(y,J,C)}else{if(C.fx!="custom"&&!C.multiFx){f("unknown transition: "+C.fx,"; slideshow terminating");return false}}}var z=J[x];if(C.before.length){C.before[0].apply(z,[z,z,C,true])}if(C.after.length>1){C.after[1].apply(z,[z,z,C,true])}if(C.next){i(C.next).bind(C.prevNextEvent,function(){return o(C,C.rev?-1:1)})}if(C.prev){i(C.prev).bind(C.prevNextEvent,function(){return o(C,C.rev?1:-1)})}if(C.pager){d(u,C)}j(C,u);return C}function n(q){q.original={before:[],after:[]};q.original.cssBefore=i.extend({},q.cssBefore);q.original.cssAfter=i.extend({},q.cssAfter);q.original.animIn=i.extend({},q.animIn);q.original.animOut=i.extend({},q.animOut);i.each(q.before,function(){q.original.before.push(this)});i.each(q.after,function(){q.original.after.push(this)})}function c(w){var u,s,r=i.fn.cycle.transitions;if(w.fx.indexOf(",")>0){w.multiFx=true;w.fxs=w.fx.replace(/\s*/g,"").split(",");for(u=0;u=q.fxs.length){q.lastFx=0}v=q.fxs[q.lastFx];q.currFx=v}if(q.oneTimeFx){v=q.oneTimeFx;q.oneTimeFx=null}i.fn.cycle.resetState(q,v);if(q.before.length){i.each(q.before,function(B,C){if(u.cycleStop!=q.stopCount){return}C.apply(z,[A,z,q,y])})}var s=function(){i.each(q.after,function(B,C){if(u.cycleStop!=q.stopCount){return}C.apply(z,[A,z,q,y])})};if(q.nextSlide!=q.currSlide){q.busy=1;if(q.fxFn){q.fxFn(A,z,q,s,y)}else{if(i.isFunction(i.fn.cycle[q.fx])){i.fn.cycle[q.fx](A,z,q,s)}else{i.fn.cycle.custom(A,z,q,s,w&&q.fastOnEvent)}}}q.lastSlide=q.currSlide;if(q.random){q.currSlide=q.nextSlide;if(++q.randomIndex==x.length){q.randomIndex=0}q.nextSlide=q.randomMap[q.randomIndex]}else{var t=(q.nextSlide+1)==x.length;q.nextSlide=t?0:q.nextSlide+1;q.currSlide=t?x.length-1:q.nextSlide-1}if(q.pager){i.fn.cycle.updateActivePagerLink(q.pager,q.currSlide)}}var r=0;if(q.timeout&&!q.continuous){r=h(A,z,q,y)}else{if(q.continuous&&u.cyclePause){r=10}}if(r>0){u.cycleTimeout=setTimeout(function(){e(x,q,0,!q.rev)},r)}}i.fn.cycle.updateActivePagerLink=function(q,r){i(q).each(function(){i(this).find("a").removeClass("activeSlide").filter("a:eq("+r+")").addClass("activeSlide")})};function h(v,s,u,r){if(u.timeoutFn){var q=u.timeoutFn(v,s,u,r);while((q-u.speed)<250){q+=u.speed}a("calculated timeout: "+q+"; speed: "+u.speed);if(q!==false){return q}}return u.timeout}i.fn.cycle.next=function(q){o(q,q.rev?-1:1)};i.fn.cycle.prev=function(q){o(q,q.rev?1:-1)};function o(r,u){var q=r.elements;var t=r.$cont[0],s=t.cycleTimeout;if(s){clearTimeout(s);t.cycleTimeout=0}if(r.random&&u<0){r.randomIndex--;if(--r.randomIndex==-2){r.randomIndex=q.length-2}else{if(r.randomIndex==-1){r.randomIndex=q.length-1}}r.nextSlide=r.randomMap[r.randomIndex]}else{if(r.random){if(++r.randomIndex==q.length){r.randomIndex=0}r.nextSlide=r.randomMap[r.randomIndex]}else{r.nextSlide=r.currSlide+u;if(r.nextSlide<0){if(r.nowrap){return false}r.nextSlide=q.length-1}else{if(r.nextSlide>=q.length){if(r.nowrap){return false}r.nextSlide=0}}}}if(i.isFunction(r.prevNextClick)){r.prevNextClick(u>0,r.nextSlide,q[r.nextSlide])}e(q,r,1,u>=0);return false}function d(r,s){var q=i(s.pager);i.each(r,function(t,u){i.fn.cycle.createPagerAnchor(t,u,q,r,s)});i.fn.cycle.updateActivePagerLink(s.pager,s.startingSlide)}i.fn.cycle.createPagerAnchor=function(u,v,s,t,w){var r;if(i.isFunction(w.pagerAnchorBuilder)){r=w.pagerAnchorBuilder(u,v)}else{r=''+(u+1)+""}if(!r){return}var x=i(r);if(x.parents("body").length===0){var q=[];if(s.length>1){s.each(function(){var y=x.clone(true);i(this).append(y);q.push(y[0])});x=i(q)}else{x.appendTo(s)}}x.bind(w.pagerEvent,function(A){A.preventDefault();w.nextSlide=u;var z=w.$cont[0],y=z.cycleTimeout;if(y){clearTimeout(y);z.cycleTimeout=0}if(i.isFunction(w.pagerClick)){w.pagerClick(w.nextSlide,t[w.nextSlide])}e(t,w,1,w.currSlideq?u-q:t.slideCount-q}else{r=u=0){var u=t.match(/\d+/g);return"#"+r(u[0])+r(u[1])+r(u[2])}if(t&&t!="transparent"){return t}}return"#ffffff"}s.each(function(){i(this).css("background-color",q(this))})}i.fn.cycle.commonReset=function(v,t,u,r,s,q){i(u.elements).not(v).hide();u.cssBefore.opacity=1;u.cssBefore.display="block";if(r!==false&&t.cycleW>0){u.cssBefore.width=t.cycleW}if(s!==false&&t.cycleH>0){u.cssBefore.height=t.cycleH}u.cssAfter=u.cssAfter||{};u.cssAfter.display="none";i(v).css("zIndex",u.slideCount+(q===true?1:0));i(t).css("zIndex",u.slideCount+(q===true?0:1))};i.fn.cycle.custom=function(B,v,q,s,r){var A=i(B),w=i(v);var t=q.speedIn,z=q.speedOut,u=q.easeIn,y=q.easeOut;w.css(q.cssBefore);if(r){if(typeof r=="number"){t=z=r}else{t=z=1}u=y=null}var x=function(){w.animate(q.animIn,t,u,s)};A.animate(q.animOut,z,y,function(){if(q.cssAfter){A.css(q.cssAfter)}if(!q.sync){x()}});if(q.sync){x()}};i.fn.cycle.transitions={fade:function(r,s,q){s.not(":eq("+q.currSlide+")").css("opacity",0);q.before.push(function(v,t,u){i.fn.cycle.commonReset(v,t,u);u.cssBefore.opacity=0});q.animIn={opacity:1};q.animOut={opacity:0};q.cssBefore={top:0,left:0}}};i.fn.cycle.ver=function(){return l};i.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",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,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!i.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250}})(jQuery); /* * jQuery Cycle Plugin Transition Definitions * This script is a plugin for the jQuery Cycle Plugin * Examples and documentation at: http://malsup.com/jquery/cycle/ * Copyright (c) 2007-2008 M. Alsup * Version: 2.72 * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ (function(a){a.fn.cycle.transitions.none=function(c,d,b){b.fxFn=function(g,e,f,h){a(e).show();a(g).hide();h()}};a.fn.cycle.transitions.scrollUp=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.height();c.cssBefore={top:b,left:0};c.cssFirst={top:0};c.animIn={top:0};c.animOut={top:-b}};a.fn.cycle.transitions.scrollDown=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.height();c.cssFirst={top:0};c.cssBefore={top:-b,left:0};c.animIn={top:0};c.animOut={top:b}};a.fn.cycle.transitions.scrollLeft=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.width();c.cssFirst={left:0};c.cssBefore={left:b,top:0};c.animIn={left:0};c.animOut={left:0-b}};a.fn.cycle.transitions.scrollRight=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.width();c.cssFirst={left:0};c.cssBefore={left:-b,top:0};c.animIn={left:0};c.animOut={left:b}};a.fn.cycle.transitions.scrollHorz=function(c,d,b){c.css("overflow","hidden").width();b.before.push(function(h,f,g,e){a.fn.cycle.commonReset(h,f,g);g.cssBefore.left=e?(f.cycleW-1):(1-f.cycleW);g.animOut.left=e?-h.cycleW:h.cycleW});b.cssFirst={left:0};b.cssBefore={top:0};b.animIn={left:0};b.animOut={top:0}};a.fn.cycle.transitions.scrollVert=function(c,d,b){c.css("overflow","hidden");b.before.push(function(h,f,g,e){a.fn.cycle.commonReset(h,f,g);g.cssBefore.top=e?(1-f.cycleH):(f.cycleH-1);g.animOut.top=e?h.cycleH:-h.cycleH});b.cssFirst={top:0};b.cssBefore={left:0};b.animIn={top:0};b.animOut={left:0}};a.fn.cycle.transitions.slideX=function(c,d,b){b.before.push(function(g,e,f){a(f.elements).not(g).hide();a.fn.cycle.commonReset(g,e,f,false,true);f.animIn.width=e.cycleW});b.cssBefore={left:0,top:0,width:0};b.animIn={width:"show"};b.animOut={width:0}};a.fn.cycle.transitions.slideY=function(c,d,b){b.before.push(function(g,e,f){a(f.elements).not(g).hide();a.fn.cycle.commonReset(g,e,f,true,false);f.animIn.height=e.cycleH});b.cssBefore={left:0,top:0,height:0};b.animIn={height:"show"};b.animOut={height:0}};a.fn.cycle.transitions.shuffle=function(e,f,d){var c,b=e.css("overflow","visible").width();f.css({left:0,top:0});d.before.push(function(i,g,h){a.fn.cycle.commonReset(i,g,h,true,true,true)});if(!d.speedAdjusted){d.speed=d.speed/2;d.speedAdjusted=true}d.random=0;d.shuffle=d.shuffle||{left:-b,top:15};d.els=[];for(c=0;c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(p($){$.q.1Q=p(){J O.2n(p(){n b=$(O).u(\'2o\');8(b.1d(/^3i\\(["\']?(.*\\.2p)["\']?\\)$/i)){b=3j.$1;$(O).u({\'2o\':\'3k\',\'1e\':"3l:3m.3n.3o(3p=D, 3q="+($(O).u(\'3r\')==\'2q-3s\'?\'3t\':\'3u\')+", 13=\'"+b+"\')"}).2n(p(){n a=$(O).u(\'1u\');8(a!=\'2r\'&&a!=\'2s\')$(O).u(\'1u\',\'2s\')})}})};n l,4,1f=F,X=1v 1w,1x,1y=1,1z=/\\.(3v|3w|2p|3x|3y)(.*)?$/i;n m=1A,18=$.14.1g&&$.14.2t.1R(0,1)==6&&!19.3z,1S=18||($.14.1g&&$.14.2t.1R(0,1)==7);$.q.r=p(o){n j=$.2u({},$.q.r.2v,o);n k=O;p 2w(){l=O;4=$.2u({},j);2x();J F};p 2x(){8(1f)J;8($.1T(4.1U)){4.1U()}4.v=[];4.t=0;8(j.v.Y>0){4.v=j.v}C{n a={};8(!l.1B||l.1B==\'\'){n a={K:l.K,G:l.G};8($(l).1C("1l:1D").Y){a.S=$(l).1C("1l:1D")}C{a.S=$(l)}8(a.G==\'\'||1V a.G==\'1m\'){a.G=a.S.2y(\'1W\')}4.v.2z(a)}C{n b=$(k).1e("a[1B="+l.1B+"]");n a={};3A(n i=0;i=0){$.q.r.1F();1p(\'<1j s="2E" 3G="2F.q.r.2G()" 3H="3I\'+P.1b(P.3J()*3K)+\'" 2H="0" 3L="0" 13="\'+b+\'">\',4.1G,4.1H)}C 8(b.1d(/#/)){n c=19.3M.K.3N(\'#\')[0];c=b.3O(c,\'\');c=c.1R(c.2D(\'#\'));1p(\'<9 s="3P">\'+$(c).2I()+\'\',4.1G,4.1H)}C 8(b.1d(1z)){X=1v 1w;X.13=b;8(X.3Q){25()}C{$.q.r.1F();$(X).Q().11(\'3R\',p(){$("#M").1a();25()})}}C{$.q.r.1F();$.3S(b,p(a){$("#M").1a();1p(\'<9 s="3T">\'+a+\'\',4.1G,4.1H)})}};p 25(){n a=X.E;n b=X.A;n c=(4.N*2)+40;n d=(4.N*2)+26;n w=$.q.r.1q();8(4.2J&&(a>(w[0]-c)||b>(w[1]-d))){n e=P.28(P.28(w[0]-c,a)/a,P.28(w[1]-d,b)/b);a=P.1b(e*a);b=P.1b(e*b)}1p(\'<1l 1W="" s="3U" 13="\'+X.13+\'" />\',a,b)};p 2K(){8((4.v.Y-1)>4.t){n a=4.v[4.t+1].K||F;8(a&&a.1d(1z)){1I=1v 1w();1I.13=a}}8(4.t>0){n a=4.v[4.t-1].K||F;8(a&&a.1d(1z)){1I=1v 1w();1I.13=a}}};p 1p(a,b,c){1f=D;n d=4.N;8(1S||m){$("#y")[0].15.2L("A");$("#y")[0].15.2L("E")}8(d>0){b+=d*2;c+=d*2;$("#y").u({\'z\':d+\'R\',\'2M\':d+\'R\',\'2N\':d+\'R\',\'B\':d+\'R\',\'E\':\'2O\',\'A\':\'2O\'});8(1S||m){$("#y")[0].15.2P(\'A\',\'(O.2Q.3V - \'+d*2+\')\');$("#y")[0].15.2P(\'E\',\'(O.2Q.3W - \'+d*2+\')\')}}C{$("#y").u({\'z\':0,\'2M\':0,\'2N\':0,\'B\':0,\'E\':\'2R%\',\'A\':\'2R%\'})}8($("#x").16(":V")&&b==$("#x").E()&&c==$("#x").A()){$("#y").1J(\'29\',p(){$("#y").1r().1K($(a)).2a("1L",p(){1s()})});J}n w=$.q.r.1q();n e=(c+26)>w[1]?w[3]:(w[3]+P.1b((w[1]-c-26)*0.5));n f=(b+40)>w[0]?w[2]:(w[2]+P.1b((w[0]-b-40)*0.5));n g={\'B\':f,\'z\':e,\'E\':b+\'R\',\'A\':c+\'R\'};8($("#x").16(":V")){$("#y").1J("1L",p(){$("#y").1r();$("#x").2b(g,4.2S,4.2T,p(){$("#y").1K($(a)).2a("1L",p(){1s()})})})}C{8(4.2c>0&&4.v[4.t].S!==1m){$("#y").1r().1K($(a));n h=4.v[4.t].S;n i=$.q.r.2d(h);$("#x").u({\'B\':(i.B-20-4.N)+\'R\',\'z\':(i.z-20-4.N)+\'R\',\'E\':$(h).E()+(4.N*2),\'A\':$(h).A()+(4.N*2)});8(4.2e){g.22=\'Z\'}$("#x").2b(g,4.2c,4.2U,p(){1s()})}C{$("#y").1a().1r().1K($(a)).Z();$("#x").u(g).2a("1L",p(){1s()})}}};p 2V(){8(4.t!==0){$("#1o, #2W").Q().11("17",p(e){e.2X();4.t--;1h();J F});$("#1o").Z()}8(4.t!=(4.v.Y-1)){$("#1n, #2Y").Q().11("17",p(e){e.2X();4.t++;1h();J F});$("#1n").Z()}};p 1s(){8($.14.1g){$("#y")[0].15.1M(\'1e\');$("#x")[0].15.1M(\'1e\')}2V();2K();$(U).11("1N.L",p(e){8(e.2f==27&&4.2Z){$.q.r.1c()}C 8(e.2f==37&&4.t!==0){$(U).Q("1N.L");4.t--;1h()}C 8(e.2f==39&&4.t!=(4.v.Y-1)){$(U).Q("1N.L");4.t++;1h()}});8(4.30){$("#y").17($.q.r.1c)}8(4.1E&&4.31){$("#T").11("17",$.q.r.1c)}8(4.33){$("#1i").11("17",$.q.r.1c).Z()}8(1V 4.v[4.t].G!==\'1m\'&&4.v[4.t].G.Y>0){n a=$("#x").1u();$(\'#H 9\').3X(4.v[4.t].G).2I();$(\'#H\').u({\'z\':a.z+$("#x").34()-32,\'B\':a.B+(($("#x").35()*0.5)-($(\'#H\').E()*0.5))}).Z()}8(4.1E&&18){$(\'1X, 1Y, 1Z\',$(\'#y\')).u(\'21\',\'V\')}8($.1T(4.2g)){4.2g(4.v[4.t])}8($.14.1g){$("#x")[0].15.1M(\'1e\');$("#y")[0].15.1M(\'1e\')}1f=F};J O.Q(\'17.L\').11(\'17.L\',2w)};$.q.r.2C=p(){n w=$.q.r.1q();8(4.2h&&$("#x").16(\':V\')){n a=$("#x").35();n b=$("#x").34();n c={\'z\':(b>w[1]?w[3]:w[3]+P.1b((w[1]-b)*0.5)),\'B\':(a>w[0]?w[2]:w[2]+P.1b((w[0]-a)*0.5))};$("#x").u(c);$(\'#H\').u({\'z\':c.z+b-32,\'B\':c.B+((a*0.5)-($(\'#H\').E()*0.5))})}8(18&&$("#T").16(\':V\')){$("#T").u({\'A\':$(U).A()})}8($("#M").16(\':V\')){$("#M").u({\'B\':((w[0]-40)*0.5+w[2]),\'z\':((w[1]-40)*0.5+w[3])})}};$.q.r.1t=p(a,b){J 3Y($.3Z(a.41?a[0]:a,b,D))||0};$.q.r.2d=p(a){n b=a.42();b.z+=$.q.r.1t(a,\'43\');b.z+=$.q.r.1t(a,\'44\');b.B+=$.q.r.1t(a,\'45\');b.B+=$.q.r.1t(a,\'46\');J b};$.q.r.2G=p(){$("#M").1a();$("#2E").Z()};$.q.r.1q=p(){J[$(19).E(),$(19).A(),$(U).47(),$(U).48()]};$.q.r.36=p(){8(!$("#M").16(\':V\')){38(1x);J}$("#M > 9").u(\'z\',(1y*-40)+\'R\');1y=(1y+1)%12};$.q.r.1F=p(){38(1x);n w=$.q.r.1q();$("#M").u({\'B\':((w[0]-40)*0.5+w[2]),\'z\':((w[1]-40)*0.5+w[3])}).Z();$("#M").11(\'17\',$.q.r.1c);1x=49($.q.r.36,4a)};$.q.r.1c=p(){1f=D;$(X).Q();$(U).Q("1N.L");$(19).Q("23.L 24.L");$("#T, #y, #1i").Q();$("#1i, #M, #1o, #1n, #H").1a();1O=p(){8($("#T").16(\':V\')){$("#T").1J("29")}$("#y").1r();8(4.2h){$(19).Q("23.L 24.L")}8(18){$(\'1X, 1Y, 1Z\').u(\'21\',\'V\')}8($.1T(4.2i)){4.2i()}1f=F};8($("#x").16(":V")!==F){8(4.2j>0&&4.v[4.t].S!==1m){n a=4.v[4.t].S;n b=$.q.r.2d(a);n c={\'B\':(b.B-20-4.N)+\'R\',\'z\':(b.z-20-4.N)+\'R\',\'E\':$(a).E()+(4.N*2),\'A\':$(a).A()+(4.N*2)};8(4.2e){c.22=\'1a\'}$("#x").3a(F,D).2b(c,4.2j,4.3b,1O)}C{$("#x").3a(F,D).1J(\'29\',1O)}}C{1O()}J F};$.q.r.3c=p(){n a=\'\';a+=\'<9 s="T">\';a+=\'<9 s="M"><9>\';a+=\'<9 s="x">\';a+=\'<9 s="3d">\';a+=\'<9 s="1i">\';a+=\'<9 s="W"><9 I="W" s="4b"><9 I="W" s="4c"><9 I="W" s="4d"><9 I="W" s="4e"><9 I="W" s="4f"><9 I="W" s="4g"><9 I="W" s="4h"><9 I="W" s="4i">\';a+=\'<1P I="2l" s="2W"><1P I="2l" s="2Y">\';a+=\'<9 s="y">\';a+=\'\';a+=\'\';a+=\'<9 s="H">\';$(a).3e("4j");$(\'<3f 4k="0" 4l="0" 4m="0"><3g><1k I="H" s="4n"><1k I="H" s="4o"><9><1k I="H" s="4p">\').3e(\'#H\');8($.14.1g){$(".W").1Q()}8(18){$("9#T").u("1u","2r");$("#M 9, #1i, .H, .2l").1Q();$("#3d").4q(\'<1j s="3h" 13="2k:F;" 4r="2q" 2H="0">\');n b=$(\'#3h\')[0].4s.U;b.4t();b.1c()}};$.q.r.2v={N:10,2J:D,2e:D,2c:0,2j:0,2S:4u,2U:\'2m\',3b:\'2m\',2T:\'2m\',1G:4v,1H:4w,1E:D,2B:0.3,2A:\'#4x\',2Z:D,33:D,31:D,30:D,2h:D,v:[],1U:1A,2g:1A,2i:1A};$(U).4y(p(){m=$.14.1g&&!$.4z;8($("#x").Y<1){$.q.r.3c()}})})(2F);',62,284,'||||opts||||if|div||||||||||||||var||function|fn|fancybox|id|itemCurrent|css|itemArray||fancy_outer|fancy_content|top|height|left|else|true|width|false|title|fancy_title|class|return|href|fb|fancy_loading|padding|this|Math|unbind|px|orig|fancy_overlay|document|visible|fancy_bg|imagePreloader|length|show||bind||src|browser|style|is|click|IE6|window|hide|round|close|match|filter|busy|msie|_change_item|fancy_close|iframe|td|img|undefined|fancy_right|fancy_left|_set_content|getViewport|empty|_finish|getNumeric|position|new|Image|loadingTimer|loadingFrame|imageRegExp|null|rel|children|first|overlayShow|showLoading|frameWidth|frameHeight|objNext|fadeOut|append|normal|removeAttribute|keydown|__cleanup|span|fixPNG|substr|oldIE|isFunction|callbackOnStart|typeof|alt|embed|object|select||visibility|opacity|resize|scroll|_proceed_image|60||min|fast|fadeIn|animate|zoomSpeedIn|getPosition|zoomOpacity|keyCode|callbackOnShow|centerOnScroll|callbackOnClose|zoomSpeedOut|javascript|fancy_ico|swing|each|backgroundImage|png|no|absolute|relative|version|extend|defaults|_initialize|_start|attr|push|overlayColor|overlayOpacity|scrollBox|indexOf|fancy_frame|jQuery|showIframe|frameborder|html|imageScale|_preload_neighbor_images|removeExpression|right|bottom|auto|setExpression|parentNode|100|zoomSpeedChange|easingChange|easingIn|_set_navigation|fancy_left_ico|stopPropagation|fancy_right_ico|enableEscapeButton|hideOnContentClick|hideOnOverlayClick||showCloseButton|outerHeight|outerWidth|animateLoading||clearInterval||stop|easingOut|build|fancy_inner|appendTo|table|tr|fancy_bigIframe|url|RegExp|none|progid|DXImageTransform|Microsoft|AlphaImageLoader|enabled|sizingMethod|backgroundRepeat|repeat|crop|scale|jpg|gif|bmp|jpeg|XMLHttpRequest|for|while|hidden|background|color|className|onload|name|fancy_iframe|random|1000|hspace|location|split|replace|fancy_div|complete|load|get|fancy_ajax|fancy_img|clientHeight|clientWidth|text|parseInt|curCSS||jquery|offset|paddingTop|borderTopWidth|paddingLeft|borderLeftWidth|scrollLeft|scrollTop|setInterval|66|fancy_bg_n|fancy_bg_ne|fancy_bg_e|fancy_bg_se|fancy_bg_s|fancy_bg_sw|fancy_bg_w|fancy_bg_nw|body|cellspacing|cellpadding|border|fancy_title_left|fancy_title_main|fancy_title_right|prepend|scrolling|contentWindow|open|300|560|340|666|ready|boxModel'.split('|'),0,{})); // webfola.js // Wait until page is fully loaded $(document).ready(function() { // Find all external links (which are not images) // Many thanks to http://www.sanityinc.com/articles/mark-external-links-with-css-using-jquery function externalLinks() { return $('a[href^=http]:not("[href^=' + document.domain + ']"):not("[href^=http://www.webfola.com]"):not("[href^=http://localhost]"):not("[href^=http://192.168.]"):not(":has(\'img\')")'); } // Add 'external' CSS class to all external links (not for IE6!) if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) externalLinks().addClass('external'); // Hover for twitter bird / twitter speechbubble (not for IE6!) if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) $("#twitter-bird").hover( function () { $("#speechbubble-twitter").fadeIn("slow"); }, function () { $("#speechbubble-twitter").fadeOut("normal"); } ); // Hover for footer pencil (not for IE6!) if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) $("#footer-pencil").hover( function () { //$("#footer-hireme-note a").hide(); $("#footer-hireme-note a").toggleClass("hover"); }, function () { $("#footer-hireme-note a").toggleClass("hover"); } ); // Slideshow in lars' speechbubble (not for IE6!) if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) $("#speechbubble-lars .slides").cycle({ fx: 'fade', timeout: 15000, // milliseconds between slide transitions (0 to disable auto advance) speed: 1500, // speed of the transition (any valid fx speed value) height: 'auto', // container height sync: 1, // true if in/out transitions should occur simultaneously fit: 1, // force slides to fit container pause: 1, // true to enable "pause on hover" delay: 15000, // additional delay (in ms) for first transition (hint: can be negative) cleartype: 1, // disable cleartype corrections cleartypeNoBg: true // set to true to disable extra cleartype fixing (leave false to force background color setting on slides) }); // Slideshow in projection stand on home page (not for IE6!) if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) $("#scroll-arrows").show(); if ( !($.browser.msie && (parseInt($.browser.version) == 6)) ) $("#projection-stand-content .slides").cycle({ fx: 'fade', //'scrollHorz', timeout: 0, // milliseconds between slide transitions (0 to disable auto advance) speed: 1000, // speed of the transition (any valid fx speed value) height: 'auto', // container height sync: 1, // true if in/out transitions should occur simultaneously fit: 1, // force slides to fit container pause: 1, // true to enable "pause on hover" delay: 12000, // additional delay (in ms) for first transition (hint: can be negative) prev: '#scroll-arrow-left', next: '#scroll-arrow-right', cleartype: 1, // disable cleartype corrections cleartypeNoBg: true // set to true to disable extra cleartype fixing (leave false to force background color setting on slides) }); // Fancybox (lightbox alternative) for images on about page $('.photos a').fancybox({ //'zoomSpeedIn': 300, //'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity': 0.8, 'overlayColor': '#000000', 'enableEscapeButton': true, 'showCloseButton': true }); // Fix "bouncing" header and contact form in Opera if ($.browser.opera) { $("#content-boxes .contact-form .middle form input").css("position","static"); } }); // end document.ready // userfly //var userflyHost = (("https:" == document.location.protocol) ? "https://secure.userfly.com" : "http://asset.userfly.com"); //document.write(unescape("%3Cscript src='" + userflyHost + "/users/41780/userfly.js' type='text/javascript'%3E%3C/script%3E"));