/*
 * 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 n=this,g,C=n.jQuery,r=n.$,q=n.jQuery=n.$=function(I,J){return new q.fn.init(I,J)},H=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;q.fn=q.prototype={init:function(I,L){I=I||document;if(I.nodeType){this[0]=I;this.length=1;this.context=I;return this}if(typeof I==="string"){var K=H.exec(I);if(K&&(K[1]||!L)){if(K[1]){I=q.clean([K[1]],L)}else{var M=document.getElementById(K[3]);if(M&&M.id!=K[3]){return q().find(I)}var J=q(M||[]);J.context=document;J.selector=I;return J}}else{return q(L).find(I)}}else{if(q.isFunction(I)){return q(document).ready(I)}}if(I.selector&&I.context){this.selector=I.selector;this.context=I.context}return this.setArray(q.isArray(I)?I:q.makeArray(I))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(I){return I===g?Array.prototype.slice.call(this):this[I]},pushStack:function(J,L,I){var K=q(J);K.prevObject=this;K.context=this.context;if(L==="find"){K.selector=this.selector+(this.selector?" ":"")+I}else{if(L){K.selector=this.selector+"."+L+"("+I+")"}}return K},setArray:function(I){this.length=0;Array.prototype.push.apply(this,I);return this},each:function(J,I){return q.each(this,J,I)},index:function(I){return q.inArray(I&&I.jquery?I[0]:I,this)},attr:function(J,L,K){var I=J;if(typeof J==="string"){if(L===g){return this[0]&&q[K||"attr"](this[0],J)}else{I={};I[J]=L}}return this.each(function(M){for(J in I){q.attr(K?this.style:this,J,q.prop(this,I[J],K,M,J))}})},css:function(I,J){if((I=="width"||I=="height")&&parseFloat(J)<0){J=g}return this.attr(I,J,"curCSS")},text:function(J){if(typeof J!=="object"&&J!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(J))}var I="";q.each(J||this,function(){q.each(this.childNodes,function(){if(this.nodeType!=8){I+=this.nodeType!=1?this.nodeValue:q.fn.text([this])}})});return I},wrapAll:function(I){if(this[0]){var J=q(I,this[0].ownerDocument).clone();if(this[0].parentNode){J.insertBefore(this[0])}J.map(function(){var K=this;while(K.firstChild){K=K.firstChild}return K}).append(this)}return this},wrapInner:function(I){return this.each(function(){q(this).contents().wrapAll(I)})},wrap:function(I){return this.each(function(){q(this).wrapAll(I)})},append:function(){return this.domManip(arguments,true,function(I){if(this.nodeType==1){this.appendChild(I)}})},prepend:function(){return this.domManip(arguments,true,function(I){if(this.nodeType==1){this.insertBefore(I,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(I){this.parentNode.insertBefore(I,this)})},after:function(){return this.domManip(arguments,false,function(I){this.parentNode.insertBefore(I,this.nextSibling)})},end:function(){return this.prevObject||q([])},push:[].push,sort:[].sort,splice:[].splice,find:function(I){if(this.length===1){var J=this.pushStack([],"find",I);J.length=0;q.find(I,this[0],J);return J}else{return this.pushStack(q.unique(q.map(this,function(K){return q.find(I,K)})),"find",I)}},clone:function(K){var I=this.map(function(){if(!q.support.noCloneEvent&&!q.isXMLDoc(this)){var M=this.outerHTML;if(!M){var O=this.ownerDocument.createElement("div");O.appendChild(this.cloneNode(true));M=O.innerHTML}return q.clean([M.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(K===true){var L=this.find("*").andSelf(),J=0;I.find("*").andSelf().each(function(){if(this.nodeName!==L[J].nodeName){return}var M=q.data(L[J],"events");for(var P in M){for(var O in M[P]){q.event.add(this,P,M[P][O],M[P][O].data)}}J++})}return I},filter:function(I){return this.pushStack(q.isFunction(I)&&q.grep(this,function(K,J){return I.call(K,J)})||q.multiFilter(I,q.grep(this,function(J){return J.nodeType===1})),"filter",I)},closest:function(I){var K=q.expr.match.POS.test(I)?q(I):null,J=0;return this.map(function(){var L=this;while(L&&L.ownerDocument){if(K?K.index(L)>-1:q(L).is(I)){q.data(L,"closest",J);return L}L=L.parentNode;J++}})},not:function(I){if(typeof I==="string"){if(f.test(I)){return this.pushStack(q.multiFilter(I,this,true),"not",I)}else{I=q.multiFilter(I,this)}}var J=I.length&&I[I.length-1]!==g&&!I.nodeType;return this.filter(function(){return J?q.inArray(this,I)<0:this!=I})},add:function(I){return this.pushStack(q.unique(q.merge(this.get(),typeof I==="string"?q(I):q.makeArray(I))))},is:function(I){return !!I&&q.multiFilter(I,this).length>0},hasClass:function(I){return !!I&&this.is("."+I)},val:function(P){if(P===g){var I=this[0];if(I){if(q.nodeName(I,"option")){return(I.attributes.value||{}).specified?I.value:I.text}if(q.nodeName(I,"select")){var M=I.selectedIndex,Q=[],S=I.options,L=I.type=="select-one";if(M<0){return null}for(var J=L?M:0,O=L?M+1:S.length;J<O;J++){var K=S[J];if(K.selected){P=q(K).val();if(L){return P}Q.push(P)}}return Q}return(I.value||"").replace(/\r/g,"")}return g}if(typeof P==="number"){P+=""}return this.each(function(){if(this.nodeType!=1){return}if(q.isArray(P)&&/radio|checkbox/.test(this.type)){this.checked=(q.inArray(this.value,P)>=0||q.inArray(this.name,P)>=0)}else{if(q.nodeName(this,"select")){var T=q.makeArray(P);q("option",this).each(function(){this.selected=(q.inArray(this.value,T)>=0||q.inArray(this.text,T)>=0)});if(!T.length){this.selectedIndex=-1}}else{this.value=P}}})},html:function(I){return I===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(I)},replaceWith:function(I){return this.after(I).remove()},eq:function(I){return this.slice(I,+I+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(I){return this.pushStack(q.map(this,function(K,J){return I.call(K,J,K)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(O,S,Q){if(this[0]){var M=(this[0].ownerDocument||this[0]).createDocumentFragment(),J=q.clean(O,(this[0].ownerDocument||this[0]),M),L=M.firstChild;if(L){for(var K=0,I=this.length;K<I;K++){Q.call(P(this[K],L),this.length>1||K>0?M.cloneNode(true):M)}}if(J){q.each(J,D)}}return this;function P(T,U){return S&&q.nodeName(T,"table")&&q.nodeName(U,"tr")?(T.getElementsByTagName("tbody")[0]||T.appendChild(T.ownerDocument.createElement("tbody"))):T}}};q.fn.init.prototype=q.fn;function D(I,J){if(J.src){q.ajax({url:J.src,async:false,dataType:"script"})}else{q.globalEval(J.text||J.textContent||J.innerHTML||"")}if(J.parentNode){J.parentNode.removeChild(J)}}function e(){return +new Date}q.extend=q.fn.extend=function(){var O=arguments[0]||{},L=1,M=arguments.length,I=false,K;if(typeof O==="boolean"){I=O;O=arguments[1]||{};L=2}if(typeof O!=="object"&&!q.isFunction(O)){O={}}if(M==L){O=this;--L}for(;L<M;L++){if((K=arguments[L])!=null){for(var J in K){var P=O[J],Q=K[J];if(O===Q){continue}if(I&&Q&&typeof Q==="object"&&!Q.nodeType){O[J]=q.extend(I,P||(Q.length!=null?[]:{}),Q)}else{if(Q!==g){O[J]=Q}}}}}return O};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,s=document.defaultView||{},u=Object.prototype.toString;q.extend({noConflict:function(I){n.$=r;if(I){n.jQuery=C}return q},isFunction:function(I){return u.call(I)==="[object Function]"},isArray:function(I){return u.call(I)==="[object Array]"},isXMLDoc:function(I){return I.nodeType===9&&I.documentElement.nodeName!=="HTML"||!!I.ownerDocument&&q.isXMLDoc(I.ownerDocument)},globalEval:function(K){if(K&&/\S/.test(K)){var J=document.getElementsByTagName("head")[0]||document.documentElement,I=document.createElement("script");I.type="text/javascript";if(q.support.scriptEval){I.appendChild(document.createTextNode(K))}else{I.text=K}J.insertBefore(I,J.firstChild);J.removeChild(I)}},nodeName:function(J,I){return J.nodeName&&J.nodeName.toUpperCase()==I.toUpperCase()},each:function(K,P,J){var I,L=0,M=K.length;if(J){if(M===g){for(I in K){if(P.apply(K[I],J)===false){break}}}else{for(;L<M;){if(P.apply(K[L++],J)===false){break}}}}else{if(M===g){for(I in K){if(P.call(K[I],I,K[I])===false){break}}}else{for(var O=K[0];L<M&&P.call(O,L,O)!==false;O=K[++L]){}}}return K},prop:function(L,M,K,J,I){if(q.isFunction(M)){M=M.call(L,J)}return typeof M==="number"&&K=="curCSS"&&!b.test(I)?M+"px":M},className:{add:function(I,J){q.each((J||"").split(/\s+/),function(K,L){if(I.nodeType==1&&!q.className.has(I.className,L)){I.className+=(I.className?" ":"")+L}})},remove:function(I,J){if(I.nodeType==1){I.className=J!==g?q.grep(I.className.split(/\s+/),function(K){return !q.className.has(J,K)}).join(" "):""}},has:function(J,I){return J&&q.inArray(I,(J.className||J).toString().split(/\s+/))>-1}},swap:function(L,K,M){var I={};for(var J in K){I[J]=L.style[J];L.style[J]=K[J]}M.call(L);for(var J in K){L.style[J]=I[J]}},css:function(L,J,O,I){if(J=="width"||J=="height"){var Q,K={position:"absolute",visibility:"hidden",display:"block"},P=J=="width"?["Left","Right"]:["Top","Bottom"];function M(){Q=J=="width"?L.offsetWidth:L.offsetHeight;if(I==="border"){return}q.each(P,function(){if(!I){Q-=parseFloat(q.curCSS(L,"padding"+this,true))||0}if(I==="margin"){Q+=parseFloat(q.curCSS(L,"margin"+this,true))||0}else{Q-=parseFloat(q.curCSS(L,"border"+this+"Width",true))||0}})}if(L.offsetWidth!==0){M()}else{q.swap(L,K,M)}return Math.max(0,Math.round(Q))}return q.curCSS(L,J,O)},curCSS:function(M,J,K){var Q,I=M.style;if(J=="opacity"&&!q.support.opacity){Q=q.attr(I,"opacity");return Q==""?"1":Q}if(J.match(/float/i)){J=z}if(!K&&I&&I[J]){Q=I[J]}else{if(s.getComputedStyle){if(J.match(/float/i)){J="float"}J=J.replace(/([A-Z])/g,"-$1").toLowerCase();var S=s.getComputedStyle(M,null);if(S){Q=S.getPropertyValue(J)}if(J=="opacity"&&Q==""){Q="1"}}else{if(M.currentStyle){var O=J.replace(/\-(\w)/g,function(T,U){return U.toUpperCase()});Q=M.currentStyle[J]||M.currentStyle[O];if(!/^\d+(px)?$/i.test(Q)&&/^\d/.test(Q)){var L=I.left,P=M.runtimeStyle.left;M.runtimeStyle.left=M.currentStyle.left;I.left=Q||0;Q=I.pixelLeft+"px";I.left=L;M.runtimeStyle.left=P}}}}return Q},clean:function(J,P,M){P=P||document;if(typeof P.createElement==="undefined"){P=P.ownerDocument||P[0]&&P[0].ownerDocument||document}if(!M&&J.length===1&&typeof J[0]==="string"){var L=/^<(\w+)\s*\/?>$/.exec(J[0]);if(L){return[P.createElement(L[1])]}}var K=[],I=[],Q=P.createElement("div");q.each(J,function(V,Y){if(typeof Y==="number"){Y+=""}if(!Y){return}if(typeof Y==="string"){Y=Y.replace(/(<(\w+)[^>]*?)\/>/g,function(aa,ab,Z){return Z.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?aa:ab+"></"+Z+">"});var U=Y.replace(/^\s+/,"").substring(0,10).toLowerCase();var W=!U.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!U.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||U.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!U.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!U.indexOf("<td")||!U.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!U.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!q.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];Q.innerHTML=W[1]+Y+W[2];while(W[0]--){Q=Q.lastChild}if(!q.support.tbody){var X=/<tbody/i.test(Y),T=!U.indexOf("<table")&&!X?Q.firstChild&&Q.firstChild.childNodes:W[1]=="<table>"&&!X?Q.childNodes:[];for(var S=T.length-1;S>=0;--S){if(q.nodeName(T[S],"tbody")&&!T[S].childNodes.length){T[S].parentNode.removeChild(T[S])}}}if(!q.support.leadingWhitespace&&/^\s/.test(Y)){Q.insertBefore(P.createTextNode(Y.match(/^\s*/)[0]),Q.firstChild)}Y=q.makeArray(Q.childNodes)}if(Y.nodeType){K.push(Y)}else{K=q.merge(K,Y)}});if(M){for(var O=0;K[O];O++){if(q.nodeName(K[O],"script")&&(!K[O].type||K[O].type.toLowerCase()==="text/javascript")){I.push(K[O].parentNode?K[O].parentNode.removeChild(K[O]):K[O])}else{if(K[O].nodeType===1){K.splice.apply(K,[O+1,0].concat(q.makeArray(K[O].getElementsByTagName("script"))))}M.appendChild(K[O])}}return I}return K},attr:function(O,K,P){if(!O||O.nodeType==3||O.nodeType==8){return g}var L=!q.isXMLDoc(O),Q=P!==g;K=L&&q.props[K]||K;if(O.tagName){var J=/href|src|style/.test(K);if(K=="selected"&&O.parentNode){O.parentNode.selectedIndex}if(K in O&&L&&!J){if(Q){if(K=="type"&&q.nodeName(O,"input")&&O.parentNode){throw"type property can't be changed"}O[K]=P}if(q.nodeName(O,"form")&&O.getAttributeNode(K)){return O.getAttributeNode(K).nodeValue}if(K=="tabIndex"){var M=O.getAttributeNode("tabIndex");return M&&M.specified?M.value:O.nodeName.match(/(button|input|object|select|textarea)/i)?0:O.nodeName.match(/^(a|area)$/i)&&O.href?0:g}return O[K]}if(!q.support.style&&L&&K=="style"){return q.attr(O.style,"cssText",P)}if(Q){O.setAttribute(K,""+P)}var I=!q.support.hrefNormalized&&L&&J?O.getAttribute(K,2):O.getAttribute(K);return I===null?g:I}if(!q.support.opacity&&K=="opacity"){if(Q){O.zoom=1;O.filter=(O.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(P)+""=="NaN"?"":"alpha(opacity="+P*100+")")}return O.filter&&O.filter.indexOf("opacity=")>=0?(parseFloat(O.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}K=K.replace(/-([a-z])/ig,function(S,T){return T.toUpperCase()});if(Q){O[K]=P}return O[K]},trim:function(I){return(I||"").replace(/^\s+|\s+$/g,"")},makeArray:function(K){var I=[];if(K!=null){var J=K.length;if(J==null||typeof K==="string"||q.isFunction(K)||K.setInterval){I[0]=K}else{while(J){I[--J]=K[J]}}}return I},inArray:function(K,L){for(var I=0,J=L.length;I<J;I++){if(L[I]===K){return I}}return -1},merge:function(L,I){var J=0,K,M=L.length;if(!q.support.getAll){while((K=I[J++])!=null){if(K.nodeType!=8){L[M++]=K}}}else{while((K=I[J++])!=null){L[M++]=K}}return L},unique:function(P){var J=[],I={};try{for(var K=0,L=P.length;K<L;K++){var O=q.data(P[K]);if(!I[O]){I[O]=true;J.push(P[K])}}}catch(M){J=P}return J},grep:function(J,O,I){var K=[];for(var L=0,M=J.length;L<M;L++){if(!I!=!O(J[L],L)){K.push(J[L])}}return K},map:function(I,O){var J=[];for(var K=0,L=I.length;K<L;K++){var M=O(I[K],K);if(M!=null){J[J.length]=M}}return J.concat.apply([],J)}});var G=navigator.userAgent.toLowerCase();q.browser={version:(G.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(G),opera:/opera/.test(G),msie:/msie/.test(G)&&!/opera/.test(G),mozilla:/mozilla/.test(G)&&!/(compatible|webkit)/.test(G)};q.each({parent:function(I){return I.parentNode},parents:function(I){return q.dir(I,"parentNode")},next:function(I){return q.nth(I,2,"nextSibling")},prev:function(I){return q.nth(I,2,"previousSibling")},nextAll:function(I){return q.dir(I,"nextSibling")},prevAll:function(I){return q.dir(I,"previousSibling")},siblings:function(I){return q.sibling(I.parentNode.firstChild,I)},children:function(I){return q.sibling(I.firstChild)},contents:function(I){return q.nodeName(I,"iframe")?I.contentDocument||I.contentWindow.document:q.makeArray(I.childNodes)}},function(I,J){q.fn[I]=function(K){var L=q.map(this,J);if(K&&typeof K=="string"){L=q.multiFilter(K,L)}return this.pushStack(q.unique(L),I,K)}});q.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(I,J){q.fn[I]=function(K){var O=[],Q=q(K);for(var P=0,L=Q.length;P<L;P++){var M=(P>0?this.clone(true):this).get();q.fn[J].apply(q(Q[P]),M);O=O.concat(M)}return this.pushStack(O,I,K)}});q.each({removeAttr:function(I){q.attr(this,I,"");if(this.nodeType==1){this.removeAttribute(I)}},addClass:function(I){q.className.add(this,I)},removeClass:function(I){q.className.remove(this,I)},toggleClass:function(J,I){if(typeof I!=="boolean"){I=!q.className.has(this,J)}q.className[I?"add":"remove"](this,J)},remove:function(I){if(!I||q.filter(I,[this]).length){q("*",this).add([this]).each(function(){q.event.remove(this);q.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){q(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(I,J){q.fn[I]=function(){return this.each(J,arguments)}});function l(I,J){return I[0]&&parseInt(q.curCSS(I[0],J,true),10)||0}var h="jQuery"+e(),y=0,E={};q.extend({cache:{},data:function(J,I,K){J=J==n?E:J;var L=J[h];if(!L){L=J[h]=++y}if(I&&!q.cache[L]){q.cache[L]={}}if(K!==g){q.cache[L][I]=K}return I?q.cache[L][I]:L},removeData:function(J,I){J=J==n?E:J;var L=J[h];if(I){if(q.cache[L]){delete q.cache[L][I];I="";for(I in q.cache[L]){break}if(!I){q.removeData(J)}}}else{try{delete J[h]}catch(K){if(J.removeAttribute){J.removeAttribute(h)}}delete q.cache[L]}},queue:function(J,I,L){if(J){I=(I||"fx")+"queue";var K=q.data(J,I);if(!K||q.isArray(L)){K=q.data(J,I,q.makeArray(L))}else{if(L){K.push(L)}}}return K},dequeue:function(L,K){var I=q.queue(L,K),J=I.shift();if(!K||K==="fx"){J=I[0]}if(J!==g){J.call(L)}}});q.fn.extend({data:function(I,K){var L=I.split(".");L[1]=L[1]?"."+L[1]:"";if(K===g){var J=this.triggerHandler("getData"+L[1]+"!",[L[0]]);if(J===g&&this.length){J=q.data(this[0],I)}return J===g&&L[1]?this.data(L[0]):J}else{return this.trigger("setData"+L[1]+"!",[L[0],K]).each(function(){q.data(this,I,K)})}},removeData:function(I){return this.each(function(){q.removeData(this,I)})},queue:function(I,J){if(typeof I!=="string"){J=I;I="fx"}if(J===g){return q.queue(this[0],I)}return this.each(function(){var K=q.queue(this,I,J);if(I=="fx"&&K.length==1){K[0].call(this)}})},dequeue:function(I){return this.each(function(){q.dequeue(this,I)})}});
/*
 * 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 X=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,Q=0,L=Object.prototype.toString;var J=function(ae,aa,ah,ai){ah=ah||[];aa=aa||document;if(aa.nodeType!==1&&aa.nodeType!==9){return[]}if(!ae||typeof ae!=="string"){return ah}var af=[],ac,al,ao,Z,aj,ab,ad=true;X.lastIndex=0;while((ac=X.exec(ae))!==null){af.push(ac[1]);if(ac[2]){ab=RegExp.rightContext;break}}if(af.length>1&&S.exec(ae)){if(af.length===2&&M.relative[af[0]]){al=O(af[0]+af[1],aa)}else{al=M.relative[af[0]]?[aa]:J(af.shift(),aa);while(af.length){ae=af.shift();if(M.relative[ae]){ae+=af.shift()}al=O(ae,al)}}}else{var ak=ai?{expr:af.pop(),set:I(ai)}:J.find(af.pop(),af.length===1&&aa.parentNode?aa.parentNode:aa,W(aa));al=J.filter(ak.expr,ak.set);if(af.length>0){ao=I(al)}else{ad=false}while(af.length){var an=af.pop(),am=an;if(!M.relative[an]){an=""}else{am=af.pop()}if(am==null){am=aa}M.relative[an](ao,am,W(aa))}}if(!ao){ao=al}if(!ao){throw"Syntax error, unrecognized expression: "+(an||ae)}if(L.call(ao)==="[object Array]"){if(!ad){ah.push.apply(ah,ao)}else{if(aa.nodeType===1){for(var ag=0;ao[ag]!=null;ag++){if(ao[ag]&&(ao[ag]===true||ao[ag].nodeType===1&&P(aa,ao[ag]))){ah.push(al[ag])}}}else{for(var ag=0;ao[ag]!=null;ag++){if(ao[ag]&&ao[ag].nodeType===1){ah.push(al[ag])}}}}}else{I(ao,ah)}if(ab){J(ab,aa,ah,ai);if(K){hasDuplicate=false;ah.sort(K);if(hasDuplicate){for(var ag=1;ag<ah.length;ag++){if(ah[ag]===ah[ag-1]){ah.splice(ag--,1)}}}}}return ah};J.matches=function(Z,aa){return J(Z,null,null,aa)};J.find=function(ag,Z,ah){var af,ad;if(!ag){return[]}for(var ac=0,ab=M.order.length;ac<ab;ac++){var ae=M.order[ac],ad;if((ad=M.match[ae].exec(ag))){var aa=RegExp.leftContext;if(aa.substr(aa.length-1)!=="\\"){ad[1]=(ad[1]||"").replace(/\\/g,"");af=M.find[ae](ad,Z,ah);if(af!=null){ag=ag.replace(M.match[ae],"");break}}}}if(!af){af=Z.getElementsByTagName("*")}return{set:af,expr:ag}};J.filter=function(aj,ai,am,ac){var ab=aj,ao=[],ag=ai,ae,Z,af=ai&&ai[0]&&W(ai[0]);while(aj&&ai.length){for(var ah in M.filter){if((ae=M.match[ah].exec(aj))!=null){var aa=M.filter[ah],an,al;Z=false;if(ag==ao){ao=[]}if(M.preFilter[ah]){ae=M.preFilter[ah](ae,ag,am,ao,ac,af);if(!ae){Z=an=true}else{if(ae===true){continue}}}if(ae){for(var ad=0;(al=ag[ad])!=null;ad++){if(al){an=aa(al,ae,ad,ag);var ak=ac^!!an;if(am&&an!=null){if(ak){Z=true}else{ag[ad]=false}}else{if(ak){ao.push(al);Z=true}}}}}if(an!==g){if(!am){ag=ao}aj=aj.replace(M.match[ah],"");if(!Z){return[]}break}}}if(aj==ab){if(Z==null){throw"Syntax error, unrecognized expression: "+aj}else{break}}ab=aj}return ag};var M=J.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(Z){return Z.getAttribute("href")}},relative:{"+":function(ag,Z,af){var ad=typeof Z==="string",ah=ad&&!/\W/.test(Z),ae=ad&&!ah;if(ah&&!af){Z=Z.toUpperCase()}for(var ac=0,ab=ag.length,aa;ac<ab;ac++){if((aa=ag[ac])){while((aa=aa.previousSibling)&&aa.nodeType!==1){}ag[ac]=ae||aa&&aa.nodeName===Z?aa||false:aa===Z}}if(ae){J.filter(Z,ag,true)}},">":function(af,aa,ag){var ad=typeof aa==="string";if(ad&&!/\W/.test(aa)){aa=ag?aa:aa.toUpperCase();for(var ab=0,Z=af.length;ab<Z;ab++){var ae=af[ab];if(ae){var ac=ae.parentNode;af[ab]=ac.nodeName===aa?ac:false}}}else{for(var ab=0,Z=af.length;ab<Z;ab++){var ae=af[ab];if(ae){af[ab]=ad?ae.parentNode:ae.parentNode===aa}}if(ad){J.filter(aa,af,true)}}},"":function(ac,aa,ae){var ab=Q++,Z=Y;if(!aa.match(/\W/)){var ad=aa=ae?aa:aa.toUpperCase();Z=V}Z("parentNode",aa,ab,ac,ad,ae)},"~":function(ac,aa,ae){var ab=Q++,Z=Y;if(typeof aa==="string"&&!aa.match(/\W/)){var ad=aa=ae?aa:aa.toUpperCase();Z=V}Z("previousSibling",aa,ab,ac,ad,ae)}},find:{ID:function(aa,ab,ac){if(typeof ab.getElementById!=="undefined"&&!ac){var Z=ab.getElementById(aa[1]);return Z?[Z]:[]}},NAME:function(ab,ae,af){if(typeof ae.getElementsByName!=="undefined"){var aa=[],ad=ae.getElementsByName(ab[1]);for(var ac=0,Z=ad.length;ac<Z;ac++){if(ad[ac].getAttribute("name")===ab[1]){aa.push(ad[ac])}}return aa.length===0?null:aa}},TAG:function(Z,aa){return aa.getElementsByTagName(Z[1])}},preFilter:{CLASS:function(ac,aa,ab,Z,af,ag){ac=" "+ac[1].replace(/\\/g,"")+" ";if(ag){return ac}for(var ad=0,ae;(ae=aa[ad])!=null;ad++){if(ae){if(af^(ae.className&&(" "+ae.className+" ").indexOf(ac)>=0)){if(!ab){Z.push(ae)}}else{if(ab){aa[ad]=false}}}}return false},ID:function(Z){return Z[1].replace(/\\/g,"")},TAG:function(aa,Z){for(var ab=0;Z[ab]===false;ab++){}return Z[ab]&&W(Z[ab])?aa[1]:aa[1].toUpperCase()},CHILD:function(Z){if(Z[1]=="nth"){var aa=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(Z[2]=="even"&&"2n"||Z[2]=="odd"&&"2n+1"||!/\D/.test(Z[2])&&"0n+"+Z[2]||Z[2]);Z[2]=(aa[1]+(aa[2]||1))-0;Z[3]=aa[3]-0}Z[0]=Q++;return Z},ATTR:function(ad,aa,ab,Z,ae,af){var ac=ad[1].replace(/\\/g,"");if(!af&&M.attrMap[ac]){ad[1]=M.attrMap[ac]}if(ad[2]==="~="){ad[4]=" "+ad[4]+" "}return ad},PSEUDO:function(ad,aa,ab,Z,ae){if(ad[1]==="not"){if(ad[3].match(X).length>1||/^\w/.test(ad[3])){ad[3]=J(ad[3],null,null,aa)}else{var ac=J.filter(ad[3],aa,ab,true^ae);if(!ab){Z.push.apply(Z,ac)}return false}}else{if(M.match.POS.test(ad[0])||M.match.CHILD.test(ad[0])){return true}}return ad},POS:function(Z){Z.unshift(true);return Z}},filters:{enabled:function(Z){return Z.disabled===false&&Z.type!=="hidden"},disabled:function(Z){return Z.disabled===true},checked:function(Z){return Z.checked===true},selected:function(Z){Z.parentNode.selectedIndex;return Z.selected===true},parent:function(Z){return !!Z.firstChild},empty:function(Z){return !Z.firstChild},has:function(ab,aa,Z){return !!J(Z[3],ab).length},header:function(Z){return/h\d/i.test(Z.nodeName)},text:function(Z){return"text"===Z.type},radio:function(Z){return"radio"===Z.type},checkbox:function(Z){return"checkbox"===Z.type},file:function(Z){return"file"===Z.type},password:function(Z){return"password"===Z.type},submit:function(Z){return"submit"===Z.type},image:function(Z){return"image"===Z.type},reset:function(Z){return"reset"===Z.type},button:function(Z){return"button"===Z.type||Z.nodeName.toUpperCase()==="BUTTON"},input:function(Z){return/input|select|textarea|button/i.test(Z.nodeName)}},setFilters:{first:function(aa,Z){return Z===0},last:function(ab,aa,Z,ac){return aa===ac.length-1},even:function(aa,Z){return Z%2===0},odd:function(aa,Z){return Z%2===1},lt:function(ab,aa,Z){return aa<Z[3]-0},gt:function(ab,aa,Z){return aa>Z[3]-0},nth:function(ab,aa,Z){return Z[3]-0==aa},eq:function(ab,aa,Z){return Z[3]-0==aa}},filter:{PSEUDO:function(af,ab,ac,ag){var aa=ab[1],ad=M.filters[aa];if(ad){return ad(af,ac,ab,ag)}else{if(aa==="contains"){return(af.textContent||af.innerText||"").indexOf(ab[3])>=0}else{if(aa==="not"){var ae=ab[3];for(var ac=0,Z=ae.length;ac<Z;ac++){if(ae[ac]===af){return false}}return true}}}},CHILD:function(Z,ac){var af=ac[1],aa=Z;switch(af){case"only":case"first":while(aa=aa.previousSibling){if(aa.nodeType===1){return false}}if(af=="first"){return true}aa=Z;case"last":while(aa=aa.nextSibling){if(aa.nodeType===1){return false}}return true;case"nth":var ab=ac[2],ai=ac[3];if(ab==1&&ai==0){return true}var ae=ac[0],ah=Z.parentNode;if(ah&&(ah.sizcache!==ae||!Z.nodeIndex)){var ad=0;for(aa=ah.firstChild;aa;aa=aa.nextSibling){if(aa.nodeType===1){aa.nodeIndex=++ad}}ah.sizcache=ae}var ag=Z.nodeIndex-ai;if(ab==0){return ag==0}else{return(ag%ab==0&&ag/ab>=0)}}},ID:function(aa,Z){return aa.nodeType===1&&aa.getAttribute("id")===Z},TAG:function(aa,Z){return(Z==="*"&&aa.nodeType===1)||aa.nodeName===Z},CLASS:function(aa,Z){return(" "+(aa.className||aa.getAttribute("class"))+" ").indexOf(Z)>-1},ATTR:function(ae,ac){var ab=ac[1],Z=M.attrHandle[ab]?M.attrHandle[ab](ae):ae[ab]!=null?ae[ab]:ae.getAttribute(ab),af=Z+"",ad=ac[2],aa=ac[4];return Z==null?ad==="!=":ad==="="?af===aa:ad==="*="?af.indexOf(aa)>=0:ad==="~="?(" "+af+" ").indexOf(aa)>=0:!aa?af&&Z!==false:ad==="!="?af!=aa:ad==="^="?af.indexOf(aa)===0:ad==="$="?af.substr(af.length-aa.length)===aa:ad==="|="?af===aa||af.substr(0,aa.length+1)===aa+"-":false},POS:function(ad,aa,ab,ae){var Z=aa[2],ac=M.setFilters[Z];if(ac){return ac(ad,ab,aa,ae)}}}};var S=M.match.POS;for(var U in M.match){M.match[U]=RegExp(M.match[U].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var I=function(aa,Z){aa=Array.prototype.slice.call(aa);if(Z){Z.push.apply(Z,aa);return Z}return aa};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(T){I=function(ad,ac){var aa=ac||[];if(L.call(ad)==="[object Array]"){Array.prototype.push.apply(aa,ad)}else{if(typeof ad.length==="number"){for(var ab=0,Z=ad.length;ab<Z;ab++){aa.push(ad[ab])}}else{for(var ab=0;ad[ab];ab++){aa.push(ad[ab])}}}return aa}}var K;if(document.documentElement.compareDocumentPosition){K=function(aa,Z){var ab=aa.compareDocumentPosition(Z)&4?-1:aa===Z?0:1;if(ab===0){hasDuplicate=true}return ab}}else{if("sourceIndex" in document.documentElement){K=function(aa,Z){var ab=aa.sourceIndex-Z.sourceIndex;if(ab===0){hasDuplicate=true}return ab}}else{if(document.createRange){K=function(ac,aa){var ab=ac.ownerDocument.createRange(),Z=aa.ownerDocument.createRange();ab.selectNode(ac);ab.collapse(true);Z.selectNode(aa);Z.collapse(true);var ad=ab.compareBoundaryPoints(Range.START_TO_END,Z);if(ad===0){hasDuplicate=true}return ad}}}}(function(){var aa=document.createElement("form"),ab="script"+(new Date).getTime();aa.innerHTML="<input name='"+ab+"'/>";var Z=document.documentElement;Z.insertBefore(aa,Z.firstChild);if(!!document.getElementById(ab)){M.find.ID=function(ad,ae,af){if(typeof ae.getElementById!=="undefined"&&!af){var ac=ae.getElementById(ad[1]);return ac?ac.id===ad[1]||typeof ac.getAttributeNode!=="undefined"&&ac.getAttributeNode("id").nodeValue===ad[1]?[ac]:g:[]}};M.filter.ID=function(ae,ac){var ad=typeof ae.getAttributeNode!=="undefined"&&ae.getAttributeNode("id");return ae.nodeType===1&&ad&&ad.nodeValue===ac}}Z.removeChild(aa)})();(function(){var Z=document.createElement("div");Z.appendChild(document.createComment(""));if(Z.getElementsByTagName("*").length>0){M.find.TAG=function(aa,ae){var ad=ae.getElementsByTagName(aa[1]);if(aa[1]==="*"){var ac=[];for(var ab=0;ad[ab];ab++){if(ad[ab].nodeType===1){ac.push(ad[ab])}}ad=ac}return ad}}Z.innerHTML="<a href='#'></a>";if(Z.firstChild&&typeof Z.firstChild.getAttribute!=="undefined"&&Z.firstChild.getAttribute("href")!=="#"){M.attrHandle.href=function(aa){return aa.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var Z=J,aa=document.createElement("div");aa.innerHTML="<p class='TEST'></p>";if(aa.querySelectorAll&&aa.querySelectorAll(".TEST").length===0){return}J=function(ae,ad,ab,ac){ad=ad||document;if(!ac&&ad.nodeType===9&&!W(ad)){try{return I(ad.querySelectorAll(ae),ab)}catch(af){}}return Z(ae,ad,ab,ac)};J.find=Z.find;J.filter=Z.filter;J.selectors=Z.selectors;J.matches=Z.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var Z=document.createElement("div");Z.innerHTML="<div class='test e'></div><div class='test'></div>";if(Z.getElementsByClassName("e").length===0){return}Z.lastChild.className="e";if(Z.getElementsByClassName("e").length===1){return}M.order.splice(1,0,"CLASS");M.find.CLASS=function(aa,ab,ac){if(typeof ab.getElementsByClassName!=="undefined"&&!ac){return ab.getElementsByClassName(aa[1])}}})()}function V(aa,af,ae,aj,ag,ai){var ah=aa=="previousSibling"&&!ai;for(var ac=0,ab=aj.length;ac<ab;ac++){var Z=aj[ac];if(Z){if(ah&&Z.nodeType===1){Z.sizcache=ae;Z.sizset=ac}Z=Z[aa];var ad=false;while(Z){if(Z.sizcache===ae){ad=aj[Z.sizset];break}if(Z.nodeType===1&&!ai){Z.sizcache=ae;Z.sizset=ac}if(Z.nodeName===af){ad=Z;break}Z=Z[aa]}aj[ac]=ad}}}function Y(aa,af,ae,aj,ag,ai){var ah=aa=="previousSibling"&&!ai;for(var ac=0,ab=aj.length;ac<ab;ac++){var Z=aj[ac];if(Z){if(ah&&Z.nodeType===1){Z.sizcache=ae;Z.sizset=ac}Z=Z[aa];var ad=false;while(Z){if(Z.sizcache===ae){ad=aj[Z.sizset];break}if(Z.nodeType===1){if(!ai){Z.sizcache=ae;Z.sizset=ac}if(typeof af!=="string"){if(Z===af){ad=true;break}}else{if(J.filter(af,[Z]).length>0){ad=Z;break}}}Z=Z[aa]}aj[ac]=ad}}}var P=document.compareDocumentPosition?function(aa,Z){return aa.compareDocumentPosition(Z)&16}:function(aa,Z){return aa!==Z&&(aa.contains?aa.contains(Z):true)};var W=function(Z){return Z.nodeType===9&&Z.documentElement.nodeName!=="HTML"||!!Z.ownerDocument&&W(Z.ownerDocument)};var O=function(Z,ag){var ac=[],ad="",ae,ab=ag.nodeType?[ag]:ag;while((ae=M.match.PSEUDO.exec(Z))){ad+=ae[0];Z=Z.replace(M.match.PSEUDO,"")}Z=M.relative[Z]?Z+"*":Z;for(var af=0,aa=ab.length;af<aa;af++){J(Z,ab[af],ac)}return J.filter(ad,ac)};q.find=J;q.filter=J.filter;q.expr=J.selectors;q.expr[":"]=q.expr.filters;J.selectors.filters.hidden=function(Z){return Z.offsetWidth===0||Z.offsetHeight===0};J.selectors.filters.visible=function(Z){return Z.offsetWidth>0||Z.offsetHeight>0};J.selectors.filters.animated=function(Z){return q.grep(q.timers,function(aa){return Z===aa.elem}).length};q.multiFilter=function(ab,Z,aa){if(aa){ab=":not("+ab+")"}return J.matches(ab,Z)};q.dir=function(ab,aa){var Z=[],ac=ab[aa];while(ac&&ac!=document){if(ac.nodeType==1){Z.push(ac)}ac=ac[aa]}return Z};q.nth=function(ad,Z,ab,ac){Z=Z||1;var aa=0;for(;ad;ad=ad[ab]){if(ad.nodeType==1&&++aa==Z){break}}return ad};q.sibling=function(ab,aa){var Z=[];for(;ab;ab=ab.nextSibling){if(ab.nodeType==1&&ab!=aa){Z.push(ab)}}return Z};return;n.Sizzle=J})();q.event={add:function(M,J,L,P){if(M.nodeType==3||M.nodeType==8){return}if(M.setInterval&&M!=n){M=n}if(!L.guid){L.guid=this.guid++}if(P!==g){var K=L;L=this.proxy(K);L.data=P}var I=q.data(M,"events")||q.data(M,"events",{}),O=q.data(M,"handle")||q.data(M,"handle",function(){return typeof q!=="undefined"&&!q.event.triggered?q.event.handle.apply(arguments.callee.elem,arguments):g});O.elem=M;q.each(J.split(/\s+/),function(S,T){var U=T.split(".");T=U.shift();L.type=U.slice().sort().join(".");var Q=I[T];if(q.event.specialAll[T]){q.event.specialAll[T].setup.call(M,P,U)}if(!Q){Q=I[T]={};if(!q.event.special[T]||q.event.special[T].setup.call(M,P,U)===false){if(M.addEventListener){M.addEventListener(T,O,false)}else{if(M.attachEvent){M.attachEvent("on"+T,O)}}}}Q[L.guid]=L;q.event.global[T]=true});M=null},guid:1,global:{},remove:function(P,L,O){if(P.nodeType==3||P.nodeType==8){return}var K=q.data(P,"events"),J,I;if(K){if(L===g||(typeof L==="string"&&L.charAt(0)==".")){for(var M in K){this.remove(P,M+(L||""))}}else{if(L.type){O=L.handler;L=L.type}q.each(L.split(/\s+/),function(S,U){var W=U.split(".");U=W.shift();var T=RegExp("(^|\\.)"+W.slice().sort().join(".*\\.")+"(\\.|$)");if(K[U]){if(O){delete K[U][O.guid]}else{for(var V in K[U]){if(T.test(K[U][V].type)){delete K[U][V]}}}if(q.event.specialAll[U]){q.event.specialAll[U].teardown.call(P,W)}for(J in K[U]){break}if(!J){if(!q.event.special[U]||q.event.special[U].teardown.call(P,W)===false){if(P.removeEventListener){P.removeEventListener(U,q.data(P,"handle"),false)}else{if(P.detachEvent){P.detachEvent("on"+U,q.data(P,"handle"))}}}J=null;delete K[U]}}})}for(J in K){break}if(!J){var Q=q.data(P,"handle");if(Q){Q.elem=null}q.removeData(P,"events");q.removeData(P,"handle")}}},trigger:function(M,P,L,I){var K=M.type||M;if(!I){M=typeof M==="object"?M[h]?M:q.extend(q.Event(K),M):q.Event(K);if(K.indexOf("!")>=0){M.type=K=K.slice(0,-1);M.exclusive=true}if(!L){M.stopPropagation();if(this.global[K]){q.each(q.cache,function(){if(this.events&&this.events[K]){q.event.trigger(M,P,this.handle.elem)}})}}if(!L||L.nodeType==3||L.nodeType==8){return g}M.result=g;M.target=L;P=q.makeArray(P);P.unshift(M)}M.currentTarget=L;var O=q.data(L,"handle");if(O){O.apply(L,P)}if((!L[K]||(q.nodeName(L,"a")&&K=="click"))&&L["on"+K]&&L["on"+K].apply(L,P)===false){M.result=false}if(!I&&L[K]&&!M.isDefaultPrevented()&&!(q.nodeName(L,"a")&&K=="click")){this.triggered=true;try{L[K]()}catch(Q){}}this.triggered=false;if(!M.isPropagationStopped()){var J=L.parentNode||L.ownerDocument;if(J){q.event.trigger(M,P,J,true)}}},handle:function(P){var O,I;P=arguments[0]=q.event.fix(P||n.event);P.currentTarget=this;var Q=P.type.split(".");P.type=Q.shift();O=!Q.length&&!P.exclusive;var M=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");I=(q.data(this,"events")||{})[P.type];for(var K in I){var L=I[K];if(O||M.test(L.type)){P.handler=L;P.data=L.data;var J=L.apply(this,arguments);if(J!==g){P.result=J;if(J===false){P.preventDefault();P.stopPropagation()}}if(P.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(L){if(L[h]){return L}var J=L;L=q.Event(J);for(var K=this.props.length,O;K;){O=this.props[--K];L[O]=J[O]}if(!L.target){L.target=L.srcElement||document}if(L.target.nodeType==3){L.target=L.target.parentNode}if(!L.relatedTarget&&L.fromElement){L.relatedTarget=L.fromElement==L.target?L.toElement:L.fromElement}if(L.pageX==null&&L.clientX!=null){var M=document.documentElement,I=document.body;L.pageX=L.clientX+(M&&M.scrollLeft||I&&I.scrollLeft||0)-(M.clientLeft||0);L.pageY=L.clientY+(M&&M.scrollTop||I&&I.scrollTop||0)-(M.clientTop||0)}if(!L.which&&((L.charCode||L.charCode===0)?L.charCode:L.keyCode)){L.which=L.charCode||L.keyCode}if(!L.metaKey&&L.ctrlKey){L.metaKey=L.ctrlKey}if(!L.which&&L.button){L.which=(L.button&1?1:(L.button&2?3:(L.button&4?2:0)))}return L},proxy:function(J,I){I=I||function(){return J.apply(this,arguments)};I.guid=J.guid=J.guid||I.guid||this.guid++;return I},special:{ready:{setup:F,teardown:function(){}}},specialAll:{live:{setup:function(I,J){q.event.add(this,J[0],c)},teardown:function(K){if(K.length){var I=0,J=RegExp("(^|\\.)"+K[0]+"(\\.|$)");q.each((q.data(this,"events").live||{}),function(){if(J.test(this.type)){I++}});if(I<1){q.event.remove(this,K[0],c)}}}}}};q.Event=function(I){if(!this.preventDefault){return new q.Event(I)}if(I&&I.type){this.originalEvent=I;this.type=I.type}else{this.type=I}this.timeStamp=e();this[h]=true};function m(){return false}function x(){return true}q.Event.prototype={preventDefault:function(){this.isDefaultPrevented=x;var I=this.originalEvent;if(!I){return}if(I.preventDefault){I.preventDefault()}I.returnValue=false},stopPropagation:function(){this.isPropagationStopped=x;var I=this.originalEvent;if(!I){return}if(I.stopPropagation){I.stopPropagation()}I.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=x;this.stopPropagation()},isDefaultPrevented:m,isPropagationStopped:m,isImmediatePropagationStopped:m};var a=function(J){var I=J.relatedTarget;while(I&&I!=this){try{I=I.parentNode}catch(K){I=this}}if(I!=this){J.type=J.data;q.event.handle.apply(this,arguments)}};q.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(J,I){q.event.special[I]={setup:function(){q.event.add(this,J,a,I)},teardown:function(){q.event.remove(this,J,a)}}});q.fn.extend({bind:function(J,K,I){return J=="unload"?this.one(J,K,I):this.each(function(){q.event.add(this,J,I||K,I&&K)})},one:function(K,L,J){var I=q.event.proxy(J||L,function(M){q(this).unbind(M,I);return(J||L).apply(this,arguments)});return this.each(function(){q.event.add(this,K,I,J&&L)})},unbind:function(J,I){return this.each(function(){q.event.remove(this,J,I)})},trigger:function(I,J){return this.each(function(){q.event.trigger(I,J,this)})},triggerHandler:function(I,K){if(this[0]){var J=q.Event(I);J.preventDefault();J.stopPropagation();q.event.trigger(J,K,this[0]);return J.result}},toggle:function(K){var I=arguments,J=1;while(J<I.length){q.event.proxy(K,I[J++])}return this.click(q.event.proxy(K,function(L){this.lastToggle=(this.lastToggle||0)%J;L.preventDefault();return I[this.lastToggle++].apply(this,arguments)||false}))},hover:function(I,J){return this.mouseenter(I).mouseleave(J)},ready:function(I){F();if(q.isReady){I.call(document,q)}else{q.readyList.push(I)}return this},live:function(K,J){var I=q.event.proxy(J);I.guid+=this.selector+K;q(document).bind(k(K,this.selector),this.selector,I);return this},die:function(J,I){q(document).unbind(k(J,this.selector),I?{guid:I.guid+this.selector+J}:null);return this}});function c(L){var I=RegExp("(^|\\.)"+L.type+"(\\.|$)"),K=true,J=[];q.each(q.data(this,"events").live||[],function(M,O){if(I.test(O.type)){var P=q(L.target).closest(O.data)[0];if(P){J.push({elem:P,fn:O})}}});J.sort(function(O,M){return q.data(O.elem,"closest")-q.data(M.elem,"closest")});q.each(J,function(){if(this.fn.call(this.elem,L,this.fn.data)===false){return(K=false)}});return K}function k(J,I){return["live",J,I.replace(/\./g,"`").replace(/ /g,"|")].join(".")}q.extend({isReady:false,readyList:[],ready:function(){if(!q.isReady){q.isReady=true;if(q.readyList){q.each(q.readyList,function(){this.call(document,q)});q.readyList=null}q(document).triggerHandler("ready")}}});var B=false;function F(){if(B){return}B=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);q.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);q.ready()}});if(document.documentElement.doScroll&&n==n.top){(function(){if(q.isReady){return}try{document.documentElement.doScroll("left")}catch(I){setTimeout(arguments.callee,0);return}q.ready()})()}}}q.event.add(n,"load",q.ready)}q.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(J,I){q.fn[I]=function(K){return K?this.bind(I,K):this.trigger(I)}});q(n).bind("unload",function(){for(var I in q.cache){if(I!=1&&q.cache[I].handle){q.event.remove(q.cache[I].handle.elem)}}});(function(){q.support={};var J=document.documentElement,K=document.createElement("script"),P=document.createElement("div"),O="script"+(new Date).getTime();P.style.display="none";P.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var L=P.getElementsByTagName("*"),I=P.getElementsByTagName("a")[0];if(!L||!L.length||!I){return}q.support={leadingWhitespace:P.firstChild.nodeType==3,tbody:!P.getElementsByTagName("tbody").length,objectAll:!!P.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!P.getElementsByTagName("link").length,style:/red/.test(I.getAttribute("style")),hrefNormalized:I.getAttribute("href")==="/a",opacity:I.style.opacity==="0.5",cssFloat:!!I.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};K.type="text/javascript";try{K.appendChild(document.createTextNode("window."+O+"=1;"))}catch(M){}J.insertBefore(K,J.firstChild);if(n[O]){q.support.scriptEval=true;delete n[O]}J.removeChild(K);if(P.attachEvent&&P.fireEvent){P.attachEvent("onclick",function(){q.support.noCloneEvent=false;P.detachEvent("onclick",arguments.callee)});P.cloneNode(true).fireEvent("onclick")}q(function(){var Q=document.createElement("div");Q.style.width=Q.style.paddingLeft="1px";document.body.appendChild(Q);q.boxModel=q.support.boxModel=Q.offsetWidth===2;document.body.removeChild(Q).style.display="none"})})();var z=q.support.cssFloat?"cssFloat":"styleFloat";q.props={"for":"htmlFor","class":"className","float":z,cssFloat:z,styleFloat:z,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};q.fn.extend({_load:q.fn.load,load:function(K,O,P){if(typeof K!=="string"){return this._load(K)}var M=K.indexOf(" ");if(M>=0){var I=K.slice(M,K.length);K=K.slice(0,M)}var L="GET";if(O){if(q.isFunction(O)){P=O;O=null}else{if(typeof O==="object"){O=q.param(O);L="POST"}}}var J=this;q.ajax({url:K,type:L,dataType:"html",data:O,complete:function(S,Q){if(Q=="success"||Q=="notmodified"){J.html(I?q("<div/>").append(S.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(I):S.responseText)}if(P){J.each(P,[S.responseText,Q,S])}}});return this},serialize:function(){return q.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?q.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(I,J){var K=q(this).val();return K==null?null:q.isArray(K)?q.map(K,function(M,L){return{name:J.name,value:M}}):{name:J.name,value:K}}).get()}});q.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(I,J){q.fn[J]=function(K){return this.bind(J,K)}});var t=e();q.extend({get:function(I,K,L,J){if(q.isFunction(K)){L=K;K=null}return q.ajax({type:"GET",url:I,data:K,success:L,dataType:J})},getScript:function(I,J){return q.get(I,null,J,"script")},getJSON:function(I,J,K){return q.get(I,J,K,"json")},post:function(I,K,L,J){if(q.isFunction(K)){L=K;K={}}return q.ajax({type:"POST",url:I,data:K,success:L,dataType:J})},ajaxSetup:function(I){q.extend(q.ajaxSettings,I)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return n.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(S){S=q.extend(true,S,q.extend(true,{},q.ajaxSettings,S));var ac,J=/=\?(&|$)/g,X,ab,K=S.type.toUpperCase();if(S.data&&S.processData&&typeof S.data!=="string"){S.data=q.param(S.data)}if(S.dataType=="jsonp"){if(K=="GET"){if(!S.url.match(J)){S.url+=(S.url.match(/\?/)?"&":"?")+(S.jsonp||"callback")+"=?"}}else{if(!S.data||!S.data.match(J)){S.data=(S.data?S.data+"&":"")+(S.jsonp||"callback")+"=?"}}S.dataType="json"}if(S.dataType=="json"&&(S.data&&S.data.match(J)||S.url.match(J))){ac="jsonp"+t++;if(S.data){S.data=(S.data+"").replace(J,"="+ac+"$1")}S.url=S.url.replace(J,"="+ac+"$1");S.dataType="script";n[ac]=function(ad){ab=ad;M();Q();n[ac]=g;try{delete n[ac]}catch(ae){}if(L){L.removeChild(Z)}}}if(S.dataType=="script"&&S.cache==null){S.cache=false}if(S.cache===false&&K=="GET"){var I=e();var aa=S.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+I+"$2");S.url=aa+((aa==S.url)?(S.url.match(/\?/)?"&":"?")+"_="+I:"")}if(S.data&&K=="GET"){S.url+=(S.url.match(/\?/)?"&":"?")+S.data;S.data=null}if(S.global&&!q.active++){q.event.trigger("ajaxStart")}var W=/^(\w+:)?\/\/([^\/?#]+)/.exec(S.url);if(S.dataType=="script"&&K=="GET"&&W&&(W[1]&&W[1]!=location.protocol||W[2]!=location.host)){var L=document.getElementsByTagName("head")[0];var Z=document.createElement("script");Z.src=S.url;if(S.scriptCharset){Z.charset=S.scriptCharset}if(!ac){var U=false;Z.onload=Z.onreadystatechange=function(){if(!U&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){U=true;M();Q();Z.onload=Z.onreadystatechange=null;L.removeChild(Z)}}}L.appendChild(Z);return g}var P=false;var O=S.xhr();if(S.username){O.open(K,S.url,S.async,S.username,S.password)}else{O.open(K,S.url,S.async)}try{if(S.data){O.setRequestHeader("Content-Type",S.contentType)}if(S.ifModified){O.setRequestHeader("If-Modified-Since",q.lastModified[S.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}O.setRequestHeader("X-Requested-With","XMLHttpRequest");O.setRequestHeader("Accept",S.dataType&&S.accepts[S.dataType]?S.accepts[S.dataType]+", */*":S.accepts._default)}catch(Y){}if(S.beforeSend&&S.beforeSend(O,S)===false){if(S.global&&!--q.active){q.event.trigger("ajaxStop")}O.abort();return false}if(S.global){q.event.trigger("ajaxSend",[O,S])}var T=function(ad){if(O.readyState==0){if(V){clearInterval(V);V=null;if(S.global&&!--q.active){q.event.trigger("ajaxStop")}}}else{if(!P&&O&&(O.readyState==4||ad=="timeout")){P=true;if(V){clearInterval(V);V=null}X=ad=="timeout"?"timeout":!q.httpSuccess(O)?"error":S.ifModified&&q.httpNotModified(O,S.url)?"notmodified":"success";if(X=="success"){try{ab=q.httpData(O,S.dataType,S)}catch(af){X="parsererror"}}if(X=="success"){var ae;try{ae=O.getResponseHeader("Last-Modified")}catch(af){}if(S.ifModified&&ae){q.lastModified[S.url]=ae}if(!ac){M()}}else{q.handleError(S,O,X)}Q();if(ad){O.abort()}if(S.async){O=null}}}};if(S.async){var V=setInterval(T,13);if(S.timeout>0){setTimeout(function(){if(O&&!P){T("timeout")}},S.timeout)}}try{O.send(S.data)}catch(Y){q.handleError(S,O,null,Y)}if(!S.async){T()}function M(){if(S.success){S.success(ab,X)}if(S.global){q.event.trigger("ajaxSuccess",[O,S])}}function Q(){if(S.complete){S.complete(O,X)}if(S.global){q.event.trigger("ajaxComplete",[O,S])}if(S.global&&!--q.active){q.event.trigger("ajaxStop")}}return O},handleError:function(J,L,I,K){if(J.error){J.error(L,I,K)}if(J.global){q.event.trigger("ajaxError",[L,J,K])}},active:0,httpSuccess:function(J){try{return !J.status&&location.protocol=="file:"||(J.status>=200&&J.status<300)||J.status==304||J.status==1223}catch(I){}return false},httpNotModified:function(K,I){try{var L=K.getResponseHeader("Last-Modified");return K.status==304||L==q.lastModified[I]}catch(J){}return false},httpData:function(O,L,K){var J=O.getResponseHeader("content-type"),I=L=="xml"||!L&&J&&J.indexOf("xml")>=0,M=I?O.responseXML:O.responseText;if(I&&M.documentElement.tagName=="parsererror"){throw"parsererror"}if(K&&K.dataFilter){M=K.dataFilter(M,L)}if(typeof M==="string"){if(L=="script"){q.globalEval(M)}if(L=="json"){M=n["eval"]("("+M+")")}}return M},param:function(I){var K=[];function L(M,O){K[K.length]=encodeURIComponent(M)+"="+encodeURIComponent(O)}if(q.isArray(I)||I.jquery){q.each(I,function(){L(this.name,this.value)})}else{for(var J in I){if(q.isArray(I[J])){q.each(I[J],function(){L(J,this)})}else{L(J,q.isFunction(I[J])?I[J]():I[J])}}}return K.join("&").replace(/%20/g,"+")}});var o={},p,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function v(J,I){var K={};q.each(d.concat.apply([],d.slice(0,I)),function(){K[this]=J});return K}q.fn.extend({show:function(O,Q){if(O){return this.animate(v("show",3),O,Q)}else{for(var L=0,J=this.length;L<J;L++){var I=q.data(this[L],"olddisplay");this[L].style.display=I||"";if(q.css(this[L],"display")==="none"){var K=this[L].tagName,P;if(o[K]){P=o[K]}else{var M=q("<"+K+" />").appendTo("body");P=M.css("display");if(P==="none"){P="block"}M.remove();o[K]=P}q.data(this[L],"olddisplay",P)}}for(var L=0,J=this.length;L<J;L++){this[L].style.display=q.data(this[L],"olddisplay")||""}return this}},hide:function(L,M){if(L){return this.animate(v("hide",3),L,M)}else{for(var K=0,J=this.length;K<J;K++){var I=q.data(this[K],"olddisplay");if(!I&&I!=="none"){q.data(this[K],"olddisplay",q.css(this[K],"display"))}}for(var K=0,J=this.length;K<J;K++){this[K].style.display="none"}return this}},_toggle:q.fn.toggle,toggle:function(K,J){var I=typeof K==="boolean";return q.isFunction(K)&&q.isFunction(J)?this._toggle.apply(this,arguments):K==null||I?this.each(function(){var L=I?K:q(this).is(":hidden");q(this)[L?"show":"hide"]()}):this.animate(v("toggle",3),K,J)},fadeTo:function(I,K,J){return this.animate({opacity:K},I,J)},animate:function(M,J,L,K){var I=q.speed(J,L,K);return this[I.queue===false?"each":"queue"](function(){var P=q.extend({},I),S,Q=this.nodeType==1&&q(this).is(":hidden"),O=this;for(S in M){if(M[S]=="hide"&&Q||M[S]=="show"&&!Q){return P.complete.call(this)}if((S=="height"||S=="width")&&this.style){P.display=q.css(this,"display");P.overflow=this.style.overflow}}if(P.overflow!=null){this.style.overflow="hidden"}P.curAnim=q.extend({},M);q.each(M,function(U,Y){var X=new q.fx(O,P,U);if(/toggle|show|hide/.test(Y)){X[Y=="toggle"?Q?"show":"hide":Y](M)}else{var W=Y.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),Z=X.cur(true)||0;if(W){var T=parseFloat(W[2]),V=W[3]||"px";if(V!="px"){O.style[U]=(T||1)+V;Z=((T||1)/X.cur(true))*Z;O.style[U]=Z+V}if(W[1]){T=((W[1]=="-="?-1:1)*T)+Z}X.custom(Z,T,V)}else{X.custom(Z,Y,"")}}});return true})},stop:function(J,I){var K=q.timers;if(J){this.queue([])}this.each(function(){for(var L=K.length-1;L>=0;L--){if(K[L].elem==this){if(I){K[L](true)}K.splice(L,1)}}});if(!I){this.dequeue()}return this}});q.each({slideDown:v("show",1),slideUp:v("hide",1),slideToggle:v("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(I,J){q.fn[I]=function(K,L){return this.animate(J,K,L)}});q.extend({speed:function(K,L,J){var I=typeof K==="object"?K:{complete:J||!J&&L||q.isFunction(K)&&K,duration:K,easing:J&&L||L&&!q.isFunction(L)&&L};I.duration=q.fx.off?0:typeof I.duration==="number"?I.duration:q.fx.speeds[I.duration]||q.fx.speeds._default;I.old=I.complete;I.complete=function(){if(I.queue!==false){q(this).dequeue()}if(q.isFunction(I.old)){I.old.call(this)}};return I},easing:{linear:function(K,L,I,J){return I+J*K},swing:function(K,L,I,J){return((-Math.cos(K*Math.PI)/2)+0.5)*J+I}},timers:[],fx:function(J,I,K){this.options=I;this.elem=J;this.prop=K;if(!I.orig){I.orig={}}}});q.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(q.fx.step[this.prop]||q.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(J){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var I=parseFloat(q.css(this.elem,this.prop,J));return I&&I>-10000?I:parseFloat(q.curCSS(this.elem,this.prop))||0},custom:function(M,L,K){this.startTime=e();this.start=M;this.end=L;this.unit=K||this.unit||"px";this.now=this.start;this.pos=this.state=0;var I=this;function J(O){return I.step(O)}J.elem=this.elem;if(J()&&q.timers.push(J)&&!p){p=setInterval(function(){var P=q.timers;for(var O=0;O<P.length;O++){if(!P[O]()){P.splice(O--,1)}}if(!P.length){clearInterval(p);p=g}},13)}},show:function(){this.options.orig[this.prop]=q.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());q(this.elem).show()},hide:function(){this.options.orig[this.prop]=q.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(L){var K=e();if(L||K>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var I=true;for(var J in this.options.curAnim){if(this.options.curAnim[J]!==true){I=false}}if(I){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(q.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){q(this.elem).hide()}if(this.options.hide||this.options.show){for(var M in this.options.curAnim){q.attr(this.elem.style,M,this.options.orig[M])}}this.options.complete.call(this.elem)}return false}else{var O=K-this.startTime;this.state=O/this.options.duration;this.pos=q.easing[this.options.easing||(q.easing.swing?"swing":"linear")](this.state,O,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};q.extend(q.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(I){q.attr(I.elem.style,"opacity",I.now)},_default:function(I){if(I.elem.style&&I.elem.style[I.prop]!=null){I.elem.style[I.prop]=I.now+I.unit}else{I.elem[I.prop]=I.now}}}});if(document.documentElement.getBoundingClientRect){q.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return q.offset.bodyOffset(this[0])}var K=this[0].getBoundingClientRect(),O=this[0].ownerDocument,J=O.body,I=O.documentElement,Q=I.clientTop||J.clientTop||0,P=I.clientLeft||J.clientLeft||0,M=K.top+(self.pageYOffset||q.boxModel&&I.scrollTop||J.scrollTop)-Q,L=K.left+(self.pageXOffset||q.boxModel&&I.scrollLeft||J.scrollLeft)-P;return{top:M,left:L}}}else{q.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return q.offset.bodyOffset(this[0])}q.offset.initialized||q.offset.initialize();var O=this[0],K=O.offsetParent,J=O,U=O.ownerDocument,S,L=U.documentElement,P=U.body,Q=U.defaultView,I=Q.getComputedStyle(O,null),T=O.offsetTop,M=O.offsetLeft;while((O=O.parentNode)&&O!==P&&O!==L){S=Q.getComputedStyle(O,null);T-=O.scrollTop,M-=O.scrollLeft;if(O===K){T+=O.offsetTop,M+=O.offsetLeft;if(q.offset.doesNotAddBorder&&!(q.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(O.tagName))){T+=parseInt(S.borderTopWidth,10)||0,M+=parseInt(S.borderLeftWidth,10)||0}J=K,K=O.offsetParent}if(q.offset.subtractsBorderForOverflowNotVisible&&S.overflow!=="visible"){T+=parseInt(S.borderTopWidth,10)||0,M+=parseInt(S.borderLeftWidth,10)||0}I=S}if(I.position==="relative"||I.position==="static"){T+=P.offsetTop,M+=P.offsetLeft}if(I.position==="fixed"){T+=Math.max(L.scrollTop,P.scrollTop),M+=Math.max(L.scrollLeft,P.scrollLeft)}return{top:T,left:M}}}q.offset={initialize:function(){if(this.initialized){return}var Q=document.body,J=document.createElement("div"),L,K,T,M,S,I,O=Q.style.marginTop,P='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';S={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(I in S){J.style[I]=S[I]}J.innerHTML=P;Q.insertBefore(J,Q.firstChild);L=J.firstChild,K=L.firstChild,M=L.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(K.offsetTop!==5);this.doesAddBorderForTableAndCells=(M.offsetTop===5);L.style.overflow="hidden",L.style.position="relative";this.subtractsBorderForOverflowNotVisible=(K.offsetTop===-5);Q.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(Q.offsetTop===0);Q.style.marginTop=O;Q.removeChild(J);this.initialized=true},bodyOffset:function(I){q.offset.initialized||q.offset.initialize();var K=I.offsetTop,J=I.offsetLeft;if(q.offset.doesNotIncludeMarginInBodyOffset){K+=parseInt(q.curCSS(I,"marginTop",true),10)||0,J+=parseInt(q.curCSS(I,"marginLeft",true),10)||0}return{top:K,left:J}}};q.fn.extend({position:function(){var M=0,L=0,J;if(this[0]){var K=this.offsetParent(),O=this.offset(),I=/^body|html$/i.test(K[0].tagName)?{top:0,left:0}:K.offset();O.top-=l(this,"marginTop");O.left-=l(this,"marginLeft");I.top+=l(K,"borderTopWidth");I.left+=l(K,"borderLeftWidth");J={top:O.top-I.top,left:O.left-I.left}}return J},offsetParent:function(){var I=this[0].offsetParent||document.body;while(I&&(!/^body|html$/i.test(I.tagName)&&q.css(I,"position")=="static")){I=I.offsetParent}return q(I)}});q.each(["Left","Top"],function(J,I){var K="scroll"+I;q.fn[K]=function(L){if(!this[0]){return null}return L!==g?this.each(function(){this==n||this==document?n.scrollTo(!J?L:q(n).scrollLeft(),J?L:q(n).scrollTop()):this[K]=L}):this[0]==n||this[0]==document?self[J?"pageYOffset":"pageXOffset"]||q.boxModel&&document.documentElement[K]||document.body[K]:this[0][K]}});q.each(["Height","Width"],function(M,K){var I=M?"Left":"Top",L=M?"Right":"Bottom",J=K.toLowerCase();q.fn["inner"+K]=function(){return this[0]?q.css(this[0],J,false,"padding"):null};q.fn["outer"+K]=function(P){return this[0]?q.css(this[0],J,false,P?"margin":"border"):null};var O=K.toLowerCase();q.fn[O]=function(P){return this[0]==n?document.compatMode=="CSS1Compat"&&document.documentElement["client"+K]||document.body["client"+K]:this[0]==document?Math.max(document.documentElement["client"+K],document.body["scroll"+K],document.documentElement["scroll"+K],document.body["offset"+K],document.documentElement["offset"+K]):P===g?(this.length?q.css(this[0],O):null):this.css(O,typeof P==="string"?P:P+"px")}})})();if(!window.console||!console.firebug){var names=["log","debug","info","warn","error","assert","dir","dirxml","group","groupEnd","time","timeEnd","count","trace","profile","profileEnd"];window.console={};for(var i=0;i<names.length;++i){window.console[names[i]]=function(){}}}function pageLauncher(b,a){if(a=="_blank"){window.open(b,"mywindow","location=0,status=0,scrollbars=1,width=780px,height=580px,left=10px,top=10px")}else{window.location=b}}function eysd(b,a){document.getElementById(b).style.display=a}function toggle(a){if(document.getElementById(a).style.display=="block"){eysd(a,"none");if(a=="location_selectordiv"){document.getElementById("location_selector").className=""}}else{eysd(a,"block");if(a=="location_selectordiv"){document.getElementById("location_selector").className="close"}}}function show(a){eysd(a,"block")}function hide(a){eysd(a,"none")}function showMainNav(a){show("mainnav_"+a+"");document.getElementById(a+"_off").style.background="#dcdcdc"}function getLetterSelectors(b,f){var e=[],c,d;if(f){d=['<a href="javascript:void(0)" ',," onclick=\"careersLocationLetterSwitch('",,'\');" id="careers_letter_',,'"><span>',,"</span></a>"]}else{d=['<a href="javascript:void(0)" ',," onclick=\"locationLetterSwitch('",,'\');" id="letter_',,'"><span>',,"</span></a>"]}for(c=0;c<b.length;c++){d[1]=(c==0)?'class="on"':"";d[3]=c;d[5]=c;d[7]=b[c].l;e[c]=d.join("")}return e.join("")}function setCommonCC(g,d,c,b,a){if(typeof(d)!="undefined"&&d!=""){var e=document.forms[c];if(e.pt.checked){deleteCookie("Country_Temp","/",cookieDomainName);deleteCookie("Locale_Temp","/",cookieDomainName);setCookie("Country",g.toUpperCase(),365,"/",cookieDomainName);setCookie("Locale",d.toLowerCase(),365,"/",cookieDomainName)}else{setCookie("Country_Temp",g.toUpperCase(),0,"/",cookieDomainName);setCookie("Locale_Temp",d.toLowerCase(),0,"/",cookieDomainName)}window.location.href="/"+g+"/"+d+"/Home"}else{window.location.href=b}}function setCareersCC(b,a){setCommonCC(b,a,"c_rememberme","/US/en/Careers","/Careers")}function setCC(b,a){setCommonCC(b,a,"rememberme","/US/en/Home","/Home")}function getLetterDivs(p,t){var e,f,c,b=[],q,s,o,m,h=0,g=0,d=0;if(t){q=['<div id="careers_country_list_',,'" style="display:',,';">',,'<div class="clear"></div></div>'];s=['<li><a class="countryMenu" href="/Careers" onclick="javascript:setCareersCC(\'',,"','",,"');\">",,,,"</a></li>"]}else{q=['<div id="country_list_',,'" style="display:',,';">',,'<div class="clear"></div></div>'];s=['<li><a class="countryMenu" href="/Home" onclick="javascript:setCC(\'',,"','",,"');\">",,,,,"</a></li>"]}for(o=0;o<p.length;o++){for(m=0,h=0,w=[],d=0;m<p[o].a.length;m++){e=p[o].a[m].split("|");s[1]=e[1];s[5]=e[0];if(e.length>2){f=e[2].split(";");c=e[3].split(";");for(g=0;g<f.length;g++){s[3]=c[g];s[6]=" (";s[7]=f[g];s[8]=")";w[h++]=s.join("");if(++d%4==0){w[h++]="</ul><ul>"}}}else{s[3]="";s[6]="";s[7]="";s[8]="";w[h++]=s.join("");if(++d%4==0){w[h++]="</ul><ul>"}}}q[1]=o;q[3]=(o==0)?"block":"none";q[5]="<ul>"+w.join("")+"</ul>";b[o]=q.join("")}return b.join("")}function addCountryData(){document.getElementById("letters").innerHTML=getLetterSelectors(countryLetters,0);document.getElementById("country_list_container").innerHTML=getLetterDivs(countryLetters)}function addCareersCountryData(){if(document.getElementById("careers_letters")!=null){document.getElementById("careers_letters").innerHTML=getLetterSelectors(countryLetters,1);document.getElementById("careers_country_list_container").innerHTML=getLetterDivs(countryLetters,1)}}function locationLetterSwitch(a){$("#country_list_container div").hide();$("#country_list_container #country_list_"+a).show();$("#letters a").removeClass("on");$("#letter_"+a).addClass("on")}function careersLocationLetterSwitch(a){$("#careers_country_list_container div").hide();$("#careers_country_list_container #careers_country_list_"+a).show();$("#careers_letters a").removeClass("on");$("#careers_letter_"+a).addClass("on")}function RealLoadSelector(f){var c,a=0,b=['<li><a href="',,'">',,"</a></li>"],e=[],h=0,g=parseInt(f.length/3);if((f.length/3)>g){g+=1}e[a++]='<div class="overlayContainer"><div id="fcOverlayContent"><ul>';for(c=0;c<f.length;c++){b[1]=f[c].u;b[3]=f[c].c;e[a++]=b.join("");if(++h%g==0){e[a++]="</ul><ul>"}}e[a++]='</ul><div class="clear"></div></div><div class="fcBorderCover">&nbsp;</div></div>';$("body").append(e.join(""));$(".fcBorderCover").click(function(){$(".overlayTarget .overlayClose").removeClass("overlayClose");$(".overlayContainer").hide()})}function showLogin(){$(".overlayTarget .overlayClose").removeClass("overlayClose");$(".overlayContainer").hide();$("#online_signin_off").hide();document.getElementById("online_signin_on").style.display="block";$("#login_overlay").show()}function hideLogin(){if(getCookie("echannelLoginAccessType")!=null){deleteCookie("echannelLoginAccessType","/",cookieDomainName)}$("#online_signin_on").hide();$("#login_overlay").hide();$("#online_signin_off").show()}function contentLoaded(){$("#mainnav a").click(function(){if(!$(this).hasClass("on")){$("#mainnav a").removeClass("on");$(this).addClass("on");$(".overlayTarget .overlayClose").removeClass("overlayClose");$(".overlayContainer").hide()}});$(".subNavLeft li").hover(function(){$(this).css({"background-color":"white","background-image":"url(/ecimages/overlay-yellow-bkg.gif)","background-position":"left top","background-repeat":"repeat-y"})},function(){$(this).css({"background-color":"","background-image":""})});if($.browser.msie&&$.browser.version<"7"){$(".subNavLeft a").css("margin-left","10px");$("#login_overlay").css({right:"9px",top:"14px"})}if(navigator.platform=="Win32"){$("#industryOverlayContent").css({left:"0px"});$("#fcOverlayContent").css({left:"0px"});$(".subNavContainer").css({left:"-189px"});if($.browser.msie&&$.browser.version<"7"){$("#industryOverlayContent ul").css("margin-left","10px");$(".subNavRight").css("width","460px");$(".subNavLeft").css("width","225px");$(".subNavRight ul.subUlFirst").css("width","215px");$("#industryOverlayContent").css("bottom","-2px");$("#fcOverlayContent").css("bottom","-2px")}if($.browser.msie&&$.browser.version>="7"){}if($.browser.msie){}if($.browser.mozilla){}}$(".subNavLeft li a").click(function(){if(!$(this).parent("li").hasClass("subNavOn")){$(this).parent("li").siblings("li").removeClass("subNavOn");$(this).parent("li").addClass("subNavOn");var k=$(this).attr("class");$(this).parent().parent().parent(".subNavLeft").siblings(".subNavRight").children("div").hide();$(this).parent().parent().parent(".subNavLeft").siblings(".subNavRight").children("."+k).show()}});$(".subNavRight div").eq(0).each(function(){$(this).css("display","block")});$(".overlayLink").click(function(){var k=$(this).attr("id");if(k=="fcOverlay"&&document.getElementById("fcOverlayContent")==null){RealLoadSelector(filteredcountries)}console.log(k);if($("#"+k+"Content").parent(".overlayContainer").css("display")=="none"){$(".overlayTarget .overlayClose").removeClass("overlayClose");$(".overlayContainer").hide();hideLogin();var o=$(this).offset();$("#"+k+"Content").parent(".overlayContainer").css({top:o.top+"px",left:o.left+"px"});if(k=="countryOverlay"&&document.getElementById("letters").innerHTML==""){addCountryData()}$("#"+k+"Content").parent(".overlayContainer").show();$(this).addClass("overlayClose")}else{$("#"+k+"Content").parent(".overlayContainer").hide();$(this).removeClass("overlayClose")}});$(".subNavClose").click(function(){$(this).parent().parent().parent(".overlayContainer").hide();$("#mainnav a").removeClass("on")});$(".industryBorderCover").click(function(){$(".overlayTarget .overlayClose").removeClass("overlayClose");$(".overlayContainer").hide()});$(".fcBorderCover").click(function(){$(".overlayTarget .overlayClose").removeClass("overlayClose");$(".overlayContainer").hide()});$("body").append('<div class="hidden"><img src="/ecimages/drop-down-close.jpg" /></div>');if($("#ec-teaser-container").length>0){var h=$('div[id^="ec-teaser-box"]');var m="";if(h.length>0){m="<table id='sub_middle_2col' border='0' cellspacing='0' cellpadding='0' width='100%'>";var b="<td width='50%' valign='top'>";var c="<td width='50%' valign='top'>";var f="L";for(var e=0;e<h.length;e++){if(f=="L"){b=b+h[e].innerHTML;f="R"}else{c=c+h[e].innerHTML;f="L"}}b=b+"</td>";c=c+"</td>";m=m+"<tr valign='top'><td width='100%' colspan='2'><hr class='ruler1'/></td></tr><tr valign='top'>"+b+c;m=m+"</tr></table>"}$("#ec-teaser-container").html(m)}if($("#ec-multiarticle-container").length>0){var n=$('span[id^="ec-multiarticle-link"]');var l="<p>";for(var e=0;e<n.length;e++){if(e==0){l=n[e].innerHTML}else{l=l+n[e].innerHTML}}l=l+"</p>";var g=$('div[id^="ec-multiarticle-body"]');var a="";for(var d=0;d<g.length;d++){a=a+"<div class='multiArticleBody'>"+g[d].innerHTML+"</div>"}a=l+a;$("#ec-multiarticle-container").remove();$("#sub_middle_1col").html($("#sub_middle_1col").html()+a)}if($("td[class=contenthome_leftcolumns_box]").length>0){if($("#contenthome_leftcolumns").outerHeight()<338){$("td[class=contenthome_leftcolumns_box]").css("height","338px")}}}$(function(){$(".subNavLevel1").hover(function(){$(this).css({"background-image":"url(/ecimages/overlay-yellow-whole-bkg.gif)","background-position":"-2px 3px","background-repeat":"no-repeat"});$(".subNavLevel2, .subNavLevel2Last, .subNavLevel3, .subNavLevel3Last").css({"background-image":""})},function(){$(this).css({"background-image":""})});$(".subNavLevel1Last").hover(function(){$(this).css({"background-image":"url(/ecimages/overlay-yellow-whole-bkg.gif)","background-position":"-2px 3px","background-repeat":"no-repeat"});$(".subNavLevel2, .subNavLevel2Last, .subNavLevel3, .subNavLevel3Last").css({"background-image":""})},function(){$(this).css({"background-image":""})});$(".subNavLevel2").hover(function(){$(this).css({"background-image":"url(/ecimages/overlay-yellow-whole-bkg.gif)","background-position":"-3px 0px","background-repeat":"no-repeat"});$(".subNavLevel1, .subNavLevel1Last, .subNavLevel3, .subNavLevel3Last").css({"background-image":""})},function(){$(this).css({"background-image":""})});$(".subNavLevel2Last").hover(function(){$(this).css({"background-image":"url(/ecimages/overlay-yellow-whole-bkg.gif)","background-position":"-3px 0px","background-repeat":"no-repeat"});$(".subNavLevel1, .subNavLevel1Last, .subNavLevel3, .subNavLevel3Last").css({"background-image":""})},function(){$(this).css({"background-image":""})});$(".subNavLevel3").hover(function(){$(this).css({"background-image":"url(/ecimages/overlay-yellow-whole-bkg.gif)","background-position":"-3px 0px","background-repeat":"no-repeat"});$(".subNavLevel1, .subNavLevel1Last, .subNavLevel2, .subNavLevel2Last").css({"background-image":""})},function(){$(this).css({"background-image":""})});$(".subNavLevel3Last").hover(function(){$(this).css({"background-image":"url(/ecimages/overlay-yellow-whole-bkg.gif)","background-position":"-3px 0px","background-repeat":"no-repeat"});$(".subNavLevel1, .subNavLevel1Last, .subNavLevel2, .subNavLevel2Last").css({"background-image":""})},function(){$(this).css({"background-image":""})});if($(".subNavLevel3").hasClass("eySubNavCurrent")){console.log("level3");$(".eySubNavCurrent").parent().css("display","block");$(".eySubNavCurrent").addClass("subNavOnWhole");$(".eySubNavCurrent").parent().parent().children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent().parent().parent().parent().children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent().parent().parent().css("display","block")}else{if($(".subNavLevel3Last").hasClass("eySubNavCurrent")){console.log("level3");$(".eySubNavCurrent").parent().css("display","block");$(".eySubNavCurrent").addClass("subNavOnWhole");$(".eySubNavCurrent").parent().parent().children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent().parent().parent().parent().children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent().parent().parent().css("display","block")}else{if($(".subNavLevel2").hasClass("eySubNavCurrent")){console.log("level2");$(".eySubNavCurrent").addClass("subNavOnWhole");$(".eySubNavCurrent").children("ul").css("display","block");$(".eySubNavCurrent").children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent("ul").parent().children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent("ul").css("display","block");console.log("level2 end")}else{if($(".subNavLevel2Last").hasClass("eySubNavCurrent")){console.log("level2");$(".eySubNavCurrent").addClass("subNavOnWhole");$(".eySubNavCurrent").children("ul").css("display","block");$(".eySubNavCurrent").children("a").css("background","url(/ecimages/bullet-circle.gif) 2px 6px no-repeat");$(".eySubNavCurrent").parent("ul").parent().children("a").css("background","url(/ecimages/arrow-down-small.gif) 1px 2px no-repeat");$(".eySubNavCurrent").parent("ul").css("display","block");console.log("level2 end")}else{if($(".subNavLevel1").hasClass("eySubNavCurrent")){console.log("level1");$(".eySubNavCurrent").children("a").css("background","url(/ecimages/arrow-down-small.gif) 2px 2px no-repeat");$(".eySubNavCurrent").addClass("subNavOnWhole1");$(".eySubNavCurrent").children("ul").css("display","block");console.log("level1 end")}else{if($(".subNavLevel1Last").hasClass("eySubNavCurrent")){console.log("level1");$(".eySubNavCurrent").children("a").css("background","url(/ecimages/bullet-circle.gif) 2px 5px no-repeat");$(".eySubNavCurrent").addClass("subNavOnWhole1");$(".eySubNavCurrent").children("ul").css("display","block");console.log("level1 end")}}}}}}});function openMailTo(b,c,d){var a=(d=="")?"\n\n"+window.location.href:d;var e=(c=="")?decodeURIComponent(mailTosubject):c;location.href="mailto:"+b+"?subject="+e+"&body="+a}function Set_Cookie(c,e,a,h,d,g){var b=new Date();b.setTime(b.getTime());if(a){a=a*1000*60*60*24}var f=new Date(b.getTime()+(a));document.cookie=c+"="+escape(e)+((a)?";expires="+f.toGMTString():"")+((h)?";path="+h:"")+((d)?";domain="+d:"")+((g)?";secure":"")}function getCookie(a){var f=document.cookie.split(";");var b="";var d="";var e="";var c=false;for(i=0;i<f.length;i++){b=f[i].split("=");d=b[0].replace(/^\s+|\s+$/g,"");if(d==a){c=true;if(b.length>1){e=decodeURIComponent(b[1].replace(/^\s+|\s+$/g,""))}return e;break}b=null;d=""}if(!c){return null}}function setCookie(c,e,a,h,d,g){var b=new Date();b.setTime(b.getTime());if(a){a=a*1000*60*60*24}var f=new Date(b.getTime()+(a));document.cookie=c+"="+escape(e)+((a)?";expires="+f.toGMTString():"")+((h)?";path="+h:"")+((d)?";domain="+d:"")+((g)?";secure":"")}function deleteCookie(a,c,b){if(getCookie(a)){document.cookie=a+"="+((c)?";path="+c:"")+((b)?";domain="+b:"")+";expires=Thu, 01-Jan-1970 00:00:01 GMT"}}function getCookieDomain(b){if(b.indexOf(".")>-1){var a=b.substr(b.indexOf("."),b.length);return a}return b}function forEnter(b,c,a){if(event.keyCode==13){event.cancelBubble=true;event.returnValue=false;loginUser(b,c,a)}}function forEnteremail(b,c,a){if(event.keyCode==13){event.cancelBubble=true;event.returnValue=false;loginUser(b,c,a)}}isIE=document.all;isNN=!document.all&&document.getElementById;isN4=document.layers;isHot=false;var dcountry=getCookie("Country");var dorg=getCookie("Org");var darea="";function ddInit(a){topDog=isIE?"BODY":"HTML";browserT=isIE?document.all.theLayer:document.getElementById("theLayer");hotDog=isIE?event.srcElement:a.target;while(hotDog.id!="titleBar"&&hotDog.tagName!=topDog){hotDog=isIE?hotDog.parentElement:hotDog.parentNode}if(hotDog.id=="titleBar"){offsetx=isIE?event.clientX:a.clientX;offsety=isIE?event.clientY:a.clientY;nowX=parseInt(browserT.style.left);nowY=parseInt(browserT.style.top);ddEnabled=true}}function dd(a){if(!ddEnabled){return}browserT.style.left=isIE?nowX+event.clientX-offsetx:nowX+a.clientX-offsetx;browserT.style.top=isIE?nowY+event.clientY-offsety:nowY+a.clientY-offsety;return false}function ddN4(whatDog){if(!isN4){return}N4=eval(whatDog);N4.captureEvents(Event.MOUSEDOWN|Event.MOUSEUP);N4.onmousedown=function(e){N4.captureEvents(Event.MOUSEMOVE);N4x=e.x;N4y=e.y};N4.onmousemove=function(e){if(isHot){N4.moveBy(e.x-N4x,e.y-N4y);return false}};N4.onmouseup=function(){N4.releaseEvents(Event.MOUSEMOVE)}}function hideMe(){isIE=document.all;isNN=!document.all&&document.getElementById;isN4=document.layers;browserT=isIE?document.all.theLayer:document.getElementById("theLayer");if(browserT){if(browserT.style==null){browserT.style="document.all.theLayer.style";browserT.style.visibility="hidden";location.reload()}if(isIE||isNN){browserT.style.visibility="hidden"}else{if(isN4){document.theLayer.visibility="hide"}}}}function showMe(){isIE=document.all;isNN=!document.all&&document.getElementById;isN4=document.layers;browserT=isIE?document.all.theLayer:document.getElementById("theLayer");if(isIE||isNN){browserT.style.visibility="hidden"}else{if(isN4){document.theLayer.visibility="hide"}}if(isIE||isNN){browserT.style.visibility="visible"}else{if(isN4){document.theLayer.visibility="show"}}}function getCookieSM(a){if(document.cookie.length>0){c_start=document.cookie.indexOf(a+"=");if(c_start!=-1){c_start=c_start+a.length+1;c_end=document.cookie.indexOf(";",c_start);if(c_end==-1){c_end=document.cookie.length}return decodeURIComponent(document.cookie.substring(c_start,c_end))}}return""}function setCookieSM(c,e,a,g,d){var f=new Date();f.setDate(f.getDate()+a);var b=c+"="+(e)+((a)?"; expires="+f.toGMTString():"")+((g)?"; path="+g:"")+((d)?"; domain="+d:"");document.cookie=b}function Delete_Cookie(a,c,b){if(getCookieSM(a)){document.cookie=a+"="+((c)?";path="+c:"")+((b)?";domain="+b:"")+";expires=Thu, 01-Jan-1970 00:00:01 GMT"}}var dcountry=getCookieSM("Country=");var dorg=getCookieSM("Org=");var dopt=getCookieSM("d1=");var darea="";var dm=location.hostname;function Yes(d,b,e,k,c,n,l,m,f,h,a,g){setCookieSM("a1",dcountry,365,"/",dm);setCookieSM("b1",dorg,365,"/",dm);setCookieSM("c1",darea,365,"/",dm);setCookieSM("d1",d,365,"/",dm);window_name="mywin";window_options="left="+e+",top="+k+",width="+c+",height="+n+",toolbar="+l+",location="+m+",status="+f+",menubar="+h+",resizable="+a+",scrollbars="+g;window.open(b,window_name,window_options);hideMe()}function No(a){setCookie("d1",a,1);setCookieSM("a1",dcountry,1,"/",dm);setCookieSM("b1",dorg,1,"/",dm);setCookieSM("c1",darea,1,"/",dm);hideMe()}function Never(a){setCookieSM("a1",dcountry,365,"/",dm);setCookieSM("b1",dorg,365,"/",dm);setCookieSM("c1",darea,365,"/",dm);setCookieSM("d1",a,365,"/",dm);hideMe()}function setNLCookie(){var a=location.hostname;setCookieSM("nl","1",365,"/",a)}function setOCAWebformOnLoadCookie(){var a=location.hostname;setCookieSM("e1","0",1,"/",a)}function setOCAWebformOnSubmitCookie(){var a=location.hostname;setCookieSM("e1","1",365,"/",a)}function OpenOCALink(e,c,q,f,m,d,p,n,o,g,l,a,k){var b=getCookieSM("d1");var e=6;if(b==0||b==6){var h=o.hostname;setCookieSM("a1",dcountry,365,"/",h);setCookieSM("b1",dorg,365,"/",h);setCookieSM("c1",darea,365,"/",h);setCookieSM("d1",e,365,"/",h);window_name="mywin";window_options="left="+f+",top="+m+",width="+d+",height="+p+",toolbar="+n+",location="+o+",status="+g+",menubar="+l+",resizable="+a+",scrollbars="+k;window.open(c,window_name,window_options)}if(b==9){window.location=q}}function initsite(){return false}function Initial_Cookie(){var a=getCookie("d1");if(a!=null){if(a=="7"){hideMe()}else{if(a=="8"){hideMe()}}}}function addOptions(c,k,a,b,f){if(c&&(c.type=="select-one"||c.type=="select-multiple")){if(a!=""&&k.indexOf(a)){var h=k.split(a)}else{var h=k}for(var d=0;d<h.length;d++){var g="";var e="";if(b!=""&&h[d].indexOf(b)){g=h[d].split(b)[0];e=h[d].split(b)[1]}else{g=h[d];e=h[d]}if(!f){e=g}if(c.options==null){c.options[1]=new Option(g,e)}else{c.options[c.options.length]=new Option(g,e)}}}}function openSecureURL(f,c,e,b){var a="https://"+secureHostName+f;if(f=="/Email_Alerts"){a="https://"+secureHostName+"/"+contentCountry+"/"+contentLang+f}if(a!=null&&a!=""){var d=window.open(a);d.focus()}}function openContentURL(g,b,d,a,c,f){if(g.indexOf("http://")<0&&b){g="/"+contentCountry+"/"+contentLang+g}if(g!=null&&g!=""){if(d){generic_link_WT(g,a,c,f)}else{if(f=="_blank"){var e=window.open(g);e.focus()}else{location.href=g}}}}function EYPostLoad(b,d){contentLoaded();var a=document.getElementById(b);if(a){a.className=a.className+" eySubNavCurrent"}getRelatedContentHeader();Initial_Cookie();addCareersCountryData();if(DCSext.entrytype!="searchresult"){setSitePath();dcsVar();dcsMeta();dcsTag()}}function getCountryName(b,d){var c="";for(i=0;i<b.length;i++){for(j=0;j<b[i].a.length;j++){cd=b[i].a[j].split("|");if(d==cd[1]){c=cd[0];return c+" - "+countrySelectorChange}}}return c}function getRelatedContentHeader(){var b=document.getElementById("sub_rightcolumn");if(b!=null){var a="<div class='yellowbox'><h3><span>"+decodeURIComponent(relatedContentTitle)+"</span></h3></div>";var c=b.innerHTML;if(c!=""&&c.length>5){c=a+c;b.innerHTML=c}}}function validateLoginForm(a,b){if(b=="LOGIN"){if(a.username.value==""){alert(decodeURIComponent(login_usernameplease));return false}if(a.password.value==""){alert(decodeURIComponent(login_passwordplease));return false}setCookie("echannelLoginUser",a.username.value,365,"/",cookieDomainName)}else{if(a.useremail.value==""){alert(decodeURIComponent(login_forgetemail));return false}setCookie("echannelLoginUser",a.useremail.value,365,"/",cookieDomainName)}return true}function loginUser(b,c,a){b.loginType.value=c;if(!validateLoginForm(b,c)){return false}setCookie("echannelLoginAccessType",a,1,"/",cookieDomainName);if(c=="LOGIN"){setCookie("echannelLoginUser",b.username.value,365,"/",cookieDomainName);b.method="post";b.submit()}else{setCookie("echannelLoginUser",b.useremail.value,365,"/",cookieDomainName);b.method="post";b.submit()}}function showAccountRecollectForm(){deleteCookie("ErrorCode","/",cookieDomainName);document.getElementById("idRecollect").style.display="block";document.getElementById("idLoginReturnToLogin").style.display="block";document.getElementById("idEchannelLogin").style.display="none";document.getElementById("idLoginForgotLink").style.display="none"}function showLoginForm(){document.getElementById("idRecollect").style.display="none";document.getElementById("idLoginReturnToLogin").style.display="none";document.getElementById("idEchannelLogin").style.display="block";document.getElementById("idLoginForgotLink").style.display="block"}function returnToLoginForm(){deleteCookie("ErrorCode","/",cookieDomainName);if(document.getElementById("onlyErrorMsg")){document.getElementById("onlyErrorMsg").style.display="none"}showLoginForm()}function showOverlayRecollect(){deleteCookie("ErrorCode","/",cookieDomainName);document.getElementById("divRecollectOverlay").style.display="block";document.getElementById("idLoginOverlayReturn").style.display="block";document.getElementById("divLoginOverlay").style.display="none";document.getElementById("idLoginOverlayForgotLink").style.display="none"}function showOverlayLogin(){document.getElementById("divRecollectOverlay").style.display="none";document.getElementById("idLoginOverlayReturn").style.display="none";document.getElementById("divLoginOverlay").style.display="block";document.getElementById("idLoginOverlayForgotLink").style.display="block"}function returnTooverlayLogin(){deleteCookie("ErrorCode","/",cookieDomainName);showOverlayLogin()}function loginOnload(){if(document.getElementById("li_utilityOnlineSignIn")){if(document.getElementById("echannel_overlay_login_form")){var b=document.getElementById("echannel_overlay_login_form").innerHTML;document.getElementById("li_utilityOnlineSignIn").innerHTML=b;document.getElementById("echannel_overlay_login_form").innerHTML=""}}showLoginForm();var a=getCookie("echannelLoginAccessType");if(a=="overlay"){showLogin();loginShowHide("divLoginOverlay","divRecollectOverlay","overlayOnlyErroMsg","frmLoginOverlay","frmLoginOverlay","overlayError","overlayEmailErrorMsg","overlayOnlyErroMsg","idLoginOverlayForgotLink","idLoginOverlayReturn")}else{if(a=="page"){loginShowHide("idEchannelLogin","idRecollect","eyoLoginMsgiv","frmEchannelLogin","frmEchannelLogin","Error","EmailErrorMsg","onlyErrorMsg","idLoginForgotLink","idLoginReturnToLogin")}}deleteCookie("echannelLoginAccessType","/",cookieDomainName);deleteCookie("ErrorCode","/",cookieDomainName)}function loginShowHide(g,b,a,k,d,h,l,e,f,c){var m=getCookie("ErrorCode");switch(m){case"":document.getElementById(b).style.display="none";document.getElementById(c).style.display="none";document.getElementById(g).style.display="block";document.getElementById(f).style.display="block";document.getElementById(a).style.display="none";document.forms[k].username.value=getCookie("echannelLoginUser");break;case"0":document.getElementById(b).style.display="block";document.getElementById(c).style.display="block";document.getElementById(g).style.display="block";document.getElementById(f).style.display="block";document.getElementById(a).style.display="none";document.forms[k].username.value=getCookie("echannelLoginUser");break;case"1":document.getElementById(b).style.display="none";document.getElementById(c).style.display="none";document.getElementById(g).style.display="block";document.getElementById(f).style.display="block";document.getElementById(a).style.display="none";document.forms[k].username.value=getCookie("echannelLoginUser");document.getElementById(h).innerHTML=decodeURIComponent(login_ErrorCode1);break;case"2":document.getElementById(b).style.display="none";document.getElementById(c).style.display="none";document.getElementById(g).style.display="block";document.getElementById(f).style.display="block";document.getElementById(h).innerHTML=decodeURIComponent(login_ErrorCode2);document.forms[k].username.value=getCookie("echannelLoginUser");document.getElementById(a).style.display="none";break;case"4":document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="none";document.getElementById(b).style.display="block";document.getElementById(c).style.display="block";document.forms[k].useremail.value=getCookie("echannelLoginUser");break;case"90":document.getElementById(b).style.display="none";document.getElementById(c).style.display="none";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="block";document.getElementById(c).style.display="block";document.getElementById(e).innerHTML=decodeURIComponent(login_ErrorCode90);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;case"91":document.getElementById(b).style.display="block";document.getElementById(c).style.display="block";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="none";document.forms[k].useremail.value=getCookie("echannelLoginUser");document.getElementById(l).innerHTML=decodeURIComponent(login_ErrorCode91);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;case"92":document.getElementById(b).style.display="none";document.getElementById(c).style.display="block";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="block";document.getElementById(e).innerHTML=decodeURIComponent(login_ErrorCode92);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;case"95":document.getElementById(b).style.display="none";document.getElementById(c).style.display="block";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="block";document.getElementById(e).innerHTML=decodeURIComponent(login_ErrorCode95);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;case"97":document.getElementById(b).style.display="none";document.getElementById(c).style.display="block";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="block";document.getElementById(e).innerHTML=decodeURIComponent(login_ErrorCode97);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;case"50":document.getElementById(b).style.display="none";document.getElementById(c).style.display="block";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="block";document.getElementById(e).innerHTML=decodeURIComponent(login_ErrorCode50);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;case"10":document.getElementById(b).style.display="none";document.getElementById(c).style.display="block";document.getElementById(g).style.display="none";document.getElementById(f).style.display="none";document.getElementById(a).style.display="block";document.getElementById(e).innerHTML=decodeURIComponent(login_ErrorCode10);setCookie("ErrorCode","",-1,"/",cookieDomainName);break;default:document.getElementById(b).style.display="none";document.getElementById(c).style.display="none";document.getElementById(g).style.display="block";document.getElementById(f).style.display="block"}if(getCookie("ASP.NET_SessionId")!=null){document.forms[k].logscheck.value=getCookie("ASP.NET_SessionId")}else{document.forms[k].logscheck.value="1234"}}function trim(a){return a.replace(/^\s*|\s(?=\s)|\s*$/g,"")}function getCheckedValue(b){var a;for(i=0;i<b.search_options.length;i++){if(b.search_options[i].checked){a=b.search_options[i].value}}return a}function dcsVar(){var a=new Date();WT.tz=a.getTimezoneOffset()/60*-1;if(WT.tz==0){WT.tz="0"}WT.bh=a.getHours();WT.ul=navigator.appName=="Netscape"?navigator.language:navigator.userLanguage;if(typeof(screen)=="object"){WT.cd=screen.colorDepth;WT.sr=screen.width+"x"+screen.height}if(typeof(navigator.javaEnabled())=="boolean"){WT.jo=navigator.javaEnabled()?"Yes":"No"}if(document.title){WT.ti=document.title}WT.js="Yes";if(typeof(gVersion)!="undefined"){WT.jv=gVersion}WT.sp="@@SPLITVALUE@@";DCS.dcsdat=a.getTime();DCS.dcssip=window.location.hostname;DCS.dcsuri=window.location.pathname;if(window.location.search){DCS.dcsqry=window.location.search}if((window.document.referrer!="")&&(window.document.referrer!="-")){if(!(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)<4)){DCS.dcsref=window.document.referrer}}DCS.dcsaut="-";WT.dcs_id=gDcsId}function A(b,a){return"&"+b+"="+dcsEscape(a)}function dcsEscape(a){if(typeof(RE)!="undefined"){var b=new String(a);for(R in RE){b=b.replace(RE[R],R)}return b}else{return escape(a)}}function dcsCreateImage(a){if(document.images){gImages[gIndex]=new Image;gImages[gIndex].src=a;gIndex++}else{document.write('<IMG BORDER="0" NAME="DCSIMG" WIDTH="1" HEIGHT="1" SRC="'+a+'">')}}function dcsMeta(){var b;if(document.all){b=document.all.tags("meta")}else{if(document.documentElement){b=document.getElementsByTagName("meta")}}if(typeof(b)!="undefined"){for(var a=1;a<=b.length;a++){myMeta=b.item(a-1);if(myMeta.name){if(myMeta.name.indexOf("WT.")==0){WT[myMeta.name.substring(3)]=myMeta.content}else{if(myMeta.name.indexOf("DCSext.")==0){DCSext[myMeta.name.substring(7)]=myMeta.content}else{if(myMeta.name.indexOf("DCS.")==0){DCS[myMeta.name.substring(4)]=myMeta.content}}}}}}}function dcsTag(){var a="http"+(window.location.protocol.indexOf("https:")==0?"s":"")+"://"+gDomain+(gDcsId==""?"":"/"+gDcsId)+"/dcs.gif?";for(N in DCS){if(DCS[N]){a+=A(N,DCS[N])}}for(N in WT){if(WT[N]){a+=A("WT."+N,WT[N])}}for(N in DCSext){if(DCSext[N]){a+=A(N,DCSext[N])}}if(a.length>2048&&navigator.userAgent.indexOf("MSIE")>=0){a=a.substring(0,2040)+"&WT.tu=1"}dcsCreateImage(a)}function clearWTVars(){DCS.dcsuri="";WT.oss_r="";WT.oss="";if(DCSext){DCSext.entrytype="";DCSext.linktitle="";DCSext.country="";DCSext.language="";DCSext.organization="";DCSext.taxonomy="";DCSext.sitepath="";DCSext.searchdomain=""}}function WebTrends(a){clearWTVars();dcsVar();dcsMeta();WT.ti=document.title;DCSext.linktitle="";DCSext.country="";DCSext.language="";DCSext.organization="";DCSext.taxonomy="";DCSext.sitepath="";DCS.dcsuri=a;dcsTag()}function WebTrends_5(c,a,b){clearWTVars();dcsVar();dcsMeta();DCSext.entrytype="link";DCSext.linktitle=decodeURIComponent(b);DCSext.country=themeCountry;DCSext.language=themeLang;DCSext.organization=organization;DCS.dcsuri=c;dcsTag();WT.ti=document.title}function WebTrends_Search_5(a,b){clearWTVars();dcsVar();dcsMeta();WT.oss=a;WT.ti=document.title;DCS.dcsuri=location.href;DCSext.entrytype="search";DCSext.searchdomain=b;DCSext.country=themeCountry;DCSext.language=themeLang;DCSext.organization=organization;dcsTag()}function WebTrends_SearchResult_5(a,b){clearWTVars();dcsVar();dcsMeta();WT.oss=a;WT.ti=document.title;WT.oss_r=b;DCS.dcsuri=location.href;DCSext.entrytype="searchresult";DCSext.country=themeCountry;DCSext.language=themeLang;DCSext.organization=organization;dcsTag()}function generic_link_WT_direct(b,a){if(b.indexOf("alert://")!=-1){displayAlert(b);return false}WebTrends_5(b,"",a);location.href=b;return false}function generic_link_WT(c,a,b){if(c.indexOf("alert://")!=-1){displayAlert(c);return false}WebTrends_5(c,a,b);if(c!=null&&c!=""){if(c.toLowerCase().indexOf("/publication/vwluassets/")>-1){return open_doc_iqlinks(c)}else{if(c.substr(0,1)=="/"){location.href=c;return false}else{return open_doc_iqlinks(c)}}}}function generic_link_WT(c,a,b,d){if(c.indexOf("alert://")!=-1){displayAlert(c);return false}WebTrends_5(c,a,b);if(c!=null&&c!=""){if(c.toLowerCase().indexOf("/publication/vwluassets/")>-1){if(d=="_self"||d=="_top"){location.href=c;return false}else{return open_doc_iqlinks(c)}}else{if(d=="_blank"){return open_doc_iqlinks(c)}else{location.href=c;return false}}}}function generic_search_WT(a,b,c,d){WebTrends_Search_5(a,b);d.submit()}function generic_searchresult_WT(a,b){WebTrends_SearchResult_5(a,b)}function copyToClipBoard(b){var a=false;try{a=window.clipboardData.setData("Text",b)}catch(c){}finally{return a}}function generic_link_ctrl_image(a){try{if(event&&(event.ctrlKey)){if(a&&a!=""){if(copyToClipBoard(decodeURIComponent(a))){event.cancelBubble=true;event.returnValue=false;return false}}}}catch(b){}WebTrends(a);if(a!=null&&a!=""){if(a.substr(0,1)=="/"){location.href=a;return false}else{return open_doc_iqlinks(a)}}}function generic_link(a){if(a.indexOf("alert://")!=-1){displayAlert(a);return false}WebTrends(a);if(a!=null&&a!=""){if(a.substr(0,1)=="/"){location.href=a;return false}else{return open_doc_iqlinks(a)}}}function generic_link_options(d,a,c,b,e){if(d.indexOf("alert://")!=-1){displayAlert(d);return false}WebTrends_5(d,a,c);if(d!=null&&d!=""){return open_doc_iqlinks_options(d,b,e)}}function open_doc_iqlinks_options(d,a,b){if(d.indexOf("alert://")!=-1){displayAlert(url);return false}var c=window.open(d,a,b);c.focus();return false}function open_doc_iqlinks(b){if(b.indexOf("alert://")!=-1){displayAlert(url);return false}if(b.toLowerCase().indexOf(".exe")>1){args=(decodeURIComponent(b));arrArgs=args.split(",");if(arrArgs.length==3){LaunchIt(arrArgs[0],arrArgs[1],arrArgs[2])}else{(alert(msg0))}}else{if((b.toLowerCase().indexOf("mailto")>=0)||(b.toLowerCase().indexOf("notes:"))>=0){location.href=b}else{var a=window.open(b,"","");a.focus()}}}function LaunchIt(b,f,c){var a;try{a=new ActiveXObject("WScript.Shell")}catch(d){alert(msg1);return}try{a.run(b)}catch(d){try{regKey=a.RegRead(decodeURIComponent(f))}catch(d){alert(c+msg2);return}alert(c+msg3)}}function Launchnotes(b){var a;try{a=new ActiveXObject("WScript.Shell")}catch(d){alert(msg1);return}try{a.run("notes.exe "+b,1,true);a.AppActivate("Lotus Notes")}catch(d){var c;try{c=a.RegRead("HKEY_LOCAL_MACHINE\\Software\\Ernst & Young LLP\\EY/Knowledge Web\\Installation\\NotesDll")}catch(d){alert(msg4);return}try{c=c.toLowerCase();var f=c.indexOf("nnotes.dll");c=c.substring(0,f);a.run(c+"notes.exe "+b,1,true);a.AppActivate("Lotus Notes")}catch(d){alert(msg4)}}}function addPrinter(f){var b=f;try{var a=new Kweb_Profile("heavy");var h=a.get("homecountry");var d=a.get("mail");b+="?c="+(h==null?"":h);b+="&mail="+(d==null?"":d);window.open(b,"Printer")}catch(g){window.open(f,"Printer")}}function displayAlert(a){var c=a.indexOf("alert://");if(c==-1){return false}var b=a.substring(c+"alert://".length,a.length);alert(b)}function getTaxonomyTermByLevel(a,c){if(a==""){return""}a=a.substring(6);if(a!=""&&a.indexOf("/")<0){if(parseInt(c)==1){return a}}if(a!=""&&a.indexOf("/")>-1){var d=parseInt(c)-1;if(a.charAt(0)=="/"){d=parseInt(c)}var b=a.split("/");if(b.length>d){return b[d]}}return""}function getCountry(b){var a=getCookie("Country_Temp");if(a==null||a==""){a=getCookie("Country")}if(a==null||a==""){if(b!=""&&b.indexOf("_")>-1){a=b.substring(b.lastIndexOf("_")+1,b.length)}}return a.toUpperCase()}function getLanguage(b){var a=getCookie("Locale_Temp");if(a==null||a==""){a=getCookie("Locale")}if(a==null||a==""){if(b!=""&&b.indexOf("_")>-1){a=b.substring(0,b.lastIndexOf("_"))}}return a.toLowerCase()}function getOrganization(a){if(a!=""){return a.replace("&amp;","&")}return""}function getCountryLangFromLocale(a){if(a!=""&&a.indexOf("_")>-1){var b=new Array(2);b[0]=a.substring(0,a.lastIndexOf("_"));b[1]=a.substring(a.lastIndexOf("_")+1,a.length);return b}}function setSitePath(){var a=DCSext.taxonomy;if(DCSext.entrytype=="taxonomy"){if(a!=null&&a!=""){if(a.substr(0,1)=="/"){a=a.substring(7,a.length)}else{a=a.substring(6,a.length)}DCSext.sitepath=a}}}function contactUs(e){var g=decodeURIComponent(e);var b=g.split("_");var h="";var d=contentCountry+"_"+contentLang+"_ContactUs";if(b[2]){if(b[1].length==1&&b[2].length==3){g=b[0];h="_"+b[1]+"_"+b[2]}}var f="https://"+secureHostName+"/Content/DContactus_New?Openform&EmailId="+g+"&Indx="+h+"&site="+d+"&URL="+location.href;var a="sWin";var c="width=770,height=700,screenX=0,screenY=0,alwaysRaised=yes,toolbar=no,scrollbars=yes,status=no";window.open(f,a,c)}function openPoll(c){var a="pollWin";var b="width=500,height=500,screenX=0,screenY=0,alwaysRaised=yes,toolbar=no,scrollbars=yes,status=no";window.open(c,a,b)}function openWebform(f,b,e){var a="yes";var c="https://"+secureHostName+"/Content/vwWFPreview"+f+"?OpenDocument";var d=(screen.width-b)/2;var g=(screen.height-e)/2;winprops="height="+e+",width="+b+",top="+g+",left="+d+",scrollbars="+a+",resizable,status=yes,location=no,menubar=yes,toolbar=yes";window.open(c,"wf",winprops)}function checkForEnter(c,d,b){var a=(window.event)?event.keyCode:c.keyCode;if(a==13){try{doAutonomySearch(d,b)}catch(c){}return false}}function doAutonomySearch(e,c){var b=document.getElementById("query");sQuery=b.value;sQuery=trim(sQuery);if(document.getElementById("query").value.length>400){sQuery=sQuery.substring(0,400);document.getElementById("query").value=sQuery}if(sQuery==""||sQuery=="Enter Keywords"){alert(c);return false}var a=document.getElementById(e);var d=document.getElementById(e).action;generic_search_WT(sQuery,"eChannels",d,a)}function wrapResultTitle(){var a=document.getElementsByTagName("span");for(var b=0;b<a.length;b++){if(a.item(b).className=="resulttitle"){var c=a.item(b).innerHTML;a.item(b).innerHTML=c.replace(/(.{50})/g,"$1<wbr/>")}}}jQuery.fn._height=jQuery.fn.height;jQuery.fn._width=jQuery.fn.width;jQuery.fn.height=function(){if(this[0]==window){return self.innerHeight||jQuery.boxModel&&document.documentElement.clientHeight||document.body.clientHeight}if(this[0]==document){return Math.max(document.body.scrollHeight,document.body.offsetHeight)}return this._height(arguments[0])};jQuery.fn.width=function(){if(this[0]==window){return self.innerWidth||jQuery.boxModel&&document.documentElement.clientWidth||document.body.clientWidth}if(this[0]==document){return Math.max(document.body.scrollWidth,document.body.offsetWidth)}return this._width(arguments[0])};jQuery.fn.innerHeight=function(){return this[0]==window||this[0]==document?this.height():this.css("display")!="none"?this[0].offsetHeight-(parseInt(this.css("borderTopWidth"))||0)-(parseInt(this.css("borderBottomWidth"))||0):this.height()+(parseInt(this.css("paddingTop"))||0)+(parseInt(this.css("paddingBottom"))||0)};jQuery.fn.innerWidth=function(){return this[0]==window||this[0]==document?this.width():this.css("display")!="none"?this[0].offsetWidth-(parseInt(this.css("borderLeftWidth"))||0)-(parseInt(this.css("borderRightWidth"))||0):this.height()+(parseInt(this.css("paddingLeft"))||0)+(parseInt(this.css("paddingRight"))||0)};jQuery.fn.outerHeight=function(){return this[0]==window||this[0]==document?this.height():this.css("display")!="none"?this[0].offsetHeight:this.height()+(parseInt(this.css("borderTopWidth"))||0)+(parseInt(this.css("borderBottomWidth"))||0)+(parseInt(this.css("paddingTop"))||0)+(parseInt(this.css("paddingBottom"))||0)};jQuery.fn.outerWidth=function(){return this[0]==window||this[0]==document?this.width():this.css("display")!="none"?this[0].offsetWidth:this.height()+(parseInt(this.css("borderLeftWidth"))||0)+(parseInt(this.css("borderRightWidth"))||0)+(parseInt(this.css("paddingLeft"))||0)+(parseInt(this.css("paddingRight"))||0)};jQuery.fn.equalizeCols=function(){var c,a=0,b;this.each(function(){c=jQuery(this).css("height","auto");b=c.outerHeight();a=(b>a)?b:a});return this.each(function(){jQuery(this).css("height",a)})};function NewWindow(g,e,b,d,a){var c=(screen.width-b)/2;var f=(screen.height-d)/2;winprops="height="+d+",width="+b+",top="+f+",left="+c+",scrollbars="+a+",resizable,location=yes,toolbar=yes";win=window.open(g,e,winprops);if(parseInt(navigator.appVersion)>=4){win.window.focus()}};