function debug(){var B="";for(var A=0;A<arguments.length;A++){B+=debug.debugString(arguments[A])+"\n"}alert(B)}debug.MAX_DEPTH=3;debug.debugString=function(I,D){var C;switch(I){case null:return"[null]";case"":return"[empty string]";case true:return"[true]";case false:return"[false]";case C:return"[undefined]";default:var B="";var G=typeof(I);if(G=="function"){B+=I.toString().split(/\n/)[0].replace(/\{/,"");break}else{if(G=="string"){B+="[string:"+I.length+"] "+I}else{if(G=="object"&&typeof I.length==="number"&&!I.propertyIsEnumerable("length")){B+="[array:"+I.length+"]\n";D=D||0;if(D<debug.MAX_DEPTH){var H="\t";for(var E=0;E<D;E++){H+="\t"}for(var E=0;E<I.length;E++){B+=H+"["+E+"]="+debug.debugString(I[E],D+1)+"\n"}}}else{if(I.nodeType&&I.nodeType==9){B+="[DOMDocument] "+I.URL}else{if(G=="object"){switch(I.nodeType){case 9:return"[HTMLDocument] "+I.URL;case 1:B="[HTMLElement] "+I.nodeName;B+=I.id?(" #"+I.id):"";B+=I.className?(" ."+I.className):"";B+=I.href?(" href="+I.href):"";return B}B+="[object]\n";D=D||0;if(D<debug.MAX_DEPTH){var H="\t";for(var E=0;E<D;E++){H+="\t"}for(var A in I){try{B+=H+A+"="+debug.debugString(I[A],D+1)+"\n"}catch(F){B+=H+A+"=?\n"}}}}else{try{B+=I+" ["+G+"]"}catch(F){B+="? ["+G+"]"}}}}}}}return B};debug.test=function(){debug({"int":0,string:"a long string","function":function(){},"null":null,"true":true,"false":false,error:Error("just an error"),array:[1,2,3],object:{x:123,y:456},"more stuff":"cheddar","how deep":{"level 1":{"level 2":{"level 3":{}}}},"empty string":""})};function Profiler(A){this.title=A||"";this.timestamp=function(){return new Date().getTime()/1000};this.startTime=this.timestamp();this.log=[];this.mark=function(B){this.log.push({title:B,time:this.timestamp()})};this.stop=function(G){this.mark(G);var F=this.title+"\n";var E=this.startTime;for(var C=0;C<this.log.length;C++){var D=this.log[C];var B=D.time-E;E=D.time;F+=this.fix(B,3,true)+": "+D.title+"\n";if(C==this.log.length-1){F+="total time "+this.fix(D.time-this.startTime,3,true)+" seconds"}}return F};this.fix=function(B,H,D){H=H||0;var G=Math.pow(10,H);B=(Math.round(B*G)/G);if(D){var F=""+B;var E=F.split(/\./,2);E[1]=E[1]||"";for(var C=E[1].length;C<H;C++){E[1]+="0"}return E.join(".")}else{return B}}}(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context)};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this}if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){selector=jQuery.clean([match[1]],context)}else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3]){return jQuery().find(selector)}return jQuery(elem)}selector=[]}}else{return jQuery(context).find(selector)}}else{if(jQuery.isFunction(selector)){return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector)}}return this.setArray(jQuery.makeArray(selector))},jquery:"1.2.6",size:function(){return this.length},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num]},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this},each:function(callback,args){return jQuery.each(this,callback,args)},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this)},attr:function(name,value,type){var options=name;if(name.constructor==String){if(value===undefined){return this[0]&&jQuery[type||"attr"](this[0],name)}else{options={};options[name]=value}}return this.each(function(i){for(name in options){jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name))}})},css:function(key,value){if((key=="width"||key=="height")&&parseFloat(value)<0){value=undefined}return this.attr(key,value,"curCSS")},text:function(text){if(typeof text!="object"&&text!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text))}var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8){ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this])}})});return ret},wrapAll:function(html){if(this[0]){jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild){elem=elem.firstChild}return elem}).append(this)}return this},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html)})},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html)})},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1){this.appendChild(elem)}})},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1){this.insertBefore(elem,this.firstChild)}})},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this)})},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)})},end:function(){return this.prevObject||jQuery([])},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem)});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems)},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0]}else{return this.cloneNode(true)}});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined){this[expando]=null}});if(events===true){this.find("*").andSelf().each(function(i){if(this.nodeType==3){return}var events=jQuery.data(this,"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data)}}})}return ret},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i)})||jQuery.multiFilter(selector,this))},not:function(selector){if(selector.constructor==String){if(isSimple.test(selector)){return this.pushStack(jQuery.multiFilter(selector,this,true))}else{selector=jQuery.multiFilter(selector,this)}}var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector})},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=="string"?jQuery(selector):jQuery.makeArray(selector))))},is:function(selector){return !!selector&&jQuery.multiFilter(selector,this).length>0},hasClass:function(selector){return this.is("."+selector)},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0){return null}for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one){return value}values.push(value)}}return values}else{return(this[0].value||"").replace(/\r/g,"")}}return undefined}if(value.constructor==Number){value+=""}return this.each(function(){if(this.nodeType!=1){return}if(value.constructor==Array&&/radio|checkbox/.test(this.type)){this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0)}else{if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0)});if(!values.length){this.selectedIndex=-1}}else{this.value=value}}})},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value)},replaceWith:function(value){return this.after(value).remove()},eq:function(i){return this.slice(i,i+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments))},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)}))},andSelf:function(){return this.add(this.prevObject)},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key)}return data===undefined&&parts[1]?this.data(parts[0]):data}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value)})}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key)})},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse){elems.reverse()}}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr")){obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"))}var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem)}else{if(elem.nodeType==1){scripts=scripts.add(jQuery("script",elem).remove())}callback.call(obj,elem)}});scripts.each(evalScript)})}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"})}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"")}if(elem.parentNode){elem.parentNode.removeChild(elem)}}function now(){return +new Date}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2}if(typeof target!="object"&&typeof target!="function"){target={}}if(length==i){target=this;--i}for(;i<length;i++){if((options=arguments[i])!=null){for(var name in options){var src=target[name],copy=options[name];if(target===copy){continue}if(deep&&copy&&typeof copy=="object"&&!copy.nodeType){target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy)}else{if(copy!==undefined){target[name]=copy}}}}}return target};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery}return jQuery},isFunction:function(fn){return !!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"")},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie){script.text=data}else{script.appendChild(document.createTextNode(data))}head.insertBefore(script,head.firstChild);head.removeChild(script)}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase()},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id){id=elem[expando]=++uuid}if(name&&!jQuery.cache[id]){jQuery.cache[id]={}}if(data!==undefined){jQuery.cache[id][name]=data}return name?jQuery.cache[id][name]:id},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id]){break}if(!name){jQuery.removeData(elem)}}}else{try{delete elem[expando]}catch(e){if(elem.removeAttribute){elem.removeAttribute(expando)}}delete jQuery.cache[id]}},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object){if(callback.apply(object[name],args)===false){break}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break}}}}else{if(length==undefined){for(name in object){if(callback.call(object[name],name,object[name])===false){break}}}else{for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}}return object},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value)){value=value.call(elem,i)}return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className)){elem.className+=(elem.className?" ":"")+className}})},remove:function(elem,classNames){if(elem.nodeType==1){elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return !jQuery.className.has(classNames,className)}).join(" "):""}},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name]}callback.call(elem);for(var name in options){elem.style[name]=old[name]}},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0});val-=Math.round(padding+border)}if(jQuery(elem).is(":visible")){getWH()}else{jQuery.swap(elem,props,getWH)}return Math.max(0,val)}return jQuery.curCSS(elem,name,force)},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari){return false}var ret=defaultView.getComputedStyle(elem,null);return !ret||ret.getPropertyValue("color")==""}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save}if(name.match(/float/i)){name=styleFloat}if(!force&&style&&style[name]){ret=style[name]}else{if(defaultView.getComputedStyle){if(name.match(/float/i)){name="float"}name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem)){ret=computedStyle.getPropertyValue(name)}else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode){stack.unshift(a)}for(;i<stack.length;i++){if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block"}}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++){if(swap[i]!=null){stack[i].style.display=swap[i]}}}if(name=="opacity"&&ret==""){ret="1"}}else{if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase()});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft}}}}return ret},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document}jQuery.each(elems,function(i,elem){if(!elem){return}if(elem.constructor==Number){elem+=""}if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">"});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--){div=div.lastChild}if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j])}}if(/^\s/.test(elem)){div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild)}}elem=jQuery.makeArray(div.childNodes)}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select"))){return}if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options){ret.push(elem)}else{ret=jQuery.merge(ret,elem)}});return ret},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8){return undefined}var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari){elem.parentNode.selectedIndex}if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode){throw"type property can't be changed"}elem[name]=value}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue}return elem[name]}if(msie&&notxml&&name=="style"){return jQuery.attr(elem.style,"cssText",value)}if(set){elem.setAttribute(name,""+value)}var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+""=="NaN"?"":"alpha(opacity="+value*100+")")}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase()});if(set){elem[name]=value}return elem[name]},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"")},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call){ret[0]=array}else{while(i){ret[--i]=array[i]}}}return ret},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i}}return -1},merge:function(first,second){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++]){if(elem.nodeType!=8){first[pos++]=elem}}}else{while(elem=second[i++]){first[pos++]=elem}}return first},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i])}}}catch(e){ret=array}return ret},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++){if(!inv!=!callback(elems[i],i)){ret.push(elems[i])}}return ret},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null){ret[ret.length]=value}}return ret.concat.apply([],ret)}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});jQuery.each({parent:function(elem){return elem.parentNode},parents:function(elem){return jQuery.dir(elem,"parentNode")},next:function(elem){return jQuery.nth(elem,2,"nextSibling")},prev:function(elem){return jQuery.nth(elem,2,"previousSibling")},nextAll:function(elem){return jQuery.dir(elem,"nextSibling")},prevAll:function(elem){return jQuery.dir(elem,"previousSibling")},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem)},children:function(elem){return jQuery.sibling(elem.firstChild)},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string"){ret=jQuery.multiFilter(selector,ret)}return this.pushStack(jQuery.unique(ret))}});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++){jQuery(args[i])[original](this)}})}});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1){this.removeAttribute(name)}},addClass:function(classNames){jQuery.className.add(this,classNames)},removeClass:function(classNames){jQuery.className.remove(this,classNames)},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames)},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){jQuery(">*",this).remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments)}});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px")}});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2])},"#":function(a,i,m){return a.getAttribute("id")==m[2]},":":{lt:function(a,i,m){return i<m[3]-0},gt:function(a,i,m){return i>m[3]-0},nth:function(a,i,m){return m[3]-0==i},eq:function(a,i,m){return m[3]-0==i},first:function(a,i){return i==0},last:function(a,i,m,r){return i==r.length-1},even:function(a,i){return i%2==0},odd:function(a,i){return i%2},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a},"only-child":function(a){return !jQuery.nth(a.parentNode.lastChild,2,"previousSibling")},parent:function(a){return a.firstChild},empty:function(a){return !a.firstChild},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"},enabled:function(a){return !a.disabled},disabled:function(a){return a.disabled},checked:function(a){return a.checked},selected:function(a){return a.selected||jQuery.attr(a,"selected")},text:function(a){return"text"==a.type},radio:function(a){return"radio"==a.type},checkbox:function(a){return"checkbox"==a.type},file:function(a){return"file"==a.type},password:function(a){return"password"==a.type},submit:function(a){return"submit"==a.type},image:function(a){return"image"==a.type},reset:function(a){return"reset"==a.type},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button")},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},has:function(a,i,m){return jQuery.find(m[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem}).length}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r)}return cur},find:function(t,context){if(typeof t!="string"){return[t]}if(context&&context.nodeType!=1&&context.nodeType!=9){return[]}context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++){for(var c=ret[i].firstChild;c;c=c.nextSibling){if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName)){r.push(c)}}}ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0){continue}foundToken=true}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling){if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id]){break}if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~"){merge[id]=true}r.push(n)}if(m=="+"){break}}}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0]){ret.shift()}done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length)}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]]}else{re2=quickClass;m=re2.exec(t)}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2]){oid=jQuery('[@id="'+m[2]+'"]',elem)[0]}ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[]}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object"){tag="param"}r=jQuery.merge(r,ret[i].getElementsByTagName(tag))}if(m[1]=="."){r=jQuery.classFilter(r,m[2])}if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++){if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break}}r=tmp}ret=r}t=t.replace(re2,"")}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t)}}if(t){ret=[]}if(ret&&context==ret[0]){ret.shift()}done=jQuery.merge(done,ret);return done},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass){tmp.push(r[i])}}return tmp},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break}}if(!m){break}if(m[1]==":"&&m[2]=="not"){r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3])}else{if(m[1]=="."){r=jQuery.classFilter(r,m[2],not)}else{if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2])){z=jQuery.attr(a,m[2])||""}if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not){tmp.push(a)}}r=tmp}else{if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling){if(n.nodeType==1){n.nodeIndex=c++}}merge[id]=true}var add=false;if(first==0){if(node.nodeIndex==last){add=true}}else{if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0){add=true}}if(add^not){tmp.push(node)}}r=tmp}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object"){fn=fn[m[2]]}if(typeof fn=="string"){fn=eval("false||function(a,i){return "+fn+";}")}r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r)},not)}}}}}return{r:r,t:t}},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1){matched.push(cur)}cur=cur[dir]}return matched},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType==1&&++num==result){break}}return cur},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem){r.push(n)}}return r}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8){return}if(jQuery.browser.msie&&elem.setInterval){elem=window}if(!handler.guid){handler.guid=this.guid++}if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments)});handler.data=data}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered){return jQuery.event.handle.apply(arguments.callee.elem,arguments)}});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener){elem.addEventListener(type,handle,false)}else{if(elem.attachEvent){elem.attachEvent("on"+type,handle)}}}}handlers[handler.guid]=handler;jQuery.event.global[type]=true});elem=null},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8){return}var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)==".")){for(var type in events){this.remove(elem,type+(types||""))}}else{if(types.type){handler=types.handler;types=types.type}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler){delete events[type][handler.guid]}else{for(handler in events[type]){if(!parts[1]||events[type][handler].type==parts[1]){delete events[type][handler]}}}for(ret in events[type]){break}if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener){elem.removeEventListener(type,jQuery.data(elem,"handle"),false)}else{if(elem.detachEvent){elem.detachEvent("on"+type,jQuery.data(elem,"handle"))}}}ret=null;delete events[type]}}})}for(ret in events){break}if(!ret){var handle=jQuery.data(elem,"handle");if(handle){handle.elem=null}jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle")}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true}if(!elem){if(this.global[type]){jQuery("*").add([window,document]).trigger(type,data)}}else{if(elem.nodeType==3||elem.nodeType==8){return undefined}var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true}data[0].type=type;if(exclusive){data[0].exclusive=true}var handle=jQuery.data(elem,"handle");if(handle){val=handle.apply(elem,data)}if((!fn||(jQuery.nodeName(elem,"a")&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false){val=false}if(event){data.shift()}if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined){val=ret}}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,"a")&&type=="click")){this.triggered=true;try{elem[type]()}catch(e){}}this.triggered=false}return val},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false){val=ret}if(ret===false){event.preventDefault();event.stopPropagation()}}}return val},fix:function(event){if(event[expando]==true){return event}var originalEvent=event;event={originalEvent:originalEvent};var 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 timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--){event[props[i]]=originalEvent[props[i]]}event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault){originalEvent.preventDefault()}originalEvent.returnValue=false};event.stopPropagation=function(){if(originalEvent.stopPropagation){originalEvent.stopPropagation()}originalEvent.cancelBubble=true};event.timeStamp=event.timeStamp||now();if(!event.target){event.target=event.srcElement||document}if(event.target.nodeType==3){event.target=event.target.parentNode}if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement}if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0)}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode}if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey}if(!event.which&&event.button){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)))}return event},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy},special:{ready:{setup:function(){bindReady();return},teardown:function(){return}},mouseenter:{setup:function(){if(jQuery.browser.msie){return false}jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true},teardown:function(){if(jQuery.browser.msie){return false}jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true},handler:function(event){if(withinElement(event,this)){return true}event.type="mouseenter";return jQuery.event.handle.apply(this,arguments)}},mouseleave:{setup:function(){if(jQuery.browser.msie){return false}jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true},teardown:function(){if(jQuery.browser.msie){return false}jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true},handler:function(event){if(withinElement(event,this)){return true}event.type="mouseleave";return jQuery.event.handle.apply(this,arguments)}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data)})},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments)});return this.each(function(){jQuery.event.add(this,type,one,fn&&data)})},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn)})},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn)})},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn)},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.event.proxy(fn,args[i++])}return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false}))},hover:function(fnOver,fnOut){return this.bind("mouseenter",fnOver).bind("mouseleave",fnOut)},ready:function(fn){bindReady();if(jQuery.isReady){fn.call(document,jQuery)}else{jQuery.readyList.push(function(){return fn.call(this,jQuery)})}return this}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document)});jQuery.readyList=null}jQuery(document).triggerHandler("ready")}}});var readyBound=false;function bindReady(){if(readyBound){return}readyBound=true;if(document.addEventListener&&!jQuery.browser.opera){document.addEventListener("DOMContentLoaded",jQuery.ready,false)}if(jQuery.browser.msie&&window==top){(function(){if(jQuery.isReady){return}try{document.documentElement.doScroll("left")}catch(error){setTimeout(arguments.callee,0);return}jQuery.ready()})()}if(jQuery.browser.opera){document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady){return}for(var i=0;i<document.styleSheets.length;i++){if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return}}jQuery.ready()},false)}if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady){return}if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return}if(numStyles===undefined){numStyles=jQuery("style, link[rel=stylesheet]").length}if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return}jQuery.ready()})()}jQuery.event.add(window,"load",jQuery.ready)}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name)}});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem){try{parent=parent.parentNode}catch(error){parent=elem}}return parent==elem};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind()});jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!="string"){return this._load(url)}var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off)}callback=callback||function(){};var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null}else{params=jQuery.param(params);type="POST"}}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified"){self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText)}self.each(callback,[res.responseText,status,res])}});return this},serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type))}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val}}):{name:elem.name,value:val}}).get()}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f)}});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type})},getScript:function(url,callback){return jQuery.get(url,null,callback,"script")},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json")},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={}}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type})},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings)},ajaxSettings:{url:location.href,global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,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=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string"){s.data=jQuery.param(s.data)}if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre)){s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?"}}else{if(!s.data||!s.data.match(jsre)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?"}}s.dataType="json"}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data){s.data=(s.data+"").replace(jsre,"="+jsonp+"$1")}s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp]}catch(e){}if(head){head.removeChild(script)}}}if(s.dataType=="script"&&s.cache==null){s.cache=false}if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"")}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null}if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart")}var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset){script.charset=s.scriptCharset}if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script)}}}head.appendChild(script);return undefined}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username){xhr.open(type,s.url,s.async,s.username,s.password)}else{xhr.open(type,s.url,s.async)}try{if(s.data){xhr.setRequestHeader("Content-Type",s.contentType)}if(s.ifModified){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default)}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false}if(s.global){jQuery.event.trigger("ajaxSend",[xhr,s])}var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter)}catch(e){status="parsererror"}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified")}catch(e){}if(s.ifModified&&modRes){jQuery.lastModified[s.url]=modRes}if(!jsonp){success()}}else{jQuery.handleError(s,xhr,status)}complete();if(s.async){xhr=null}}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0){setTimeout(function(){if(xhr){xhr.abort();if(!requestDone){onreadystatechange("timeout")}}},s.timeout)}}try{xhr.send(s.data)}catch(e){jQuery.handleError(s,xhr,null,e)}if(!s.async){onreadystatechange()}function success(){if(s.success){s.success(data,status)}if(s.global){jQuery.event.trigger("ajaxSuccess",[xhr,s])}}function complete(){if(s.complete){s.complete(xhr,status)}if(s.global){jQuery.event.trigger("ajaxComplete",[xhr,s])}if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop")}}return xhr},handleError:function(s,xhr,status,e){if(s.error){s.error(xhr,status,e)}if(s.global){jQuery.event.trigger("ajaxError",[xhr,s,e])}},active:0,httpSuccess:function(xhr){try{return !xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined}catch(e){}return false},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined}catch(e){}return false},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror"){throw"parsererror"}if(filter){data=filter(data,type)}if(type=="script"){jQuery.globalEval(data)}if(type=="json"){data=eval("("+data+")")}return data},param:function(a){var s=[];if(a.constructor==Array||a.jquery){jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value))})}else{for(var j in a){if(a[j]&&a[j].constructor==Array){jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this))})}else{s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]))}}}return s.join("&").replace(/%20/g,"+")}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none"){this.style.display="block"}elem.remove()}}).end()},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none"}).end()},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]()})},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback)},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback)},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback)},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback)},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback)},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback)},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1){return false}var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden){return opt.complete.call(this)}if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow}}if(opt.overflow!=null){this.style.overflow="hidden"}opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val)){e[val=="toggle"?hidden?"show":"hide":val](prop)}else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit}if(parts[1]){end=((parts[1]=="-="?-1:1)*end)+start}e.custom(start,end,unit)}else{e.custom(start,val,"")}}});return true})},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx"}if(!type||(typeof type=="string"&&!fn)){return queue(this[0],type)}return this.each(function(){if(fn.constructor==Array){queue(this,type,fn)}else{queue(this,type).push(fn);if(queue(this,type).length==1){fn.call(this)}}})},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([])}this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem==this){if(gotoEnd){timers[i](true)}timers.splice(i,1)}}});if(!gotoEnd){this.dequeue()}return this}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array){q=jQuery.data(elem,type+"queue",jQuery.makeArray(array))}}return q};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length){q[0].call(this)}})};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue()}if(jQuery.isFunction(opt.old)){opt.old.call(this)}};return opt},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={}}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width"){this.elem.style.display="block"}},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null){return this.elem[this.prop]}var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd)}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1)}}if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null}},13)}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height"){this.elem.style[this.prop]="1px"}jQuery(this.elem).show()},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(gotoEnd){var t=now();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false}}if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){this.elem.style.display="none"}if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.attr(this.elem.style,p,this.options.orig[p])}}}if(done){this.options.complete.call(this.elem)}return false}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now},scrollTop:function(fx){fx.elem.scrollTop=fx.now},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now)},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem){with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop)}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2){border(offsetParent)}if(!fixed&&css(offsetParent,"position")=="fixed"){fixed=true}offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display"))){add(-parent.scrollLeft,-parent.scrollTop)}if(mozilla&&css(parent,"overflow")!="visible"){border(parent)}parent=parent.parentNode}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute")){add(-doc.body.offsetLeft,-doc.body.offsetTop)}if(fixed){add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop))}}results={top:top,left:left}}}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true))}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0}return results};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,"marginTop");offset.left-=num(this,"marginLeft");parentOffset.top+=num(offsetParent,"borderTopWidth");parentOffset.left+=num(offsetParent,"borderLeftWidth");results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left}}return results},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,"position")=="static")){offsetParent=offsetParent.offsetParent}return jQuery(offsetParent)}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){if(!this[0]){return}return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val}):this[0]==window||this[0]==document?self[i?"pageYOffset":"pageXOffset"]||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method]}});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br)};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0)}})})();jQuery.msg=function(D,B,C,A){if(!jQuery.msg.visible){jQuery.msg.visible="showing";B=B||"message";if(!A||A<1000){A=5000}if(!jQuery.msg.$box){$("body").append('<div id="jquery-msg-box">                <h3 id="jquery-msg-title"></h3>                <div id="jquery-msg-body"></div>                <div id="jquery-msg-footer"></div>                <a id="jquery-msg-close"></a>            </div>');jQuery.msg.$box=$("#jquery-msg-box");$("#jquery-msg-close").click(function(){jQuery.msg.$box.hide()});$(document).click(function(){if(jQuery.msg.visible===true){jQuery.msg.hide()}})}jQuery.msg.$box.hide();if(C){$("#jquery-msg-title").html(C).show()}else{$("#jquery-msg-title").hide()}$("#jquery-msg-body").html(D);jQuery.msg.$box[0].className="";if(B){jQuery.msg.$box.addClass("jquery-msg-"+B)}$("#jquery-msg-box").fadeIn(null,function(){jQuery.msg.visible=true;jQuery.msg.timer=setTimeout(function(){jQuery.msg.hide()},A)})}};jQuery.msg.hide=function(){if(jQuery.msg.timer){clearTimeout(jQuery.msg.timer)}$("#jquery-msg-box").fadeOut(null,function(){jQuery.msg.visible=false})};jQuery.content={detectAnchorChangeInterval:100,getCurrPageId:function(){},getPageId:function(A){},generateContentURL:function(A){},onDataRetrieved:function(){},onError:function(C,A,B){},dataFormat:null,lastAnchor:null,init:function(){$(document).click(function(C){if(C.which!=3){var D=C.target;while(D.parentNode){if(D.tagName&&D.tagName.toLowerCase()=="a"){break}else{D=D.parentNode}}var B=(D.tagName&&D.tagName.toLowerCase()=="a")?D:null;if(B&&jQuery.content.isInternalLink(B)){var A=jQuery.content.getPageId(B.href);if(A){jQuery.content.setAnchor(A);return false}}}});this.lastAnchor=this.getCurrPageId();this.detectAnchorChange()},isInternalLink:function(A){try{return A.href&&(A.protocol==window.location.protocol)&&(A.hostname==window.location.hostname)}catch(B){return false}},setAnchor:function(A){if(jQuery.browser.msie){$("#ie-content-navigation-fix-iframe").attr("src","index.php?page="+encodeURIComponent(A)+"&action=ieiframe")}window.location.hash="#"+A},getAnchor:function(){if(jQuery.browser.msie){try{var B=""+document.getElementById("ie-content-navigation-fix-iframe").contentWindow.location;var A=B.match(/[\?&]page=([^&]+)/);if(A&&A[1]){return A[1]}}catch(C){}}return window.location.hash.substr(1)},getDefaultPageId:function(){return document.URL.replace(/^.*?([^\/]*)([\?#].*)?$/,"$1")||"index.html"},detectAnchorChange:function(){var A=jQuery.content.getAnchor();if(!A){A=jQuery.content.getDefaultPageId()}if(A&&(A!=jQuery.content.lastAnchor)){jQuery.content.lastAnchor=A;if(jQuery.browser.msie){window.location.hash="#"+A}if(jQuery.content.beforeFetchData){jQuery.content.beforeFetchData()}jQuery.content.fetchPage(A,jQuery.content.onDataRetrieved,jQuery.content.onError)}setTimeout(jQuery.content.detectAnchorChange,jQuery.content.detectAnchorChangeInterval)},fetchPage:function(B,C,A){jQuery.content.fetching=true;jQuery.ajax({url:jQuery.content.generateContentURL(B),cache:false,dataType:jQuery.content.dataFormat,global:false,timeout:10000,success:function(D,E){jQuery.content.fetching=false;C(D)},error:function(F,G,D){jQuery.content.fetching=false;var E="";if(F.status&&F.status!=200){E+=F.status+": "+F.statusText+"\n"}else{if(G){E=G}else{if(D&&D.message){E+="Error: "+D.message}else{E="An unforeseen error occured"}}}A(F,this,E)}})},getInnerXML:function(C){var A="";for(var B=0;B<C.childNodes.length;B++){var D=C.childNodes[B];if(D.nodeType==1){A+=jQuery.content.getOuterXML(D)}else{if(D.nodeType==3||D.nodeType==4){A+=D.data}else{}}}return A},getOuterXML:function(D){var C="<"+D.nodeName;for(var B=0;B<D.attributes.length;B++){var A=D.attributes[B];C+=" "+jQuery.content.encodeHTML(A.name)+'="'+jQuery.content.encodeHTML(A.value)+'"'}if(D.childNodes.length>0){C+=">";for(var B=0;B<D.childNodes.length;B++){var E=D.childNodes[B];if(E.nodeType==1){C+=jQuery.content.getOuterXML(E)}else{if(E.nodeType==3||E.nodeType==4){C+=E.data}else{}}}C+="</"+D.nodeName+">"}else{C+=" />"}return C},encodeHTML:function(A){A=A.replace(/&/g,"&amp;");A=A.replace(/</g,"&lt;");A=A.replace(/>/g,"&gt;");A=A.replace(/"/g,"&quot;");return A},replaceContent:function(C){var F=1;try{var B=C.documentElement;for(var D=0;D<B.childNodes.length;D++){var E=B.childNodes[D];if(E.nodeType==F){switch(E.nodeName.toLowerCase()){case"title":document.title=E.firstChild.data;break;case"html":$(E.getAttribute("selector")).html(jQuery.content.getInnerXML(E));break;case"attr":$(E.getAttribute("selector")).attr(E.getAttribute("name"),E.getAttribute("value"));break;default:throw Error("Unknown action '"+E.nodeName+"'")}}}var A=jQuery.content.getCurrPageId();$(document).trigger("content-replaced",[A])}catch(G){}}};jQuery.googleAnalytics={code:"",pageTracker:null,init:function(A){jQuery.googleAnalytics.code=A;$(document).bind("content-replaced",function(B,C){jQuery.googleAnalytics.trackPage(C)});jQuery.googleAnalytics.trackPage()},trackPage:function(A){jQuery.googleAnalytics.pageTracker=jQuery.googleAnalytics.pageTracker||_gat._getTracker(jQuery.googleAnalytics.code);jQuery.googleAnalytics.pageTracker._trackPageview(A)}};var _gat=new Object({c:"length",lb:"4.3",m:"cookie",b:undefined,cb:function(B,A){this.zb=B;this.Nb=A},r:"__utma=",W:"__utmb=",ma:"__utmc=",Ta:"__utmk=",na:"__utmv=",oa:"__utmx=",Sa:"GASO=",X:"__utmz=",lc:"http://www.google-analytics.com/__utm.gif",mc:"https://ssl.google-analytics.com/__utm.gif",Wa:"utmcid=",Ya:"utmcsr=",$a:"utmgclid=",Ua:"utmccn=",Xa:"utmcmd=",Za:"utmctr=",Va:"utmcct=",Hb:false,_gasoDomain:undefined,_gasoCPath:undefined,e:window,a:document,k:navigator,t:function(D){var A=1,E=0,B,C;if(!_gat.q(D)){A=0;for(B=D[_gat.c]-1;B>=0;B--){C=D.charCodeAt(B);A=(A<<6&268435455)+C+(C<<14);E=A&266338304;A=E!=0?A^E>>21:A}}return A},C:function(G,B,H){var E=_gat,F="-",C,A,D=E.q;if(!D(G)&&!D(B)&&!D(H)){C=E.w(G,B);if(C>-1){A=G.indexOf(H,C);if(A<0){A=G[E.c]}F=E.F(G,C+E.w(B,"=")+1,A)}}return F},Ea:function(D){var A=false,E=0,B,C;if(!_gat.q(D)){A=true;for(B=0;B<D[_gat.c];B++){C=D.charAt(B);E+="."==C?1:0;A=A&&E<=1&&(0==B&&"-"==C||_gat.P(".0123456789",C))}}return A},d:function(B,A){var C=encodeURIComponent;return C instanceof Function?(A?encodeURI(B):C(B)):escape(B)},J:function(D,A){var E=decodeURIComponent,B;D=D.split("+").join(" ");if(E instanceof Function){try{B=A?decodeURI(D):E(D)}catch(C){B=unescape(D)}}else{B=unescape(D)}return B},Db:function(A){return A&&A.hash?_gat.F(A.href,_gat.w(A.href,"#")):""},q:function(A){return _gat.b==A||"-"==A||""==A},Lb:function(A){return A[_gat.c]>0&&_gat.P(" \n\r\t",A)},P:function(B,A){return _gat.w(B,A)>-1},h:function(B,A){B[B[_gat.c]]=A},T:function(A){return A.toLowerCase()},z:function(B,A){return B.split(A)},w:function(B,A){return B.indexOf(A)},F:function(B,A,C){C=_gat.b==C?B[_gat.c]:C;return B.substring(A,C)},uc:function(){var B=_gat.b,A=window;if(A&&A.gaGlobal&&A.gaGlobal.hid){B=A.gaGlobal.hid}else{B=Math.round(Math.random()*2147483647);A.gaGlobal=A.gaGlobal?A.gaGlobal:{};A.gaGlobal.hid=B}return B},wa:function(){return Math.round(Math.random()*2147483647)},Gc:function(){return(_gat.wa()^_gat.vc())*2147483647},vc:function(){var G=_gat.k,B=_gat.a,H=_gat.e,E=B[_gat.m]?B[_gat.m]:"",F=H.history[_gat.c],C,A,D=[G.appName,G.version,G.language?G.language:G.browserLanguage,G.platform,G.userAgent,G.javaEnabled()?1:0].join("");if(H.screen){D+=H.screen.width+"x"+H.screen.height+H.screen.colorDepth}else{if(H.java){A=java.awt.Toolkit.getDefaultToolkit().getScreenSize();D+=A.screen.width+"x"+A.screen.height}}D+=E;D+=B.referrer?B.referrer:"";C=D[_gat.c];while(F>0){D+=F--^C++}return _gat.t(D)}});_gat.hc=function(){var B=this,A=_gat.cb;function C(D,E){return new A(D,E)}B.db="utm_campaign";B.eb="utm_content";B.fb="utm_id";B.gb="utm_medium";B.hb="utm_nooverride";B.ib="utm_source";B.jb="utm_term";B.kb="gclid";B.pa=0;B.I=0;B.wb="15768000";B.Tb="1800";B.ea=[];B.ga=[];B.Ic="cse";B.Gb="q";B.ab="google";B.fa=[C(B.ab,B.Gb),C("yahoo","p"),C("msn","q"),C("aol","query"),C("aol","encquery"),C("lycos","query"),C("ask","q"),C("altavista","q"),C("netscape","query"),C("cnn","query"),C("looksmart","qt"),C("about","terms"),C("mamma","query"),C("alltheweb","q"),C("gigablast","q"),C("voila","rdata"),C("virgilio","qs"),C("live","q"),C("baidu","wd"),C("alice","qs"),C("yandex","text"),C("najdi","q"),C("aol","q"),C("club-internet","query"),C("mama","query"),C("seznam","q"),C("search","q"),C("wp","szukaj"),C("onet","qt"),C("netsprint","q"),C("google.interia","q"),C("szukacz","q"),C("yam","k"),C("pchome","q"),C("kvasir","searchExpr"),C("sesam","q"),C("ozu","q"),C("terra","query"),C("nostrum","query"),C("mynet","q"),C("ekolay","q"),C("search.ilse","search_for")];B.B=undefined;B.Kb=false;B.p="/";B.ha=100;B.Da="/__utm.gif";B.ta=1;B.ua=1;B.G="|";B.sa=1;B.qa=1;B.pb=1;B.g="auto";B.D=1;B.Ga=1000;B.Yc=10;B.nc=10;B.Zc=0.2};_gat.Y=function(U,W){var V,R,M,Q,P,G,J,T=this,N=_gat,E=N.q,D=N.c,S,C=W;T.a=U;function I(B){var A=B instanceof Array?B.join("."):"";return E(A)?"-":A}function L(X,A){var Y=[],B;if(!E(X)){Y=N.z(X,".");if(A){for(B=0;B<Y[D];B++){if(!N.Ea(Y[B])){Y[B]="-"}}}}return Y}function K(){return F(63072000000)}function F(B){var A=new Date,X=new Date(A.getTime()+B);return"expires="+X.toGMTString()+"; "}function O(B,A){T.a[N.m]=B+"; path="+C.p+"; "+A+T.Cc()}function H(Z,A,a){var X=T.V,Y,B;for(Y=0;Y<X[D];Y++){B=X[Y][0];B+=E(A)?A:A+X[Y][4];X[Y][2](N.C(Z,B,a))}}T.Jb=function(){return N.b==S||S==T.t()};T.Ba=function(){return P?P:"-"};T.Wb=function(A){P=A};T.Ma=function(A){S=N.Ea(A)?A*1:"-"};T.Aa=function(){return I(G)};T.Na=function(A){G=L(A)};T.Hc=function(){return S?S:"-"};T.Cc=function(){return E(C.g)?"":"domain="+C.g+";"};T.ya=function(){return I(V)};T.Ub=function(A){V=L(A,1)};T.K=function(){return I(R)};T.La=function(A){R=L(A,1)};T.za=function(){return I(M)};T.Vb=function(A){M=L(A,1)};T.Ca=function(){return I(Q)};T.Xb=function(B){Q=L(B);for(var A=0;A<Q[D];A++){if(A<4&&!N.Ea(Q[A])){Q[A]="-"}}};T.Dc=function(){return J};T.Uc=function(A){J=A};T.pc=function(){V=[];R=[];M=[];Q=[];P=N.b;G=[];S=N.b};T.t=function(){var B="",A;for(A=0;A<T.V[D];A++){B+=T.V[A][1]()}return N.t(B)};T.Ha=function(B){var A=T.a[N.m],X=false;if(A){H(A,B,";");T.Ma(T.t());X=true}return X};T.Rc=function(A){H(A,"","&");T.Ma(N.C(A,N.Ta,"&"))};T.Wc=function(){var B=T.V,A=[],X;for(X=0;X<B[D];X++){N.h(A,B[X][0]+B[X][1]())}N.h(A,N.Ta+T.t());return A.join("&")};T.bd=function(Y,A){var Z=T.V,B=C.p,X;T.Ha(Y);C.p=A;for(X=0;X<Z[D];X++){if(!E(Z[X][1]())){Z[X][3]()}}C.p=B};T.dc=function(){O(N.r+T.ya(),K())};T.Pa=function(){O(N.W+T.K(),F(C.Tb*1000))};T.ec=function(){O(N.ma+T.za(),"")};T.Ra=function(){O(N.X+T.Ca(),F(C.wb*1000))};T.fc=function(){O(N.oa+T.Ba(),K())};T.Qa=function(){O(N.na+T.Aa(),K())};T.cd=function(){O(N.Sa+T.Dc(),"")};T.V=[[N.r,T.ya,T.Ub,T.dc,"."],[N.W,T.K,T.La,T.Pa,""],[N.ma,T.za,T.Vb,T.ec,""],[N.oa,T.Ba,T.Wb,T.fc,""],[N.X,T.Ca,T.Xb,T.Ra,"."],[N.na,T.Aa,T.Na,T.Qa,"."]]};_gat.jc=function(E){var A=this,F=_gat,C=E,D,B=function(G){var H=(new Date).getTime(),I;I=(H-G[3])*(C.Zc/1000);if(I>=1){G[2]=Math.min(Math.floor(G[2]*1+I),C.nc);G[3]=H}return G};A.O=function(L,S,G,N,K,Q,P){var M,O=C.D,I=G.location;if(!D){D=new F.Y(G,C)}D.Ha(N);M=F.z(D.K(),".");if(M[1]<500||K){if(Q){M=B(M)}if(K||!Q||M[2]>=1){if(!K&&Q){M[2]=M[2]*1-1}M[1]=M[1]*1+1;L="?utmwv="+_gat.lb+"&utmn="+F.wa()+(F.q(I.hostname)?"":"&utmhn="+F.d(I.hostname))+(C.ha==100?"":"&utmsp="+F.d(C.ha))+L;if(0==O||2==O){var J=new Image(1,1);J.src=C.Da+L;var H=2==O?function(){}:P||function(){};J.onload=H}if(1==O||2==O){var R=new Image(1,1);R.src=("https:"==I.protocol?F.mc:F.lc)+L+"&utmac="+S+"&utmcc="+A.wc(G,N);R.onload=P||function(){}}}}D.La(M.join("."));D.Pa()};A.wc=function(I,J){var L=[],K=[F.r,F.X,F.na,F.oa],M,H=I[F.m],G;for(M=0;M<K[F.c];M++){G=F.C(H,K[M]+J,";");if(!F.q(G)){F.h(L,K[M]+G+";")}}return F.d(L.join("+"))}};_gat.i=function(){this.la=[]};_gat.i.bb=function(F,B,G,D,E,C){var A=this;A.cc=F;A.Oa=B;A.L=G;A.sb=D;A.Pb=E;A.Qb=C};_gat.i.bb.prototype.S=function(){var B=this,A=_gat.d;return"&"+["utmt=item","utmtid="+A(B.cc),"utmipc="+A(B.Oa),"utmipn="+A(B.L),"utmiva="+A(B.sb),"utmipr="+A(B.Pb),"utmiqt="+A(B.Qb)].join("&")};_gat.i.$=function(F,H,G,E,B,D,C,I){var A=this;A.v=F;A.ob=H;A.bc=G;A.ac=E;A.Yb=B;A.ub=D;A.$b=C;A.xb=I;A.ca=[]};_gat.i.$.prototype.mb=function(F,H,G,E,B){var D=this,C=D.Eb(F),I=D.v,A=_gat;if(A.b==C){A.h(D.ca,new A.i.bb(I,F,H,G,E,B))}else{C.cc=I;C.Oa=F;C.L=H;C.sb=G;C.Pb=E;C.Qb=B}};_gat.i.$.prototype.Eb=function(C){var A,D=this.ca,B;for(B=0;B<D[_gat.c];B++){A=C==D[B].Oa?D[B]:A}return A};_gat.i.$.prototype.S=function(){var B=this,A=_gat.d;return"&"+["utmt=tran","utmtid="+A(B.v),"utmtst="+A(B.ob),"utmtto="+A(B.bc),"utmttx="+A(B.ac),"utmtsp="+A(B.Yb),"utmtci="+A(B.ub),"utmtrg="+A(B.$b),"utmtco="+A(B.xb)].join("&")};_gat.i.prototype.nb=function(H,J,I,F,B,E,D,K){var A=this,G=_gat,C=A.xa(H);if(G.b==C){C=new G.i.$(H,J,I,F,B,E,D,K);G.h(A.la,C)}else{C.ob=J;C.bc=I;C.ac=F;C.Yb=B;C.ub=E;C.$b=D;C.xb=K}return C};_gat.i.prototype.xa=function(C){var A,D=this.la,B;for(B=0;B<D[_gat.c];B++){A=C==D[B].v?D[B]:A}return A};_gat.gc=function(E){var A=this,F="-",C=_gat,D=E;A.Ja=screen;A.qb=!self.screen&&self.java?java.awt.Toolkit.getDefaultToolkit():C.b;A.a=document;A.e=window;A.k=navigator;A.Ka=F;A.Sb=F;A.tb=F;A.Ob=F;A.Mb=1;A.Bb=F;function B(){var I,O,G,K,H="ShockwaveFlash",N="$version",M=A.k?A.k.plugins:C.b;if(M&&M[C.c]>0){for(I=0;I<M[C.c]&&!G;I++){O=M[I];if(C.P(O.name,"Shockwave Flash")){G=C.z(O.description,"Shockwave Flash ")[1]}}}else{H=H+"."+H;try{K=new ActiveXObject(H+".7");G=K.GetVariable(N)}catch(J){}if(!G){try{K=new ActiveXObject(H+".6");G="WIN 6,0,21,0";K.AllowScriptAccess="always";G=K.GetVariable(N)}catch(L){}}if(!G){try{K=new ActiveXObject(H);G=K.GetVariable(N)}catch(L){}}if(G){G=C.z(C.z(G," ")[1],",");G=G[0]+"."+G[1]+" r"+G[2]}}return G?G:F}A.xc=function(){var G;if(self.screen){A.Ka=A.Ja.width+"x"+A.Ja.height;A.Sb=A.Ja.colorDepth+"-bit"}else{if(A.qb){try{G=A.qb.getScreenSize();A.Ka=G.width+"x"+G.height}catch(H){}}}A.Ob=C.T(A.k&&A.k.language?A.k.language:(A.k&&A.k.browserLanguage?A.k.browserLanguage:F));A.Mb=A.k&&A.k.javaEnabled()?1:0;A.Bb=D?B():F;A.tb=C.d(A.a.characterSet?A.a.characterSet:(A.a.charset?A.a.charset:F))};A.Xc=function(){return"&"+["utmcs="+C.d(A.tb),"utmsr="+A.Ka,"utmsc="+A.Sb,"utmul="+A.Ob,"utmje="+A.Mb,"utmfl="+C.d(A.Bb)].join("&")}};_gat.n=function(M,Q,O,J,F){var I=this,H=_gat,S=H.q,C=H.b,L=H.P,G=H.C,R=H.T,P=H.z,K=H.c;I.a=Q;I.f=M;I.Rb=O;I.ja=J;I.o=F;function N(A){return S(A)||"0"==A||!L(A,"://")}function D(B){var A="";B=R(P(B,"://")[1]);if(L(B,"/")){B=P(B,"/")[1];if(L(B,"?")){A=P(B,"?")[0]}}return A}function E(B){var A="";A=R(P(B,"://")[1]);if(L(A,"/")){A=P(A,"/")[0]}return A}I.Fc=function(T){var B=I.Fb(),A=I.o;return new H.n.s(G(T,A.fb+"=","&"),G(T,A.ib+"=","&"),G(T,A.kb+"=","&"),I.ba(T,A.db,"(not set)"),I.ba(T,A.gb,"(not set)"),I.ba(T,A.jb,B&&!S(B.R)?H.J(B.R):C),I.ba(T,A.eb,C))};I.Ib=function(T){var B=E(T),A=D(T);if(L(B,I.o.ab)){T=P(T,"?").join("&");if(L(T,"&"+I.o.Gb+"=")){if(A==I.o.Ic){return true}}}return false};I.Fb=function(){var W,T,B=I.Rb,V,U,A=I.o.fa;if(N(B)||I.Ib(B)){return}W=E(B);for(V=0;V<A[K];V++){U=A[V];if(L(W,R(U.zb))){B=P(B,"?").join("&");if(L(B,"&"+U.Nb+"=")){T=P(B,"&"+U.Nb+"=")[1];if(L(T,"&")){T=P(T,"&")[0]}return new H.n.s(C,U.zb,C,"(organic)","organic",T,C)}}}};I.ba=function(V,B,A){var U=G(V,B+"=","&"),T=!S(U)?H.J(U):(!S(A)?A:"-");return T};I.Nc=function(V){var B=I.o.ea,A=false,U,T;if(V&&"organic"==V.da){U=R(H.J(V.R));for(T=0;T<B[K];T++){A=A||R(B[T])==U}}return A};I.Ec=function(){var T="",B="",A=I.Rb;if(N(A)||I.Ib(A)){return}T=R(P(A,"://")[1]);if(L(T,"/")){B=H.F(T,H.w(T,"/"));if(L(B,"?")){B=P(B,"?")[0]}T=P(T,"/")[0]}if(0==H.w(T,"www.")){T=H.F(T,4)}return new H.n.s(C,T,C,"(referral)","referral",C,B)};I.sc=function(B){var A="";if(I.o.pa){A=H.Db(B);A=""!=A?A+"&":A}A+=B.search;return A};I.zc=function(){return new H.n.s(C,"(direct)",C,"(direct)","(none)",C,C)};I.Oc=function(V){var B=false,A,U,T=I.o.ga;if(V&&"referral"==V.da){A=R(H.d(V.ia));for(U=0;U<T[K];U++){B=B||L(A,R(T[U]))}}return B};I.U=function(A){return C!=A&&A.Fa()};I.yc=function(B,d){var T="",A="-",V,Y,W=0,U,g,a=I.f;if(!B){return""}g=I.a[H.m]?I.a[H.m]:"";T=I.sc(I.a.location);if(I.o.I&&B.Jb()){A=B.Ca();if(!S(A)&&!L(A,";")){B.Ra();return""}}A=G(g,H.X+a+".",";");V=I.Fc(T);if(I.U(V)){Y=G(T,I.o.hb+"=","&");if("1"==Y&&!S(A)){return""}}if(!I.U(V)){V=I.Fb();if(!S(A)&&I.Nc(V)){return""}}if(!I.U(V)&&d){V=I.Ec();if(!S(A)&&I.Oc(V)){return""}}if(!I.U(V)){if(S(A)&&d){V=I.zc()}}if(!I.U(V)){return""}if(!S(A)){var X=P(A,"."),h=new H.n.s;h.Cb(X.slice(4).join("."));U=R(h.ka())==R(V.ka());W=X[3]*1}if(!U||d){var f=G(g,H.r+a+".",";"),Z=f.lastIndexOf("."),c=Z>9?H.F(f,Z+1)*1:0;W++;c=0==c?1:c;B.Xb([a,I.ja,c,W,V.ka()].join("."));B.Ra();return"&utmcn=1"}else{return"&utmcr=1"}}};_gat.n.s=function(G,B,H,E,F,C,A){var D=this;D.v=G;D.ia=B;D.ra=H;D.L=E;D.da=F;D.R=C;D.vb=A};_gat.n.s.prototype.ka=function(){var E=this,A=_gat,F=[],C=[[A.Wa,E.v],[A.Ya,E.ia],[A.$a,E.ra],[A.Ua,E.L],[A.Xa,E.da],[A.Za,E.R],[A.Va,E.vb]],D,B;if(E.Fa()){for(D=0;D<C[A.c];D++){if(!A.q(C[D][1])){B=C[D][1].split("+").join("%20");B=B.split(" ").join("%20");A.h(F,C[D][0]+B)}}}return F.join("|")};_gat.n.s.prototype.Fa=function(){var B=this,A=_gat.q;return !(A(B.v)&&A(B.ia)&&A(B.ra))};_gat.n.s.prototype.Cb=function(C){var A=this,D=_gat,B=function(E){return D.J(D.C(C,E,"|"))};A.v=B(D.Wa);A.ia=B(D.Ya);A.ra=B(D.$a);A.L=B(D.Ua);A.da=B(D.Xa);A.R=B(D.Za);A.vb=B(D.Va)};_gat.Z=function(){var S=this,U=_gat,T={},P="k",L="v",O=[P,L],N="(",G=")",I="*",R="!",M="'",E={};E[M]="'0";E[G]="'1";E[I]="'2";E[R]="'3";var D=1;function Q(B,W,V,A){if(U.b==T[B]){T[B]={}}if(U.b==T[B][W]){T[B][W]=[]}T[B][W][V]=A}function C(A,V,B){return U.b!=T[A]&&U.b!=T[A][V]?T[A][V][B]:U.b}function H(B,W){if(U.b!=T[B]&&U.b!=T[B][W]){T[B][W]=U.b;var V=true,A;for(A=0;A<O[U.c];A++){if(U.b!=T[B][O[A]]){V=false;break}}if(V){T[B]=U.b}}}function K(B){var W="",V=false,A,X;for(A=0;A<O[U.c];A++){X=B[O[A]];if(U.b!=X){if(V){W+=O[A]}W+=J(X);V=false}else{V=true}}return W}function J(B){var W=[],V,A;for(A=0;A<B[U.c];A++){if(U.b!=B[A]){V="";if(A!=D&&U.b==B[A-1]){V+=A.toString();V+=R}V+=F(B[A]);U.h(W,V)}}return N+W.join(I)+G}function F(B){var W="",V,A,X;for(V=0;V<B[U.c];V++){A=B.charAt(V);X=E[A];W+=U.b!=X?X:A}return W}S.Kc=function(A){return U.b!=T[A]};S.N=function(){var A=[],B;for(B in T){if(U.b!=T[B]){U.h(A,B.toString()+K(T[B]))}}return A.join("")};S.Sc=function(A){if(A==U.b){return S.N()}var V=[A.N()],B;for(B in T){if(U.b!=T[B]&&!A.Kc(B)){U.h(V,B.toString()+K(T[B]))}}return V.join("")};S._setKey=function(A,V,B){if(typeof B!="string"){return false}Q(A,P,V,B);return true};S._setValue=function(A,V,B){if(typeof B!="number"&&(U.b==Number||!(B instanceof Number))){return false}if(Math.round(B)!=B||B==NaN||B==Infinity){return false}Q(A,L,V,B.toString());return true};S._getKey=function(A,B){return C(A,P,B)};S._getValue=function(A,B){return C(A,L,B)};S._clearKey=function(A){H(A,P)};S._clearValue=function(A){H(A,L)}};_gat.ic=function(B,A){var C=this;C.jd=A;C.Pc=B;C._trackEvent=function(E,F,D){return A._trackEvent(C.Pc,E,F,D)}};_gat.kc=function(V){var X=this,W=_gat,S=W.b,M=W.q,Q=W.w,P=W.F,G=W.C,J=W.P,U=W.z,N="location",E=W.c,D=S,T=new W.hc,C=false;X.a=document;X.e=window;X.ja=Math.round((new Date).getTime()/1000);X.H=V;X.yb=X.a.referrer;X.va=S;X.j=S;X.A=S;X.M=false;X.aa=S;X.rb="";X.l=S;X.Ab=S;X.f=S;X.u=S;function I(){if("auto"==T.g){var A=X.a.domain;if("www."==P(A,0,4)){A=P(A,4)}T.g=A}T.g=W.T(T.g)}function L(){var A=T.g,B=Q(A,"www.google.")*Q(A,".google.")*Q(A,"google.");return B||"/"!=T.p||Q(A,"google.org")>-1}function K(A,a,Y){if(M(A)||M(a)||M(Y)){return"-"}var Z=G(A,W.r+X.f+".",a),B;if(!M(Z)){B=U(Z,".");B[5]=B[5]?B[5]*1+1:1;B[3]=B[4];B[4]=Y;Z=B.join(".")}return Z}function F(){return"file:"!=X.a[N].protocol&&L()}function O(A){if(!A||""==A){return""}while(W.Lb(A.charAt(0))){A=P(A,1)}while(W.Lb(A.charAt(A[E]-1))){A=P(A,0,A[E]-1)}return A}function H(A,Y,B){if(!M(A())){Y(W.J(A()));if(!J(A(),";")){B()}}}function R(A){var Y,B=""!=A&&X.a[N].host!=A;if(B){for(Y=0;Y<T.B[E];Y++){B=B&&Q(W.T(A),W.T(T.B[Y]))==-1}}return B}X.Bc=function(){if(!T.g||""==T.g||"none"==T.g){T.g="";return 1}I();return T.pb?W.t(T.g):1};X.tc=function(A,Y){if(M(A)){A="-"}else{Y+=T.p&&"/"!=T.p?T.p:"";var B=Q(A,Y);A=B>=0&&B<=8?"0":("["==A.charAt(0)&&"]"==A.charAt(A[E]-1)?"-":A)}return A};X.Ia=function(A){var Y="",B=X.a;Y+=X.aa?X.aa.Xc():"";Y+=T.qa?X.rb:"";Y+=T.ta&&!M(B.title)?"&utmdt="+W.d(B.title):"";Y+="&utmhid="+W.uc()+"&utmr="+X.va+"&utmp="+X.Tc(A);return Y};X.Tc=function(A){var B=X.a[N];A=S!=A&&""!=A?W.d(A,true):W.d(B.pathname+unescape(B.search),true);return A};X.$c=function(A){if(X.Q()){var B="";if(X.l!=S&&X.l.N().length>0){B+="&utme="+W.d(X.l.N())}B+=X.Ia(A);D.O(B,X.H,X.a,X.f)}};X.qc=function(){var A=new W.Y(X.a,T);return A.Ha(X.f)?A.Wc():S};X._getLinkerUrl=function(A,a){var Y=U(A,"#"),Z=A,B=X.qc();if(B){if(a&&1>=Y[E]){Z+="#"+B}else{if(!a||1>=Y[E]){if(1>=Y[E]){Z+=(J(A,"?")?"&":"?")+B}else{Z=Y[0]+(J(A,"?")?"&":"?")+B+"#"+Y[1]}}}}return Z};X.Zb=function(){var A;if(X.A&&X.A[E]>=10&&!J(X.A,"=")){X.u.Uc(X.A);X.u.cd();W._gasoDomain=T.g;W._gasoCPath=T.p;A=X.a.createElement("script");A.type="text/javascript";A.id="_gasojs";A.src="https://www.google.com/analytics/reporting/overlay_js?gaso="+X.A+"&"+W.wa();X.a.getElementsByTagName("head")[0].appendChild(A)}};X.Jc=function(){var d=X.a[W.m],Z=X.ja,Y=X.u,o=X.f+"",k=X.e,c=k?k.gaGlobal:S,p,n=J(d,W.r+o+"."),g=J(d,W.W+o),l=J(d,W.ma+o),B,A=[],h="",a=false,f;d=M(d)?"":d;if(T.I){p=W.Db(X.a[N]);if(T.pa&&!M(p)){h=p+"&"}h+=X.a[N].search;if(!M(h)&&J(h,W.r)){Y.Rc(h);if(!Y.Jb()){Y.pc()}B=Y.ya()}H(Y.Ba,Y.Wb,Y.fc);H(Y.Aa,Y.Na,Y.Qa)}if(!M(B)){if(M(Y.K())||M(Y.za())){B=K(h,"&",Z);X.M=true}else{A=U(Y.K(),".");o=A[0]}}else{if(n){if(!g||!l){B=K(d,";",Z);X.M=true}else{B=G(d,W.r+o+".",";");A=U(G(d,W.W+o,";"),".")}}else{B=[o,W.Gc(),Z,Z,Z,1].join(".");X.M=true;a=true}}B=U(B,".");if(k&&c&&c.dh==o){B[4]=c.sid?c.sid:B[4];if(a){B[3]=c.sid?c.sid:B[4];if(c.vid){f=U(c.vid,".");B[1]=f[0];B[2]=f[1]}}}Y.Ub(B.join("."));A[0]=o;A[1]=A[1]?A[1]:0;A[2]=undefined!=A[2]?A[2]:T.Yc;A[3]=A[3]?A[3]:B[4];Y.La(A.join("."));Y.Vb(o);if(!M(Y.Hc())){Y.Ma(Y.t())}Y.dc();Y.Pa();Y.ec()};X.Lc=function(){D=new W.jc(T)};X._initData=function(){var A;if(!C){X.Lc();X.f=X.Bc();X.u=new W.Y(X.a,T)}if(F()){X.Jc()}if(!C){if(F()){X.va=X.tc(X.Ac(),X.a.domain);if(T.sa){X.aa=new W.gc(T.ua);X.aa.xc()}if(T.qa){A=new W.n(X.f,X.a,X.va,X.ja,T);X.rb=A.yc(X.u,X.M)}}X.l=new W.Z;X.Ab=new W.Z;C=true}if(!W.Hb){X.Mc()}};X._visitCode=function(){X._initData();var A=G(X.a[W.m],W.r+X.f+".",";"),B=U(A,".");return B[E]<4?"":B[1]};X._cookiePathCopy=function(A){X._initData();if(X.u){X.u.bd(X.f,A)}};X.Mc=function(){var A=X.a[N].hash,B;B=A&&""!=A&&0==Q(A,"#gaso=")?G(A,"gaso=","&"):G(X.a[W.m],W.Sa,";");if(B[E]>=10){X.A=B;if(X.e.addEventListener){X.e.addEventListener("load",X.Zb,false)}else{X.e.attachEvent("onload",X.Zb)}}W.Hb=true};X.Q=function(){return X._visitCode()%10000<T.ha*100};X.Vc=function(){var A,Z,B=X.a.links;if(!T.Kb){var Y=X.a.domain;if("www."==P(Y,0,4)){Y=P(Y,4)}T.B.push("."+Y)}for(A=0;A<B[E]&&(T.Ga==-1||A<T.Ga);A++){Z=B[A];if(R(Z.host)){if(!Z.gatcOnclick){Z.gatcOnclick=Z.onclick?Z.onclick:X.Qc;Z.onclick=function(a){var b=!this.target||this.target=="_self"||this.target=="_top"||this.target=="_parent";b=b&&!X.oc(a);X.ad(a,this,b);return b?false:(this.gatcOnclick?this.gatcOnclick(a):true)}}}}};X.Qc=function(){};X._trackPageview=function(A){if(F()){X._initData();if(T.B){X.Vc()}X.$c(A);X.M=false}};X._trackTrans=function(){var A=X.f,a=[],Y,Z,B,c;X._initData();if(X.j&&X.Q()){for(Y=0;Y<X.j.la[E];Y++){Z=X.j.la[Y];W.h(a,Z.S());for(B=0;B<Z.ca[E];B++){W.h(a,Z.ca[B].S())}}for(c=0;c<a[E];c++){D.O(a[c],X.H,X.a,A,true)}}};X._setTrans=function(){var A=X.a,a,Y,Z,B,c=A.getElementById?A.getElementById("utmtrans"):(A.utmform&&A.utmform.utmtrans?A.utmform.utmtrans:S);X._initData();if(c&&c.value){X.j=new W.i;B=U(c.value,"UTM:");T.G=!T.G||""==T.G?"|":T.G;for(a=0;a<B[E];a++){B[a]=O(B[a]);Y=U(B[a],T.G);for(Z=0;Z<Y[E];Z++){Y[Z]=O(Y[Z])}if("T"==Y[0]){X._addTrans(Y[1],Y[2],Y[3],Y[4],Y[5],Y[6],Y[7],Y[8])}else{if("I"==Y[0]){X._addItem(Y[1],Y[2],Y[3],Y[4],Y[5],Y[6])}}}}};X._addTrans=function(A,d,Y,Z,B,f,c,a){X.j=X.j?X.j:new W.i;return X.j.nb(A,d,Y,Z,B,f,c,a)};X._addItem=function(A,c,Y,Z,B,d){var a;X.j=X.j?X.j:new W.i;a=X.j.xa(A);if(!a){a=X._addTrans(A,"","","","","","","")}a.mb(c,Y,Z,B,d)};X._setVar=function(A){if(A&&""!=A&&L()){X._initData();var Y=new W.Y(X.a,T),B=X.f;Y.Na(B+"."+W.d(A));Y.Qa();if(X.Q()){D.O("&utmt=var",X.H,X.a,X.f)}}};X._link=function(A,B){if(T.I&&A){X._initData();X.a[N].href=X._getLinkerUrl(A,B)}};X._linkByPost=function(A,B){if(T.I&&A&&A.action){X._initData();A.action=X._getLinkerUrl(A.action,B)}};X._setXKey=function(A,Y,B){X.l._setKey(A,Y,B)};X._setXValue=function(A,Y,B){X.l._setValue(A,Y,B)};X._getXKey=function(A,B){return X.l._getKey(A,B)};X._getXValue=function(A,B){return X.l.getValue(A,B)};X._clearXKey=function(A){X.l._clearKey(A)};X._clearXValue=function(A){X.l._clearValue(A)};X._createXObj=function(){X._initData();return new W.Z};X._sendXEvent=function(A){var B="";X._initData();if(X.Q()){B+="&utmt=event&utme="+W.d(X.l.Sc(A))+X.Ia();D.O(B,X.H,X.a,X.f,false,true)}};X._createEventTracker=function(A){X._initData();return new W.ic(A,X)};X._trackEvent=function(A,a,Y,Z){var B=true,c=X.Ab;if(S!=A&&S!=a&&""!=A&&""!=a){c._clearKey(5);c._clearValue(5);B=c._setKey(5,1,A)?B:false;B=c._setKey(5,2,a)?B:false;B=S==Y||c._setKey(5,3,Y)?B:false;B=S==Z||c._setValue(5,1,Z)?B:false;if(B){X._sendXEvent(c)}}else{B=false}return B};X.ad=function(A,a,Y){X._initData();if(X.Q()){var Z=new W.Z;Z._setKey(6,1,a.href);var B=Y?function(){X.rc(A,a)}:undefined;D.O("&utmt=event&utme="+W.d(Z.N())+X.Ia(),X.H,X.a,X.f,false,true,B)}};X.rc=function(A,Y){if(!A){A=X.e.event}var B=true;if(Y.gatcOnclick){B=Y.gatcOnclick(A)}if(B||typeof B=="undefined"){if(!Y.target||Y.target=="_self"){X.e.location=Y.href}else{if(Y.target=="_top"){X.e.top.document.location=Y.href}else{if(Y.target=="_parent"){X.e.parent.document.location=Y.href}}}}};X.oc=function(A){if(!A){A=X.e.event}var B=A.shiftKey||A.ctrlKey||A.altKey;if(!B){if(A.modifiers&&X.e.Event){B=A.modifiers&X.e.Event.CONTROL_MASK||A.modifiers&X.e.Event.SHIFT_MASK||A.modifiers&X.e.Event.ALT_MASK}}return B};X._setDomainName=function(A){T.g=A};X.dd=function(){return T.g};X._addOrganic=function(A,B){W.h(T.fa,new W.cb(A,B))};X._clearOrganic=function(){T.fa=[]};X.hd=function(){return T.fa};X._addIgnoredOrganic=function(A){W.h(T.ea,A)};X._clearIgnoredOrganic=function(){T.ea=[]};X.ed=function(){return T.ea};X._addIgnoredRef=function(A){W.h(T.ga,A)};X._clearIgnoredRef=function(){T.ga=[]};X.fd=function(){return T.ga};X._setAllowHash=function(A){T.pb=A?1:0};X._setCampaignTrack=function(A){T.qa=A?1:0};X._setClientInfo=function(A){T.sa=A?1:0};X._getClientInfo=function(){return T.sa};X._setCookiePath=function(A){T.p=A};X._setTransactionDelim=function(A){T.G=A};X._setCookieTimeout=function(A){T.wb=A};X._setDetectFlash=function(A){T.ua=A?1:0};X._getDetectFlash=function(){return T.ua};X._setDetectTitle=function(A){T.ta=A?1:0};X._getDetectTitle=function(){return T.ta};X._setLocalGifPath=function(A){T.Da=A};X._getLocalGifPath=function(){return T.Da};X._setLocalServerMode=function(){T.D=0};X._setRemoteServerMode=function(){T.D=1};X._setLocalRemoteServerMode=function(){T.D=2};X.gd=function(){return T.D};X._getServiceMode=function(){return T.D};X._setSampleRate=function(A){T.ha=A};X._setSessionTimeout=function(A){T.Tb=A};X._setAllowLinker=function(A){T.I=A?1:0};X._setAllowAnchor=function(A){T.pa=A?1:0};X._setCampNameKey=function(A){T.db=A};X._setCampContentKey=function(A){T.eb=A};X._setCampIdKey=function(A){T.fb=A};X._setCampMediumKey=function(A){T.gb=A};X._setCampNOKey=function(A){T.hb=A};X._setCampSourceKey=function(A){T.ib=A};X._setCampTermKey=function(A){T.jb=A};X._setCampCIdKey=function(A){T.kb=A};X._getAccount=function(){return X.H};X._getVersion=function(){return _gat.lb};X.kd=function(A){T.B=[];if(A){T.B=A}};X.md=function(A){T.Kb=A};X.ld=function(A){T.Ga=A};X._setReferrerOverride=function(A){X.yb=A};X.Ac=function(){return X.yb}};_gat._getTracker=function(B){var A=new _gat.kc(B);return A};if(jQuery.browser.msie){var largestVersion=0;var ua=navigator.userAgent.toLowerCase();var m=ua.match(/msie (\d(\.\d+)?)/g);for(var i=0;i<m.length;i++){var version=parseFloat(m[i].substr("msie ".length));if(version>largestVersion){largestVersion=version}}if(largestVersion){jQuery.browser.version=largestVersion}}if(!jQuery.browser.msie||jQuery.browser.version>=6){document.write('<style type="text/css">    #logo {top:125px;}    #main-content {display:none;}    #think-logo-large {display:none;}    #content-intro {display:none;}    #page-transition-arrow {left:848px}    #page-transition-arrow-bg {background-position:0px 0px; display:none}    #page-transition-arrow-fg {background-position:0px 0px}    </style>');this.Think={animationSpeed:1500,animationPause:800,openingAnimationPlaying:false,init:function(){jQuery.ajaxSetup({type:"POST",cache:false});$().ajaxError(function(D,C,A,B){var E="Failed to retrieve data from the server.\n";if(B){E+="Error: "+B}else{if(C.status!=200){E+=C.status+": "+C.statusText}}Think.error(E)});Think.openingAnimationPlaying=true;Think.originalBackgroundPosition=$("#page-transition-arrow-bg").css("backgroundPosition");$("#page-transition-arrow-bg").css({backgroundPosition:"0px 0px",display:"block"});setTimeout(function(){Think.slideLeft(null,null,function(){Think.slideRight("#think-logo-large","#think-logo-blank",function(){setTimeout(function(){if(Think.xml){jQuery.content.replaceContent(Think.xml)}else{$("#page-transition-arrow-bg").css({backgroundPosition:Think.originalBackgroundPosition})}Think.slideLeft("#content-intro","#think-logo-large",function(){$("#main-content").slideDown(Think.animationSpeed);$("#logo").animate({top:"0px"},Think.animationSpeed,null,function(){Think.openingAnimationPlaying=false})})},Think.animationPause)})})},Think.animationPause);Think.scrollbarFix();jQuery.content.getCurrPageId=function(){return $("body").attr("id").replace("-page",".html")};jQuery.content.getPageId=function(B){var A=B.match(/([^\/#]*?)(#.*)?$/);return(A&&A[1])?A[1]:"index.html"};jQuery.content.generateContentURL=function(A){return"index.php?page="+encodeURIComponent(A)+"&format=xml"};jQuery.content.onError=Think.onDataRetrievalError;jQuery.content.beforeFetchData=Think.beforeFetchData;jQuery.content.onDataRetrieved=Think.contentReceived;jQuery.content.dataFormat="xml";jQuery.content.init()},onDataRetrievalError:function(D,A,C){var B="Sorry, an error occured whilst retrieving the page.<br />"+C;if(!Think.openingAnimationPlaying){Think.contentErrorMsg=B;if(!$("#page-transition-arrow:animated")[0]){Think.showContentError()}}},beforeFetchData:function(){if(!Think.openingAnimationPlaying){Think.xml=null;Think.slideRight("#think-logo-blank","#content-intro",function(){if(Think.xml){Think.showNewContent(Think.xml)}else{if(Think.contentErrorMsg){Think.showContentError()}else{}}});$("#main-content").slideUp()}},showContentError:function(){Think.slideLeft("#content-intro","#think-logo-blank",function(){$("#main-content").slideDown(Think.animationSpeed)});jQuery.msg(Think.contentErrorMsg,"error");Think.contentErrorMsg=null},showNewContent:function(A){jQuery.content.replaceContent(A);Think.xml=null;Think.slideLeft("#content-intro","#think-logo-blank",function(){$("#main-content").slideDown(Think.animationSpeed)})},contentReceived:function(A){if($("#page-transition-arrow:animated")[0]||Think.openingAnimationPlaying){Think.xml=A}else{if(!Think.openingAnimationPlaying){Think.showNewContent(A)}}},slideRight:function(A,B,C){if(B&&A){$(B).css({display:"block",zIndex:0});if(B=="#think-logo-blank"){$("#page-transition-arrow").css({backgroundPosition:"0px -220px",zIndex:3});$(A).css({display:"block",zIndex:1,width:"80px",overflow:"hidden"});$(A).animate({width:"928px"},Think.animationSpeed)}else{if(A=="#think-logo-blank"){$("#page-transition-arrow").css({backgroundPosition:"0px -660px",zIndex:3});$(A).css({display:"block",zIndex:1,width:"60px",overflow:"hidden"});$(A).animate({width:"908px"},Think.animationSpeed)}else{$(A).css({display:"block",zIndex:1,width:"60px",overflow:"hidden"});$(A).animate({width:"908px"},Think.animationSpeed)}}}$("#page-transition-arrow").animate({left:"848px"},Think.animationSpeed,null,function(D){$("#page-transition-arrow").css({backgroundPosition:"0px 0px",zIndex:3});if(typeof C=="function"){C(D)}})},slideLeft:function(A,B,C){if(A&&B){$(A).css({display:"block",zIndex:0});if(B=="#think-logo-blank"){$("#page-transition-arrow").css({backgroundPosition:"0px -660px",zIndex:3});$(B).css({display:"block",zIndex:1,width:"901px",overflow:"hidden"});$(B).animate({width:"53px"},Think.animationSpeed,null,function(){$(B).css({display:"none"})})}else{$(B).css({display:"block",zIndex:1,width:"921px",overflow:"hidden"});$(B).animate({width:"73px"},Think.animationSpeed,null,function(){$(B).css({display:"none"})})}}if(A===null){$("#page-transition-arrow-bg").css({display:"block",backgroundPosition:"0px 0px"})}else{$("#page-transition-arrow-bg").css({display:"block"});$("#page-transition-arrow-fg").css({display:"block",opacity:1}).animate({opacity:0},Think.animationSpeed)}$("#page-transition-arrow").animate({left:"0px"},Think.animationSpeed,null,function(D){if(A!==null){$("#page-transition-arrow-fg").css({backgroundPosition:$("#page-transition-arrow-bg").css("backgroundPosition")})}$("#page-transition-arrow").css({backgroundPosition:"0px 0px",zIndex:3});if(typeof C=="function"){C(D)}})},error:function(A){alert(A)},scrollbarFix:function(){$("#container").css("marginLeft",$("#container").offset().left);$(window).resize(function(){$("#container").css("marginLeft","auto");setTimeout(function(){$("#container").css("marginLeft",$("#container").offset().left)},1)})}};$(Think.init)}$(function(){jQuery.googleAnalytics.init("UA-6369995-1")});