(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)}})})();(function(C){C.ui={plugin:{add:function(E,F,H){var G=C.ui[E].prototype;for(var D in H){G.plugins[D]=G.plugins[D]||[];G.plugins[D].push([F,H[D]])}},call:function(D,F,E){var H=D.plugins[F];if(!H){return }for(var G=0;G<H.length;G++){if(D.options[H[G][0]]){H[G][1].apply(D.element,E)}}}},cssCache:{},css:function(D){if(C.ui.cssCache[D]){return C.ui.cssCache[D]}var E=C('<div class="ui-resizable-gen">').addClass(D).css({position:"absolute",top:"-5000px",left:"-5000px",display:"block"}).appendTo("body");C.ui.cssCache[D]=!!((!(/auto|default/).test(E.css("cursor"))||(/^[1-9]/).test(E.css("height"))||(/^[1-9]/).test(E.css("width"))||!(/none/).test(E.css("backgroundImage"))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(E.css("backgroundColor"))));try{C("body").get(0).removeChild(E.get(0))}catch(F){}return C.ui.cssCache[D]},disableSelection:function(D){D.unselectable="on";D.onselectstart=function(){return false};if(D.style){D.style.MozUserSelect="none"}},enableSelection:function(D){D.unselectable="off";D.onselectstart=function(){return true};if(D.style){D.style.MozUserSelect=""}},hasScroll:function(G,E){var D=/top/.test(E||"top")?"scrollTop":"scrollLeft",F=false;if(G[D]>0){return true}G[D]=1;F=G[D]>0?true:false;G[D]=0;return F}};var B=C.fn.remove;C.fn.remove=function(){C("*",this).add(this).trigger("remove");return B.apply(this,arguments)};function A(E,F,G){var D=C[E][F].getter||[];D=(typeof D=="string"?D.split(/,?\s+/):D);return(C.inArray(G,D)!=-1)}C.widget=function(E,D){var F=E.split(".")[0];E=E.split(".")[1];C.fn[E]=function(J){var H=(typeof J=="string"),I=Array.prototype.slice.call(arguments,1);if(H&&A(F,E,J)){var G=C.data(this[0],E);return(G?G[J].apply(G,I):undefined)}return this.each(function(){var K=C.data(this,E);if(H&&K&&C.isFunction(K[J])){K[J].apply(K,I)}else{if(!H){C.data(this,E,new C[F][E](this,J))}}})};C[F][E]=function(I,H){var G=this;this.widgetName=E;this.widgetBaseClass=F+"-"+E;this.options=C.extend({disabled:false},C[F][E].defaults,H);this.element=C(I).bind("setData."+E,function(L,J,K){return G.setData(J,K)}).bind("getData."+E,function(K,J){return G.getData(J)}).bind("remove",function(){return G.destroy()});this.init()};C[F][E].prototype=C.extend({},C.widget.prototype,D)};C.widget.prototype={init:function(){},destroy:function(){this.element.removeData(this.widgetName)},getData:function(D){return this.options[D]},setData:function(D,E){this.options[D]=E;if(D=="disabled"){this.element[E?"addClass":"removeClass"](this.widgetBaseClass+"-disabled")}},enable:function(){this.setData("disabled",false)},disable:function(){this.setData("disabled",true)}};C.ui.mouse={mouseInit:function(){var D=this;this.element.bind("mousedown."+this.widgetName,function(E){return D.mouseDown(E)});if(C.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},mouseDestroy:function(){this.element.unbind("."+this.widgetName);(C.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},mouseDown:function(F){(this._mouseStarted&&this.mouseUp(F));this._mouseDownEvent=F;var E=this,G=(F.which==1),D=(typeof this.options.cancel=="string"?C(F.target).is(this.options.cancel):false);if(!G||D||!this.mouseCapture(F)){return true}this._mouseDelayMet=!this.options.delay;if(!this._mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){E._mouseDelayMet=true},this.options.delay)}if(this.mouseDistanceMet(F)&&this.mouseDelayMet(F)){this._mouseStarted=(this.mouseStart(F)!==false);if(!this._mouseStarted){F.preventDefault();return true}}this._mouseMoveDelegate=function(H){return E.mouseMove(H)};this._mouseUpDelegate=function(H){return E.mouseUp(H)};C(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);return false},mouseMove:function(D){if(C.browser.msie&&!D.button){return this.mouseUp(D)}if(this._mouseStarted){this.mouseDrag(D);return false}if(this.mouseDistanceMet(D)&&this.mouseDelayMet(D)){this._mouseStarted=(this.mouseStart(this._mouseDownEvent,D)!==false);(this._mouseStarted?this.mouseDrag(D):this.mouseUp(D))}return !this._mouseStarted},mouseUp:function(D){C(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this.mouseStop(D)}return false},mouseDistanceMet:function(D){return(Math.max(Math.abs(this._mouseDownEvent.pageX-D.pageX),Math.abs(this._mouseDownEvent.pageY-D.pageY))>=this.options.distance)},mouseDelayMet:function(D){return this._mouseDelayMet},mouseStart:function(D){},mouseDrag:function(D){},mouseStop:function(D){},mouseCapture:function(D){return true}};C.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);(function(A){A.widget("ui.tabs",{init:function(){this.options.event+=".tabs";this.tabify(true)},setData:function(B,C){if((/^selected/).test(B)){this.select(C)}else{this.options[B]=C;this.tabify()}},length:function(){return this.$tabs.length},tabId:function(B){return B.title&&B.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+A.data(B)},ui:function(C,B){return{options:this.options,tab:C,panel:B}},tabify:function(M){this.$lis=A("li:has(a[href])",this.element);this.$tabs=this.$lis.map(function(){return A("a",this)[0]});this.$panels=A([]);var N=this,D=this.options;this.$tabs.each(function(P,O){if(O.hash&&O.hash.replace("#","")){N.$panels=N.$panels.add(O.hash)}else{if(A(O).attr("href")!="#"){A.data(O,"href.tabs",O.href);A.data(O,"load.tabs",O.href);var R=N.tabId(O);O.href="#"+R;var Q=A("#"+R);if(!Q.length){Q=A(D.panelTemplate).attr("id",R).addClass(D.panelClass).insertAfter(N.$panels[P-1]||N.element);Q.data("destroy.tabs",true)}N.$panels=N.$panels.add(Q)}else{D.disabled.push(P+1)}}});if(M){this.element.addClass(D.navClass);this.$panels.each(function(){var O=A(this);O.addClass(D.panelClass)});if(D.selected===undefined){if(location.hash){this.$tabs.each(function(Q,O){if(O.hash==location.hash){D.selected=Q;if(A.browser.msie||A.browser.opera){var P=A(location.hash),R=P.attr("id");P.attr("id","");setTimeout(function(){P.attr("id",R)},500)}scrollTo(0,0);return false}})}else{if(D.cookie){var I=parseInt(A.cookie("ui-tabs"+A.data(N.element)),10);if(I&&N.$tabs[I]){D.selected=I}}else{if(N.$lis.filter("."+D.selectedClass).length){D.selected=N.$lis.index(N.$lis.filter("."+D.selectedClass)[0])}}}}D.selected=D.selected===null||D.selected!==undefined?D.selected:0;this.$panels.addClass(D.hideClass);this.$lis.removeClass(D.selectedClass);if(D.selected!==null){this.$panels.eq(D.selected).show().removeClass(D.hideClass);this.$lis.eq(D.selected).addClass(D.selectedClass);var J=function(){A(N.element).triggerHandler("tabsshow",[N.ui(N.$tabs[D.selected],N.$panels[D.selected])],D.show)};if(A.data(this.$tabs[D.selected],"load.tabs")){this.load(D.selected,J)}else{J()}}A(window).bind("unload",function(){N.$tabs.unbind(".tabs");N.$lis=N.$tabs=N.$panels=null})}if(D.cache===false){this.$tabs.removeData("cache.tabs")}var C,H,B={"min-width":0,duration:1},E="normal";if(D.fx&&D.fx.constructor==Array){C=D.fx[0]||B,H=D.fx[1]||B}else{C=H=D.fx||B}var G={display:"",overflow:"",height:""};if(!A.browser.msie){G.opacity=""}function L(P,O,Q){O.animate(C,C.duration||E,function(){O.addClass(D.hideClass).css(G);if(A.browser.msie&&C.opacity){O[0].style.filter=""}if(Q){K(P,Q,O)}})}function K(P,Q,O){if(H===B){Q.css("display","block")}Q.animate(H,H.duration||E,function(){Q.removeClass(D.hideClass).css(G);if(A.browser.msie&&H.opacity){Q[0].style.filter=""}A(N.element).triggerHandler("tabsshow",[N.ui(P,Q[0])],D.show)})}function F(P,R,O,Q){R.addClass(D.selectedClass).siblings().removeClass(D.selectedClass);L(P,O,Q)}this.$tabs.unbind(".tabs").bind(D.event,function(){var R=A(this).parents("li:eq(0)"),O=N.$panels.filter(":visible"),Q=A(this.hash);if((R.hasClass(D.selectedClass)&&!D.unselect)||R.hasClass(D.disabledClass)||A(this).hasClass(D.loadingClass)||A(N.element).triggerHandler("tabsselect",[N.ui(this,Q[0])],D.select)===false){this.blur();return false}N.options.selected=N.$tabs.index(this);if(D.unselect){if(R.hasClass(D.selectedClass)){N.options.selected=null;R.removeClass(D.selectedClass);N.$panels.stop();L(this,O);this.blur();return false}else{if(!O.length){N.$panels.stop();var P=this;N.load(N.$tabs.index(this),function(){R.addClass(D.selectedClass).addClass(D.unselectClass);K(P,Q)});this.blur();return false}}}if(D.cookie){A.cookie("ui-tabs"+A.data(N.element),N.options.selected,D.cookie)}N.$panels.stop();if(Q.length){var P=this;N.load(N.$tabs.index(this),O.length?function(){F(P,R,O,Q)}:function(){R.addClass(D.selectedClass);K(P,Q)})}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(A.browser.msie){this.blur()}return D.bookmarkable});if(!(/^click/).test(D.event)){this.$tabs.bind("click.tabs",function(){return false})}},select:function(B){if(typeof B=="string"){B=this.$tabs.index(this.$tabs.filter("[href$="+B+"]")[0])}this.$tabs.eq(B).trigger(this.options.event)},load:function(G,K){var L=this,D=this.options,E=this.$tabs.eq(G),J=E[0],H=K==undefined||K===false,B=E.data("load.tabs");K=K||function(){};if(!B||!H&&A.data(J,"cache.tabs")){K();return }var M=function(N){var O=A(N),P=O.find("*:last");return P.length&&P||O};var C=function(){L.$tabs.filter("."+D.loadingClass).removeClass(D.loadingClass).each(function(){if(D.spinner){M(this).parent().html(M(this).data("label.tabs"))}});L.xhr=null};if(D.spinner){var I=M(J).html();M(J).wrapInner("<em></em>").find("em").data("label.tabs",I).html(D.spinner)}var F=A.extend({},D.ajaxOptions,{url:B,success:function(O,N){A(J.hash).html(O);C();if(D.cache){A.data(J,"cache.tabs",true)}A(L.element).triggerHandler("tabsload",[L.ui(L.$tabs[G],L.$panels[G])],D.load);D.ajaxOptions.success&&D.ajaxOptions.success(O,N);K()}});if(this.xhr){this.xhr.abort();C()}E.addClass(D.loadingClass);setTimeout(function(){L.xhr=A.ajax(F)},0)},url:function(C,B){this.$tabs.eq(C).removeData("cache.tabs").data("load.tabs",B)},destroy:function(){var B=this.options;this.element.unbind(".tabs").removeClass(B.navClass).removeData("tabs");this.$tabs.each(function(){var C=A.data(this,"href.tabs");if(C){this.href=C}var D=A(this).unbind(".tabs");A.each(["href","load","cache"],function(E,F){D.removeData(F+".tabs")})});this.$lis.add(this.$panels).each(function(){if(A.data(this,"destroy.tabs")){A(this).remove()}else{A(this).removeClass([B.selectedClass,B.unselectClass,B.disabledClass,B.panelClass,B.hideClass].join(" "))}})}});A.ui.tabs.defaults={unselect:false,event:"click",disabled:[],cookie:null,spinner:"Loading&#8230;",cache:false,idPrefix:"ui-tabs-",ajaxOptions:{},fx:{duration:250},tabTemplate:'<li><a href="#{href}">#{label}</a></li>',panelTemplate:"<div></div>",navClass:"tabs",selectedClass:"selected",panelClass:"tabs-panel",hideClass:"tabs-hide",loadingClass:"tabs-loading"};A.ui.tabs.getter="length";A.extend(A.ui.tabs.prototype,{rotation:null,rotate:function(C,F){F=F||false;var B=this,E=this.options.selected;function G(){B.rotation=setInterval(function(){E=++E<B.$tabs.length?E:0;B.select(E)},C)}function D(H){if(!H||H.clientX){clearInterval(B.rotation)}}if(C){G();if(!F){this.$tabs.bind(this.options.event,D)}else{this.$tabs.bind(this.options.event,function(){D();E=B.options.selected;G()})}}else{D();this.$tabs.unbind(this.options.event,D)}}})})(jQuery);
/*	SWFObject v2.0 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF&&typeof doc.appendChild!=UNDEF&&typeof doc.replaceChild!=UNDEF&&typeof doc.removeChild!=UNDEF&&typeof doc.cloneNode!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7")}catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always"}catch(e){if(playerVersion[0]==6){fp6Crash=true}}if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX)}catch(e){}}}if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)]}}catch(e){}}}}var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);
/*@cc_on
			ie = true;
			@if (@_win32)
				windows = true;
			@elif (@_mac)
				mac = true;
			@end
		@*/
return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac}}();var onDomLoad=function(){if(!ua.w3cdom){return }addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<script id=__ie_ondomload defer=true src=//:><\/script>");var s=getElementById("__ie_ondomload");if(s){s.onreadystatechange=function(){if(this.readyState=="complete"){this.parentNode.removeChild(this);callDomLoadFunctions()}}}}catch(e){}}if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions()}},10)}if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null)}addLoadEvent(callDomLoadFunctions)}();function callDomLoadFunctions(){if(isDomLoaded){return }if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t)}catch(e){return }}isDomLoaded=true;if(timer){clearInterval(timer);timer=null}var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]()}}function addDomLoadEvent(fn){if(isDomLoaded){fn()}else{domLoadFnArr[domLoadFnArr.length]=fn}}function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false)}else{if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false)}else{if(typeof win.attachEvent!=UNDEF){win.attachEvent("onload",fn)}else{if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn()}}else{win.onload=fn}}}}}function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj)}setVisibility(id,true)}else{if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i])}else{displayAltContent(obj)}}}}else{setVisibility(id,true)}}}function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName.toLowerCase()=="data"){e.setAttribute("src",a[i].nodeValue)}else{e.setAttribute(a[i].nodeName,a[i].nodeValue)}}}var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName.toLowerCase()=="param"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"))}}}obj.parentNode.replaceChild(e,obj)}}function fixObjectLeaks(id){if(ua.ie&&ua.win&&hasPlayerVersion("8.0.0")){win.attachEvent("onunload",function(){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=function(){}}}obj.parentNode.removeChild(obj)}})}}function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId}}else{storedAltContent=abstractAltContent(obj)}if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310"}if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137"}doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";win.attachEvent("onload",function(){obj.parentNode.removeChild(obj)})}createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId)}}function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";win.attachEvent("onload",function(){obj.parentNode.removeChild(obj)})}else{obj.parentNode.replaceChild(abstractAltContent(obj),obj)}}function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML}else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true))}}}}}return ac}function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(typeof attObj.id==UNDEF){attObj.id=id}if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i=="data"){parObj.movie=attObj[i]}else{if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"'}else{if(i!="classid"){att+=" "+i+'="'+attObj[i]+'"'}}}}}var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />'}}el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+">"+par+"</object>";fixObjectLeaks(attObj.id);r=getElementById(attObj.id)}else{if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k=="data"){e.setAttribute("src",attObj[k])}else{if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k])}else{if(k!="classid"){e.setAttribute(k,attObj[k])}}}}}for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l!="movie"){e.setAttribute(l,parObj[l])}}}el.parentNode.replaceChild(e,el);r=e}else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m])}else{if(m!="classid"){o.setAttribute(m,attObj[m])}}}}for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n!="movie"){createObjParam(o,n,parObj[n])}}el.parentNode.replaceChild(o,el);r=o}}return r}function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p)}function getElementById(id){return doc.getElementById(id)}function createElement(el){return doc.createElement(el)}function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10);v[2]=parseInt(v[2],10);return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false}function createCSS(sel,decl){if(ua.ie&&ua.mac){return }var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"))}h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl)}}}function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded){getElementById(id).style.visibility=v}else{createCSS("#"+id,"visibility:"+v)}}return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr||!swfVersionStr){return }var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr;regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:false;regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false)},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom&&isDomLoaded){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o}else{if(typeof n.SetVariable!=UNDEF){r=n}}}}return r},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return }widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att=(typeof attObj==OBJECT)?attObj:{};att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par=(typeof parObj==OBJECT)?parObj:{};if(typeof flashvarsObj==OBJECT){for(var i in flashvarsObj){if(flashvarsObj[i]!=Object.prototype[i]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+i+"="+flashvarsObj[i]}else{par.flashvars=i+"="+flashvarsObj[i]}}}}addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true)}})}else{if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj)})}}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]}},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom&&isDomLoaded){return createSWF(attObj,parObj,replaceElemIdStr)}else{return undefined}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl)}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return q}if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return pairs[i].substring((pairs[i].indexOf("=")+1))}}}return""},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block"}}storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false}}}}}();if(!window.google){window.google={}}if(!window.google["loader"]){window.google["loader"]={};google.loader.ServiceBase="http://www.google.com/uds";google.loader.GoogleApisBase="http://ajax.googleapis.com/ajax";google.loader.ApiKey="notsupplied";google.loader.KeyVerified=true;google.loader.LoadFailure=false;google.loader.AdditionalParams="";(function(){function AS(A){if(A in AN){return AN[A]}return AN[A]=navigator.userAgent.toLowerCase().indexOf(A)!=-1}var AN={};function AJ(){return AS("msie")}function AI(){return AS("safari")||AS("konqueror")}function AE(B,A){var C=function(){};C.prototype=A.prototype;B.G=A.prototype;B.prototype=new C}function AA(B,A){var D=B._JSAPI_boundArgs||[];D=D.concat(Array.prototype.slice.call(arguments,2));if(typeof B._JSAPI_boundSelf!="undefined"){A=B._JSAPI_boundSelf}if(typeof B._JSAPI_boundFn!="undefined"){B=B._JSAPI_boundFn}var C=function(){var E=D.concat(Array.prototype.slice.call(arguments));return B.apply(A,E)};C._JSAPI_boundArgs=D;C._JSAPI_boundSelf=A;C._JSAPI_boundFn=B;return C}function AM(B){var A=new Error(B);A.toString=function(){return this.message};return A}var Ad={};var AR={};var AH={};var d={};var AU=null;var AD=false;function k(B,A,E){var D=Ad[":"+B];if(!D){throw AM("Module: '"+B+"' not found!")}else{if(E&&!E.language&&E.locale){E.language=E.locale}var C=E&&E.callback!=null;if(C&&!D.l()){throw AM("Module: '"+B+"' must be loaded before DOM onLoad!")}else{if(C){if(D.h(A,E)){window.setTimeout(E.callback,0)}else{D.i(A,E)}}else{if(!D.h(A,E)){D.i(A,E)}}}}}function Y(B,A){if(A){Z(B)}else{AO(window,"load",B)}}function AO(B,A,D){if(B.addEventListener){B.addEventListener(A,D,false)}else{if(B.attachEvent){B.attachEvent("on"+A,D)}else{var C=B["on"+A];if(C!=null){B["on"+A]=s([D,C])}B["on"+A]=D}}}function s(A){return function(){for(var B=0;B<A.length;B++){A[B]()}}}var AX=[];function Z(A){if(AX.length==0){AO(window,"load",AQ);if(!AJ()&&!AI()&&AS("mozilla")||window.opera){window.addEventListener("DOMContentLoaded",AQ,false)}else{if(AJ()){window.setTimeout(AG,10)}else{if(AI()){window.setTimeout(AF,10)}}}}AX.push(A)}function AG(){try{if(AX.length>0){document.documentElement.doScroll("left")}}catch(A){window.setTimeout(AG,10);return }AQ()}var h={loaded:true,complete:true};function AF(){if(h[document.readyState]){AQ()}else{if(AX.length>0){window.setTimeout(AF,10)}}}function AQ(){for(var A=0;A<AX.length;A++){AX[A]()}AX.length=0}function a(B){var A=window.location.href;var F;var E=A.length;for(var D in B){var C=A.indexOf(D);if(C!=-1&&C<E){F=D;E=C}}AU=F?B[F]:null}function AV(B,A,E){if(E){var D;if(B=="script"){D=document.createElement("script");D.type="text/javascript";D.src=A}else{if(B=="css"){D=document.createElement("link");D.type="text/css";D.href=A;D.rel="stylesheet"}}var C=document.getElementsByTagName("head")[0];if(!C){C=document.body.parentNode.appendChild(document.createElement("head"))}C.appendChild(D)}else{if(B=="script"){document.write('<script src="'+A+'" type="text/javascript"><\/script>')}else{if(B=="css"){document.write('<link href="'+A+'" type="text/css" rel="stylesheet"></link>')}}}}function Ab(B,A){var E=B.split(/\./);var D=window;for(var C=0;C<E.length-1;C++){if(!D[E[C]]){D[E[C]]={}}D=D[E[C]]}D[E[E.length-1]]=A}function l(B,A,C){B[A]=C}function c(A){AR=A}function b(B){for(var A in B){if(typeof A=="string"&&A&&A.charAt(0)==":"&&!Ad[A]){Ad[A]=new AZ(A.substring(1),B[A])}}}Ab("google.load",k);Ab("google.setOnLoadCallback",Y);Ab("google.loader.writeLoadTag",AV);Ab("google.loader.setApiKeyLookupMap",a);Ab("google.loader.callbacks",AH);Ab("google.loader.eval",d);Ab("google.loader.rfm",c);Ab("google.loader.rpl",b);Ab("google_exportSymbol",Ab);Ab("google_exportProperty",l);function Ac(A){this.a=A;this.p={};this.b={};this.initialLoad=true}Ac.prototype.d=function(B,A){var C="";if(A!=undefined){if(A.language!=undefined){C+="&hl="+encodeURIComponent(A.language)}if(A.nocss!=undefined){C+="&output="+encodeURIComponent("nocss="+A.nocss)}if(A.nooldnames!=undefined){C+="&nooldnames="+encodeURIComponent(A.nooldnames)}if(A.packages!=undefined){C+="&packages="+encodeURIComponent(A.packages)}if(A.callback!=null){C+="&async=2"}if(A.other_params!=undefined){C+="&"+A.other_params}}if(!this.initialLoad){C+="&output="+encodeURIComponent("noinitial=true");if(google[this.a]&&google[this.a].JSHash){C+="&sig="+encodeURIComponent(google[this.a].JSHash)}}if(AU!=null&&!AD){C+="&key="+encodeURIComponent(AU);AD=true}return google.loader.ServiceBase+"/?file="+this.a+"&v="+B+google.loader.AdditionalParams+C};Ac.prototype.n=function(B){var A=null;if(B){A=B.packages}var E=null;if(A){if(typeof A=="string"){E=[B.packages]}else{if(A.length){E=[];for(var D=0;D<A.length;D++){if(typeof A[D]=="string"){E.push(A[D].replace(/^\s*|\s*$/,"").toLowerCase())}}}}}if(!E){E=["default"]}var C=[];for(var D=0;D<E.length;D++){if(!this.p[":"+E[D]]){C.push(E[D])}}return C};Ac.prototype.i=function(H,G){var F=this.n(G);var E=G&&G.callback!=null;if(E){var D=new AP(G.callback)}for(var C=F.length-1;C>=0;C--){var B=F[C];if(this.b[":"+B]){F.splice(C,1)}else{this.b[":"+B]=[]}if(E){D.s(B);this.b[":"+B].push(D)}}if(F.length){if(G&&G.packages){G.packages=F.sort().join(",")}if(!G&&AR[":"+this.a]!=null&&AR[":"+this.a].versions[":"+H]!=null&&!google.loader.AdditionalParams&&this.initialLoad){var A=AR[":"+this.a];google[this.a]=google[this.a]||{};for(var I in A.properties){if(I&&I.charAt(0)==":"){google[this.a][I.substring(1)]=A.properties[I]}}AV("script",google.loader.ServiceBase+A.path+A.js,E);if(A.css){AV("css",google.loader.ServiceBase+A.path+A.css,E)}}else{AV("script",this.d(H,G),E)}if(this.initialLoad){this.initialLoad=false}}};Ac.prototype.g=function(B){for(var A=0;A<B.components.length;A++){this.p[":"+B.components[A]]=true;var D=this.b[":"+B.components[A]];if(D){for(var C=0;C<D.length;C++){D[C].u(B.components[A])}delete this.b[":"+B.components[A]]}}AT("hl",this.a)};Ac.prototype.h=function(B,A){return this.n(A).length==0};Ac.prototype.l=function(){return true};function AP(A){this.t=A;this.j={};this.k=0}AP.prototype.s=function(A){this.k++;this.j[":"+A]=true};AP.prototype.u=function(A){if(this.j[":"+A]){this.j[":"+A]=false;this.k--;if(this.k==0){window.setTimeout(this.t,0)}}};function e(A){Ad[":"+A.module].g(A)}Ab("google.loader.loaded",e);function Aa(B,A,G,F,E,D,C){this.a=B;this.A=A;this.z=G;this.o=F;this.r=E;this.w=D;this.q=C||{};this.e=false;this.m=false;this.f=[];AH[this.a]=AA(this.g,this)}AE(Aa,Ac);Aa.prototype.i=function(B,A){var C=A&&A.callback!=null;if(C){this.f.push(A.callback);A.callback="google.loader.callbacks."+this.a}else{this.e=true}AV("script",this.d(B,A),C)};Aa.prototype.h=function(B,A){var C=A&&A.callback!=null;if(C){return this.m}else{return this.e}};Aa.prototype.g=function(){this.m=true;for(var A=0;A<this.f.length;A++){window.setTimeout(this.f[A],0)}this.f=[]};Aa.prototype.d=function(B,A){var G="";if(this.o!=null){G+="&"+this.o+"="+encodeURIComponent(AU?AU:google.loader.ApiKey)}if(this.r!=null){G+="&"+this.r+"="+encodeURIComponent(B)}var F=this.A;if(A!=null){for(var E in A){if(this.q[":"+E]!=null){var D=A[E];var C=this.q[":"+E];if(typeof C=="string"){G+="&"+C+"="+encodeURIComponent(D)}else{G+="&"+C(D)}}else{if(E=="other_params"){G+="&"+A[E]}else{if(E=="base_domain"){F=F.replace(/^[^\/]*/,A[E])}}}}}google[this.a]={};if(!this.z&&G!=""){G="?"+G.substring(1)}AT("el",this.a);return"http://"+F+G};Aa.prototype.l=function(){return this.w};function AZ(B,A){this.a=B;this.c=A;this.e=false}AE(AZ,Ac);AZ.prototype.i=function(B,A){this.e=true;AV("script",this.d(B,A),false)};AZ.prototype.h=function(B,A){return this.e};AZ.prototype.g=function(){};AZ.prototype.d=function(B,A){if(!this.c.versions[":"+B]){if(this.c.aliases){var E=this.c.aliases[":"+B];if(E){B=E}}if(!this.c.versions[":"+B]){throw AM("Module: '"+this.a+"' with version '"+B+"' not found!")}}var D=A&&A.uncompressed?"uncompressed":"compressed";var C=google.loader.GoogleApisBase+"/libs/"+this.a+"/"+B+"/"+this.c.versions[":"+B][D];AT("el",this.a);return C};AZ.prototype.l=function(){return false};function AY(){}var AK=AY.v=false;var AC=AY.B=5;var AW=AY.F=[];var AB=AY.D=function(){if(!AK){AO(window,"unload",AL);AK=(AY.v=true)}};var AT=AY.record=function(B,A){AB();var D=B+(A?"|"+A:"");AW.push("r"+AW.length+"="+encodeURIComponent(D));var C=AW.length>AC?0:15000;window.setTimeout(AL,C)};var AL=AY.C=function(){if(AW.length){var A=new Image;A.src=google.loader.ServiceBase+"/stats?"+AW.join("&")+"&nocache="+Number(new Date);AW.length=0}};Ab("google.loader.recordStat",AT);Ad[":search"]=new Ac("search");Ad[":feeds"]=new Ac("feeds");Ad[":language"]=new Ac("language");Ad[":elements"]=new Ac("elements");Ad[":maps"]=new Aa("maps","maps.google.com/maps?file=googleapi",true,"key","v",true,{":language":"hl",":callback":function(A){return"callback="+encodeURIComponent(A)+"&async=2"}});Ad[":gdata"]=new Aa("gdata","gd.google.com/gd/api?file=gdata.js",true,"key","v",true,{":callback":"callback"});Ad[":sharing"]=new Aa("sharing","www.google.com/s2/sharing/js",false,"key","v",false,{":locale":"hl"});Ad[":annotations"]=new Aa("annotations","www.google.com/reviews/scripts/annotations_bootstrap.js",false,"key","v",true,{":language":"hl",":country":"gl",":callback":"callback"});Ad[":visualization"]=new Ac("visualization");Ad[":books"]=new Aa("books","books.google.com/books/api.js",false,"key","v",true,{":language":"hl",":callback":"callback"});Ad[":earth"]=new Ac("earth")})();google.loader.rpl({":scriptaculous":{versions:{":1.8.1":{uncompressed:"scriptaculous.js",compressed:"scriptaculous.js"}},aliases:{":1.8":"1.8.1",":1":"1.8.1"}},":mootools":{versions:{":1.11":{uncompressed:"mootools.js",compressed:"mootools-yui-compressed.js"}},aliases:{":1":"1.11"}},":prototype":{versions:{":1.6.0.2":{uncompressed:"prototype.js",compressed:"prototype.js"}},aliases:{":1":"1.6.0.2",":1.6":"1.6.0.2"}},":jquery":{versions:{":1.2.3":{uncompressed:"jquery.js",compressed:"jquery.min.js"},":1.2.6":{uncompressed:"jquery.js",compressed:"jquery.min.js"}},aliases:{":1":"1.2.6",":1.2":"1.2.6"}},":dojo":{versions:{":1.1.1":{uncompressed:"dojo/dojo.xd.js.uncompressed.js",compressed:"dojo/dojo.xd.js"}},aliases:{":1":"1.1.1",":1.1":"1.1.1"}}})}if(window.google!=undefined&&window.google["loader"]!=undefined){if(!window.google["search"]){window.google["search"]={};google.search.CurrentLocale="en";google.search.ShortDatePattern="MDY";google.search.Version="1.0";google.search.NoOldNames=false;google.search.JSHash="c8b58b9f22a4c2eca4342449dba29b6f";google.loader.ApiKey="notsupplied";google.loader.KeyVerified=true;google.loader.LoadFailure=false}google.loader.writeLoadTag("script",google.loader.ServiceBase+"/api/search/1.0/en/c8b58b9f22a4c2eca4342449dba29b6f/default.I.js",false)}window._uds_nbw_donotrepair=true;function GSnewsBar(B,A){this.br_AgentContains_cache_={};if(this.br_IsIE()){this.startupDelay=50;this.ieMode=true}else{this.startupDelay=0;this.ieMode=false}this.CL_RESULTDIV="resultDiv_gsnb";this.CL_RESULTDIV_BOLD="resultDiv_gsnb resultDivBold_gsnb";this.linkContainerClass=this.CL_RESULTDIV;if(this.br_IsNav()&&(this.br_IsWin()||this.br_IsMac())){if(this.br_IsMac()){this.linkContainerClass=this.CL_RESULTDIV_BOLD}this.shortOpacityMode=true}else{this.shortOpacityMode=false}this.setGlobals();this.processArguments(B,A);this.adjustGlobals();this.buildSuperStructure();this.buildSearchControl();if(!this.verticalMode){this.resultsBox.onmouseover=this.methodClosure(this,GSnewsBar.prototype.setMouseIn,[null]);this.resultsBox.onmouseout=this.methodClosure(this,GSnewsBar.prototype.setMouseOut,[null]);if(this.currentResultRoot){this.currentResultRoot.onmouseover=this.methodClosure(this,GSnewsBar.prototype.setMouseIn,[null]);this.currentResultRoot.onmouseout=this.methodClosure(this,GSnewsBar.prototype.setMouseOut,[null])}}if(this.ieMode||this.startupDelay!=0){var C=this.methodClosure(this,GSnewsBar.prototype.bootComplete,[null]);setTimeout(C,this.startupDelay)}else{this.bootComplete()}}GSnewsBar.prototype.bootComplete=function(){if(this.autoExecuteMode){this.cycleTimeClosure=this.methodClosure(this,GSnewsBar.prototype.cycleTimeout,[null]);if(this.executeList.length==1||this.cycleTime==GSnewsBar.CYCLE_TIME_MANUAL){this.switchToListItem(0)}else{this.cycleTimeout()}}};GSnewsBar.CYCLE_TIME_EXTRA_SHORT=3000;GSnewsBar.CYCLE_TIME_SHORT=10000;GSnewsBar.CYCLE_TIME_MEDIUM=15000;GSnewsBar.CYCLE_TIME_LONG=30000;GSnewsBar.CYCLE_TIME_MANUAL=3000000;GSnewsBar.ONE_SECOND=1000;GSnewsBar.THREE_SECONDS=3000;GSnewsBar.FIVE_SECONDS=5000;GSnewsBar.TEN_SECONDS=10000;GSnewsBar.CYCLE_MODE_RANDOM=1;GSnewsBar.CYCLE_MODE_LINEAR=2;GSnewsBar.MAX_CACHE_LIFETIME=50;GSnewsBar.MIN_CACHE_LIFETIME=1;GSnewsBar.DEFAULT_CACHE_LIFETIME=1;GSnewsBar.MAX_ERROR_COUNT=1;GSnewsBar.DEFAULT_QUERY="Google";GSnewsBar.MIN_STARTUP_DELAY=50;GSnewsBar.MAX_STARTUP_DELAY=2000;GSnewsBar.RESULT_STYLE_EXPANDED=1;GSnewsBar.RESULT_STYLE_COMPRESSED=2;GSnewsBar.prototype.processArguments=function(D,E){this.totalFailures=0;this.retries=0;this.barRoot=D;this.statusRoot=null;this.autoExecuteMode=false;this.executeList=new Array();this.cycleTime=GSnewsBar.CYCLE_TIME_MANUAL;this.cycleMode=GSnewsBar.CYCLE_MODE_LINEAR;this.cycleNext=0;this.cycleTimer=null;this.verticalMode=true;this.fadeTimer=null;this.mouseInResultArea=false;this.mouseOutCallFade=false;this.linkTarget=GSearch.LINK_TARGET_SELF;this.currentResultRoot=null;this.currentResultContainer=null;this.cacheLifetime=GSnewsBar.DEFAULT_CACHE_LIFETIME;this.fadeIncrement=10;this.fadeTime=400;this.fadeInCallback=GSnewsBar.methodCallback(this,GSnewsBar.prototype.fadeIn);this.fadeOutCallback=GSnewsBar.methodCallback(this,GSnewsBar.prototype.fadeOut);this.fadeOpacity=0;this.resultSetSize=GSearch.SMALL_RESULTSET;this.ST_TITLE="In the news";this.resultsBoxClass=this.CL_RESULTSBOX_EXPANDED;this.verticalMode=true;if(E){if(E.horizontal&&E.horizontal==true){this.verticalMode=false}else{this.verticalMode=true}if(E.largeResultSet&&E.largeResultSet==true){this.resultSetSize=GSearch.LARGE_RESULTSET}else{this.resultSetSize=GSearch.SMALL_RESULTSET}if(E.resultStyle){if(E.resultStyle==GSnewsBar.RESULT_STYLE_EXPANDED){this.resultsBoxClass=this.CL_RESULTSBOX_EXPANDED}else{if(E.resultStyle==GSnewsBar.RESULT_STYLE_COMPRESSED){this.resultsBoxClass=this.CL_RESULTSBOX_COMPRESSED}}}if(E.linkTarget){this.linkTarget=E.linkTarget}if(E.currentResult&&!this.verticalMode){this.currentResultRoot=E.currentResult;this.removeChildren(this.currentResultRoot)}if(E.title){this.ST_TITLE=E.title}if(E.startupDelay&&E.startupDelay>=GSnewsBar.MIN_STARTUP_DELAY&&E.startupDelay<=GSnewsBar.MAX_STARTUP_DELAY){this.startupDelay=E.startupDelay}if(E.cacheLifetime&&E.cacheLifetime>=GSnewsBar.MIN_CACHE_LIFETIME&&E.cacheLifetime<=GSnewsBar.MAX_CACHE_LIFETIME){this.cacheLifetime=E.cacheLifetime}if(E.autoExecuteList){if(E.autoExecuteList.cycleTime){var A=E.autoExecuteList.cycleTime;if(A==GSnewsBar.CYCLE_TIME_EXTRA_SHORT||A==GSnewsBar.CYCLE_TIME_SHORT||A==GSnewsBar.CYCLE_TIME_MEDIUM||A==GSnewsBar.CYCLE_TIME_LONG||A==GSnewsBar.CYCLE_TIME_MANUAL){this.cycleTime=A}}if(!this.verticalMode){switch(this.cycleTime){case GSnewsBar.CYCLE_TIME_EXTRA_SHORT:case GSnewsBar.CYCLE_TIME_SHORT:this.cycleTime=GSnewsBar.THREE_SECONDS;break;case GSnewsBar.CYCLE_TIME_MEDIUM:case GSnewsBar.CYCLE_TIME_MANUAL:this.cycleTime=GSnewsBar.FIVE_SECONDS;break;case GSnewsBar.CYCLE_TIME_LONG:this.cycleTime=GSnewsBar.TEN_SECONDS;break}if(this.ieMode){this.cycleTime+=GSnewsBar.ONE_SECOND}}if(E.autoExecuteList.cycleMode){var B=E.autoExecuteList.cycleMode;if(B==GSnewsBar.CYCLE_MODE_RANDOM||B==GSnewsBar.CYCLE_MODE_LINEAR){this.cycleMode=B}}if(E.autoExecuteList.executeList&&E.autoExecuteList.executeList.length>0){for(var C=0;C<E.autoExecuteList.executeList.length;C++){this.executeList.push(this.newListItem(E.autoExecuteList.executeList[C]))}this.autoExecuteMode=true;this.currentIndex=0;if(E.autoExecuteList.statusRoot){this.statusRoot=E.autoExecuteList.statusRoot}}}if(!this.verticalMode&&this.autoExecuteMode==false){this.autoExecuteMode=true;this.currentIndex=0;this.cycleTime=GSnewsBar.THREE_SECONDS;this.executeList.push(this.newListItem(GSnewsBar.DEFAULT_QUERY))}}};GSnewsBar.prototype.testForDefaultQuery=function(){if(this.executeList.length==1&&this.executeList[0].query==GSnewsBar.DEFAULT_QUERY){return true}else{return false}};GSnewsBar.prototype.resetAutoExecuteListItems=function(B){if(this.autoExecuteMode&&B.length>0){this.clearCycleTimer();this.clearFadeTimer();if(this.statusRoot){this.removeChildren(this.statusRoot)}this.executeList=new Array();for(var A=0;A<B.length;A++){this.executeList.push(this.newListItem(B[A]))}this.currentIndex=0;if(this.statusRoot){this.populateStatusRoot()}if(this.executeList.length==1){this.switchToListItem(0)}else{this.cycleTimeout()}}};GSnewsBar.prototype.adjustGlobals=function(){if(this.verticalMode==false){this.resultsBoxClass=this.CL_RESULTSBOX_COMPRESSED}};GSnewsBar.prototype.setGlobals=function(){this.CL_NEWSBARBOX="newsBarBox_gsnb";this.CL_NEWSBARBOXFULL="newsBarBox_gsnb full_gsnb";this.CL_NEWSBARBOXEMPTY="newsBarBox_gsnb empty_gsnb";this.CL_NEWSBARINNERBOX="newsBarInnerBox_gsnb";this.CL_VERTICAL="vertical_gsnb";this.CL_HORIZONTAL="horizontal_gsnb";this.CL_TITLEBOX="titleBox_gsnb";this.CL_RESULTSBOX_EXPANDED="resultsBox_gsnb expanded_gsnb";this.CL_RESULTSBOX_COMPRESSED="resultsBox_gsnb compressed_gsnb";this.CL_BRANDINGBOX="brandingBox_gsnb";this.CL_SNIPPET="snippet_gsnb";this.CL_STATUSBOXROOT="statusBoxRoot_gsnb";this.CL_STATUSBOX="statusBox_gsnb";this.CL_STATUSBOX_ONEITEM="statusBox_gsnb oneitem_gsnb";this.CL_STATUSITEMSEP="statusItemSep_gsnb";this.CL_STATUSITEM="statusItem_gsnb";this.CL_STATUSITEM_SELECTED="statusItem_gsnb statusItemSelected_gsnb"};GSnewsBar.prototype.getBarBoxClass=function(B){var A=B?this.CL_NEWSBARBOXFULL:this.CL_NEWSBARBOXEMPTY;if(this.verticalMode){A+=" "+this.CL_VERTICAL}else{A+=" "+this.CL_HORIZONTAL}return A};GSnewsBar.prototype.buildSuperStructure=function(){this.removeChildren(this.barRoot);this.barBox=this.createDiv(null,this.CL_NEWSBARBOX);this.barRoot.appendChild(this.barBox);this.innerBox=this.createDiv(null,this.CL_NEWSBARINNERBOX);this.barBox.appendChild(this.innerBox);this.titleBox=this.createDiv(this.ST_TITLE,this.CL_TITLEBOX);this.innerBox.appendChild(this.titleBox);if(this.statusRoot==null){this.statusRoot=this.createDiv(null,this.CL_STATUSBOXROOT);this.innerBox.appendChild(this.statusRoot)}this.populateStatusRoot();this.resultsBox=this.createDiv(null,this.resultsBoxClass);this.innerBox.appendChild(this.resultsBox);if(this.currentResultRoot){this.currentResultContainer=this.createDiv(null,this.CL_RESULTSBOX_EXPANDED);this.currentResultRoot.appendChild(this.currentResultContainer)}var B=this.createDiv(null,this.CL_BRANDINGBOX);this.barBox.appendChild(B);var A=GSearch.HORIZONTAL_BRANDING;if(this.verticalMode==false){A=GSearch.VERTICAL_BRANDING}GSearch.getBranding(B,A);this.cssSetClass(this.barBox,this.CL_NEWSBARBOXEMPTY)};GSnewsBar.prototype.buildSearchControl=function(){this.ns=new GnewsSearch();this.ns.setResultSetSize(this.resultSetSize);this.ns.setLinkTarget(this.linkTarget);this.ns.setSearchCompleteCallback(this,GSnewsBar.prototype.searchComplete,[true]);this.nsBypass=new GnewsSearch();this.nsBypass.setResultSetSize(this.resultSetSize);this.nsBypass.setLinkTarget(this.linkTarget);this.nsBypass.setSearchCompleteCallback(this,GSnewsBar.prototype.searchComplete,[false])};GSnewsBar.prototype.execute=function(A){if(this.verticalMode==false){this.clearFadeTimer();this.resetAutoExecuteListItems([A])}else{this.populateStatusRoot();this.nsBypass.execute(A)}};GSnewsBar.prototype.executeInternal=function(A){this.ns.execute(A)};GSnewsBar.prototype.clearAllResults=function(){this.cssSetClass(this.barBox,this.CL_NEWSBARBOXEMPTY)};GSnewsBar.prototype.searchComplete=function(A){var G;var I=false;var H=null;if(A){H=this.executeList[this.currentIndex];if(H.cacheCount==0){I=true;H.results=new Array()}G=this.ns}else{G=this.nsBypass}if(G.results&&G.results.length>0){this.cssSetClass(this.barBox,this.getBarBoxClass(true));this.removeChildren(this.resultsBox);if(!this.verticalMode){this.results=new Array();this.currentResult=0}for(var E=0;E<G.results.length;E++){if(I){H.cacheCount=1;H.results.push(GSnewsBar.cloneObject(G.results[E]));H.errorCount=0}var F=G.results[E];if(this.verticalMode){var B=this.createDiv(null,this.CL_RESULTDIV);var D=F.html.cloneNode(true);this.resultsBox.appendChild(B);B.appendChild(D)}else{this.results[E]=F}}if(!this.verticalMode){this.linkContainer=this.createDiv(null,this.linkContainerClass);this.resultsBox.appendChild(this.linkContainer);this.link=document.createElement("a");this.link.target=this.linkTarget;this.snippet=this.createSpan("&nbsp;",this.CL_SNIPPET);this.setHorizontalResultContent(this.results[this.currentResult]);this.setOpacity(this.linkContainer,0);this.linkContainer.appendChild(this.snippet);this.linkContainer.appendChild(this.link);this.fadeOpacity=0;this.fadeIn()}}else{this.cssSetClass(this.barBox,this.getBarBoxClass(true));if(this.executeList.length==1||this.cycleTime==GSnewsBar.CYCLE_TIME_MANUAL){if(this.retries>1){if(this.testForDefaultQuery()){this.clearCycleTimer();this.clearFadeTimer();if(this.statusRoot){this.removeChildren(this.statusRoot)}return }else{this.resetAutoExecuteListItems([GSnewsBar.DEFAULT_QUERY]);this.retries=0}}else{this.totalFailures++;this.retries++}this.switchToListItem(0)}else{if(I){this.totalFailures++;H.errorCount++;if(G.completionStatus==200){H.errorCount=GSnewsBar.MAX_ERROR_COUNT+1}if(H.errorCount>GSnewsBar.MAX_ERROR_COUNT){var C=new Array();for(var E=0;E<this.executeList.length;E++){if(this.executeList[E].errorCount<=GSnewsBar.MAX_ERROR_COUNT){C.push(this.executeList[E].query)}}if(C.length==0){C.push(GSnewsBar.DEFAULT_QUERY)}this.resetAutoExecuteListItems(C)}}this.cycleTimeout()}}};GSnewsBar.prototype.setHorizontalResultContent=function(A){var B=A.unescapedUrl;var C=A.titleNoFormatting;var E=A.publisher+"&nbsp;-&nbsp; ";this.link.href=B;this.link.innerHTML=C;this.snippet.innerHTML=E;if(this.currentResultContainer){this.removeChildren(this.currentResultContainer);var F=this.createDiv(null,this.CL_RESULTDIV);var D=A.html.cloneNode(true);F.appendChild(D);this.currentResultContainer.appendChild(F)}};GSnewsBar.prototype.clearCycleTimer=function(){if(this.cycleTimer){clearTimeout(this.cycleTimer);this.cycleTimer=null}};GSnewsBar.prototype.clearFadeTimer=function(){if(this.fadeTimer){clearTimeout(this.fadeTimer);this.fadeTimer=null}};GSnewsBar.prototype.setMouseIn=function(){this.mouseInResultArea=true};GSnewsBar.prototype.setMouseOut=function(){this.mouseInResultArea=false;if(this.mouseOutCallFade){this.fadeOut()}};GSnewsBar.prototype.cycleTimeout=function(){if(this.executeList.length==1||this.cycleTime==GSnewsBar.CYCLE_TIME_MANUAL){this.switchToListItem(0)}else{var B=0;if(this.cycleMode==GSnewsBar.CYCLE_MODE_RANDOM){var A=this.executeList.length-1;B=Math.round(A*Math.random())}else{if(this.cycleMode==GSnewsBar.CYCLE_MODE_LINEAR){B=this.cycleNext;this.cycleNext++;if(this.cycleNext>=this.executeList.length){this.cycleNext=0}}}this.switchToListItem(B);if(this.verticalMode){this.clearCycleTimer();this.cycleTimer=setTimeout(this.cycleTimeClosure,this.cycleTime)}}};GSnewsBar.prototype.fadeIn=function(){if(this.ieMode){this.fadeTimer=setTimeout(this.fadeOutCallback,this.cycleTime)}else{this.fadeOpacity=Math.min(this.fadeOpacity+this.fadeIncrement/this.fadeTime,1);var A=this.fadeOpacity;if(A>=1&&this.shortOpacityMode){A=0.9999999}this.setOpacity(this.linkContainer,A);if(this.fadeOpacity<1){this.fadeTimer=setTimeout(this.fadeInCallback,this.fadeIncrement)}else{this.fadeTimer=setTimeout(this.fadeOutCallback,this.cycleTime)}}};GSnewsBar.prototype.fadeOut=function(){if(this.mouseInResultArea){this.mouseOutCallFade=true;return }if(this.ieMode){this.fadeOpacity=0}else{this.mouseOutCallFade=false;this.fadeOpacity=Math.max(this.fadeOpacity-this.fadeIncrement/this.fadeTime,0);this.setOpacity(this.linkContainer,this.fadeOpacity);if(this.fadeOpacity>1){this.fadeOpacity=1}}if(this.fadeOpacity>0){this.fadeTimer=window.setTimeout(this.fadeOutCallback,this.fadeIncrement)}else{if(this.currentResult+1<this.results.length){this.currentResult++;this.setHorizontalResultContent(this.results[this.currentResult]);this.fadeIn()}else{this.cycleTimeout()}}};GSnewsBar.prototype.newListItem=function(B){var A=new Object();A.node=null;A.query=B;A.results=new Array();A.errorCount=0;A.cacheCount=0;return A};GSnewsBar.prototype.switchToListItem=function(D){if(D==-1){return false}if(this.executeList[this.currentIndex].node){this.cssSetClass(this.executeList[this.currentIndex].node,this.CL_STATUSITEM)}this.currentIndex=D;if(this.executeList[this.currentIndex].node){this.cssSetClass(this.executeList[this.currentIndex].node,this.CL_STATUSITEM_SELECTED)}var E=this.executeList[this.currentIndex].query;var A=false;var C=null;C=this.executeList[this.currentIndex];if(C.cacheCount==0||C.cacheCount>this.cacheLifetime){C.cacheCount=0;this.executeInternal(this.executeList[this.currentIndex].query)}else{C.cacheCount++;this.ns.results=new Array();for(var B=0;B<C.results.length;B++){this.ns.results.push(C.results[B])}this.searchComplete(true)}return false};GSnewsBar.prototype.populateStatusRoot=function(){this.removeChildren(this.statusRoot);var F=this.CL_STATUSBOX;if(this.executeList.length==1){F=this.CL_STATUSBOX_ONEITEM}this.statusBox=this.createDiv(null,F);this.statusRoot.appendChild(this.statusBox);if(this.executeList.length>0){for(var D=0;D<this.executeList.length;D++){var E=this.executeList[D];var B=E.query;var A;if(this.verticalMode){A=this.createClickLink(B,null,this.CL_STATUSITEM);A.onclick=this.methodClosure(this,GSnewsBar.prototype.switchToListItem,[D])}else{var C="http://news.google.com/nwshp?source=uds&q="+encodeURIComponent(B);A=this.createClickLink(B,C,this.CL_STATUSITEM,GSearch.strings["more-results"]+": "+B)}E.node=A;this.statusBox.appendChild(A);if(D+1<this.executeList.length){if(this.verticalMode){this.statusBox.appendChild(this.createSpan("  ",this.CL_STATUSITEMSEP))}}}}};GSnewsBar.methodCallback=function(A,B){return function(){return B.apply(A,arguments)}};GSnewsBar.prototype.methodClosure=function(A,C,B){return function(){return C.apply(A,B)}};GSnewsBar.prototype.createDiv=function(A,C){var B=document.createElement("div");if(A){B.innerHTML=A}if(C){B.className=C}return B};GSnewsBar.prototype.createSpan=function(A,C){var B=document.createElement("span");if(A){B.innerHTML=A}if(C){B.className=C}return B};GSnewsBar.prototype.removeChildren=function(A){while(A.firstChild){A.removeChild(A.firstChild)}};GSnewsBar.prototype.removeChild=function(A,B){A.removeChild(B)};GSnewsBar.prototype.cssSetClass=function(B,A){B.className=A};GSnewsBar.prototype.createClickLink=function(E,D,C,A){var B=document.createElement("a");if(D){B.href=D;B.target=this.linkTarget}else{B.href="_nolink_"}B.appendChild(document.createTextNode(E));if(C){B.className=C}if(A){B.title=A}return B};GSnewsBar.prototype.br_AgentContains_=function(A){if(A in this.br_AgentContains_cache_){return this.br_AgentContains_cache_[A]}return this.br_AgentContains_cache_[A]=(navigator.userAgent.toLowerCase().indexOf(A)!=-1)};GSnewsBar.prototype.br_IsIE=function(){return this.br_AgentContains_("msie")};GSnewsBar.prototype.br_IsKonqueror=function(){return this.br_AgentContains_("konqueror")};GSnewsBar.prototype.br_IsOpera=function(){return this.br_AgentContains_("opera")};GSnewsBar.prototype.br_IsSafari=function(){return this.br_AgentContains_("safari")||this.br_IsKonqueror()};GSnewsBar.prototype.br_IsNav=function(){return !this.br_IsIE()&&!this.br_IsSafari()&&this.br_AgentContains_("mozilla")};GSnewsBar.prototype.br_IsWin=function(){return this.br_AgentContains_("win")};GSnewsBar.prototype.br_IsMac=function(){return this.br_AgentContains_("macintosh")||this.br_AgentContains_("mac_powerpc")};GSnewsBar.prototype.br_IsLinux=function(){return this.br_AgentContains_("linux")};GSnewsBar.prototype.setOpacity=function(B,A){if(this.ieMode){return }else{B.style.opacity=A}};GSnewsBar.prototype.getNodeWidth=function(A){return A.offsetWidth};GSnewsBar.checkAndFixBloggerCSS=function(){if(window._uds_nbw_donotrepair){return }var C=/http:\/\/www\.google\.com\/uds\/css\/gsearch\.css/;var H="http://www.google.com/uds/css/gsearch.css";var B=/file=uds\.js.*?&source=uds-nbw/;var E=/gsnewsbar.js\?mode=new/;var N="http://www.google.com/uds/solutions/newsbar/gsnewsbar.css";var M=function(Q){document.write('<link href="'+Q+'" rel="stylesheet" type="text/css"/>')};var J=window.location.href;var G=false;if(J&&J!=""&&J.match(/http:\/\/.*?\.blogspot\.com/)){G=true}if(!G){return }var L=false;var K=false;var F=document.getElementsByTagName("script");if(F&&F.length>0){for(var I=0;I<F.length;I++){var A=F[I].src;if(A.match(B)){K=true}if(A.match(E)){L=true}}}if(!K){return }if(L){return }var O=true;var D=true;if(!window._uds_wizards_gsearchCssMissing){var P=document.getElementsByTagName("link");if(P&&P.length>0){for(var I=0;I<P.length;I++){if(P[I].href.match(C)){O=false;break}}}if(O){window._uds_wizards_gsearchCssMissing=true;M(H);M(N)}}else{M(N)}};GSnewsBar.checkAndFixBloggerCSS();GSnewsBar.cloneObject=function(C){var A=new Object();for(var D in C){switch(typeof (C[D])){case"object":if(typeof (C[D].nodeType)=="undefined"||typeof (C[D].cloneNode)=="undefined"){A[D]=GSnewsBar.cloneObject(C[D])}else{try{A[D]=C[D].cloneNode(true)}catch(B){A[D]=GSnewsBar.cloneObject(C[D])}}break;default:A[D]=C[D];break}}return A};var _gat=new Object({c:"length",lb:"4.2",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 D=_gat,F="-",C,A,E=D.q;if(!E(G)&&!E(B)&&!E(H)){C=D.w(G,B);if(C>-1){A=G.indexOf(H,C);if(A<0){A=G[D.c]}F=D.F(G,C+D.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,D=B[_gat.m]?B[_gat.m]:"",F=H.history[_gat.c],C,A,E=[G.appName,G.version,G.language?G.language:G.browserLanguage,G.platform,G.userAgent,G.javaEnabled()?1:0].join("");if(H.screen){E+=H.screen.width+"x"+H.screen.height+H.screen.colorDepth}else{if(H.java){A=java.awt.Toolkit.getDefaultToolkit().getScreenSize();E+=A.screen.width+"x"+A.screen.height}}E+=D;E+=B.referrer?B.referrer:"";C=E[_gat.c];while(F>0){E+=F--^C++}return _gat.t(E)}});_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,S,M,Q,O,J,H,T=this,L=_gat,E=L.q,D=L.c,R,C=W;T.a=U;function K(B){var A=B instanceof Array?B.join("."):"";return E(A)?"-":A}function I(X,A){var Y=[],B;if(!E(X)){Y=L.z(X,".");if(A){for(B=0;B<Y[D];B++){if(!L.Ea(Y[B])){Y[B]="-"}}}}return Y}function N(){return F(63072000000)}function F(B){var A=new Date,X=new Date(A.getTime()+B);return"expires="+X.toGMTString()+"; "}function P(B,A){T.a[L.m]=B+"; path="+C.p+"; "+A+T.Cc()}function G(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](L.C(Z,B,a))}}T.Jb=function(){return L.b==R||R==T.t()};T.Ba=function(){return O?O:"-"};T.Wb=function(A){O=A};T.Ma=function(A){R=L.Ea(A)?A*1:"-"};T.Aa=function(){return K(J)};T.Na=function(A){J=I(A)};T.Hc=function(){return R?R:"-"};T.Cc=function(){return E(C.g)?"":"domain="+C.g+";"};T.ya=function(){return K(V)};T.Ub=function(A){V=I(A,1)};T.K=function(){return K(S)};T.La=function(A){S=I(A,1)};T.za=function(){return K(M)};T.Vb=function(A){M=I(A,1)};T.Ca=function(){return K(Q)};T.Xb=function(B){Q=I(B);for(var A=0;A<Q[D];A++){if(A<4&&!L.Ea(Q[A])){Q[A]="-"}}};T.Dc=function(){return H};T.Uc=function(A){H=A};T.pc=function(){V=[];S=[];M=[];Q=[];O=L.b;J=[];R=L.b};T.t=function(){var B="",A;for(A=0;A<T.V[D];A++){B+=T.V[A][1]()}return L.t(B)};T.Ha=function(B){var A=T.a[L.m],X=false;if(A){G(A,B,";");T.Ma(T.t());X=true}return X};T.Rc=function(A){G(A,"","&");T.Ma(L.C(A,L.Ta,"&"))};T.Wc=function(){var B=T.V,A=[],X;for(X=0;X<B[D];X++){L.h(A,B[X][0]+B[X][1]())}L.h(A,L.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(){P(L.r+T.ya(),N())};T.Pa=function(){P(L.W+T.K(),F(C.Tb*1000))};T.ec=function(){P(L.ma+T.za(),"")};T.Ra=function(){P(L.X+T.Ca(),F(C.wb*1000))};T.fc=function(){P(L.oa+T.Ba(),N())};T.Qa=function(){P(L.na+T.Aa(),N())};T.cd=function(){P(L.Sa+T.Dc(),"")};T.V=[[L.r,T.ya,T.Ub,T.dc,"."],[L.W,T.K,T.La,T.Pa,""],[L.ma,T.za,T.Vb,T.ec,""],[L.oa,T.Ba,T.Wb,T.fc,""],[L.X,T.Ca,T.Xb,T.Ra,"."],[L.na,T.Aa,T.Na,T.Qa,"."]]};_gat.jc=function(F){var B=this,G=_gat,D=F,E,C=function(){},A=function(J){var H=(new Date).getTime(),I;I=(H-J[3])*(D.Zc/1000);if(I>=1){J[2]=Math.min(Math.floor(J[2]*1+I),D.nc);J[3]=H}return J};B.O=function(I,H,P,K,S,R,O){var Q,L=D.D,J=P.location;if(!E){E=new G.Y(P,D)}E.Ha(K);Q=G.z(E.K(),".");if(Q[1]<500||S){if(R){Q=A(Q)}if(S||!R||Q[2]>=1){if(!S&&R){Q[2]=Q[2]*1-1}Q[1]=Q[1]*1+1;I="?utmwv="+_gat.lb+"&utmn="+G.wa()+(G.q(J.hostname)?"":"&utmhn="+G.d(J.hostname))+(D.ha==100?"":"&utmsp="+G.d(D.ha))+I;if(0==L||2==L){var M=new Image(1,1);M.src=D.Da+I;var T=2==L?function(){C()}:O||function(){C()};M.onload=T}if(1==L||2==L){var N=new Image(1,1);N.src=("https:"==J.protocol?G.mc:G.lc)+I+"&utmac="+H+"&utmcc="+B.wc(P,K);N.onload=O||function(){C()}}}}E.La(Q.join("."));E.Pa()};B.wc=function(M,K){var L=[],N=[G.r,G.X,G.na,G.oa],I,H=M[G.m],J;for(I=0;I<N[G.c];I++){J=G.C(H,N[I]+K,";");if(!G.q(J)){G.h(L,N[I]+J+";")}}return G.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(G,I,H,F,C,E,D,B){var A=this;A.v=G;A.ob=I;A.bc=H;A.ac=F;A.Yb=C;A.ub=E;A.$b=D;A.xb=B;A.ca=[]};_gat.i.$.prototype.mb=function(G,I,H,F,C){var E=this,D=E.Eb(G),B=E.v,A=_gat;if(A.b==D){A.h(E.ca,new A.i.bb(B,G,I,H,F,C))}else{D.cc=B;D.Oa=G;D.L=I;D.sb=H;D.Pb=F;D.Qb=C}};_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(I,K,J,G,D,F,E,B){var A=this,H=_gat,C=A.xa(I);if(H.b==C){C=new H.i.$(I,K,J,G,D,F,E,B);H.h(A.la,C)}else{C.ob=K;C.bc=J;C.ac=G;C.Yb=D;C.ub=F;C.$b=E;C.xb=B}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 J,H,G,L,I="ShockwaveFlash",O="$version",N=A.k?A.k.plugins:C.b;if(N&&N[C.c]>0){for(J=0;J<N[C.c]&&!G;J++){H=N[J];if(C.P(H.name,"Shockwave Flash")){G=C.z(H.description,"Shockwave Flash ")[1]}}}else{I=I+"."+I;try{L=new ActiveXObject(I+".7");G=L.GetVariable(O)}catch(K){}if(!G){try{L=new ActiveXObject(I+".6");G="WIN 6,0,21,0";L.AllowScriptAccess="always";G=L.GetVariable(O)}catch(M){}}if(!G){try{L=new ActiveXObject(I);G=L.GetVariable(O)}catch(M){}}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(N,R,P,L,H){var J=this,I=_gat,D=I.q,C=I.b,M=I.P,F=I.C,S=I.T,Q=I.z,K=I.c;J.a=R;J.f=N;J.Rb=P;J.ja=L;J.o=H;function O(A){return D(A)||"0"==A||!M(A,"://")}function G(B){var A="";B=S(Q(B,"://")[1]);if(M(B,"/")){B=Q(B,"/")[1];if(M(B,"?")){A=Q(B,"?")[0]}}return A}function E(B){var A="";A=S(Q(B,"://")[1]);if(M(A,"/")){A=Q(A,"/")[0]}return A}J.Fc=function(T){var B=J.Fb(),A=J.o;return new I.n.s(F(T,A.fb+"=","&"),F(T,A.ib+"=","&"),F(T,A.kb+"=","&"),J.ba(T,A.db,"(not set)"),J.ba(T,A.gb,"(not set)"),J.ba(T,A.jb,B&&!D(B.R)?I.J(B.R):C),J.ba(T,A.eb,C))};J.Ib=function(T){var B=E(T),A=G(T);if(M(B,J.o.ab)){T=Q(T,"?").join("&");if(M(T,"&"+J.o.Gb+"=")){if(A==J.o.Ic){return true}}}return false};J.Fb=function(){var W,T,B=J.Rb,V,U,A=J.o.fa;if(O(B)||J.Ib(B)){return }W=E(B);for(V=0;V<A[K];V++){U=A[V];if(M(W,S(U.zb))){B=Q(B,"?").join("&");if(M(B,"&"+U.Nb+"=")){T=Q(B,"&"+U.Nb+"=")[1];if(M(T,"&")){T=Q(T,"&")[0]}return new I.n.s(C,U.zb,C,"(organic)","organic",T,C)}}}};J.ba=function(V,B,A){var U=F(V,B+"=","&"),T=!D(U)?I.J(U):(!D(A)?A:"-");return T};J.Nc=function(V){var B=J.o.ea,A=false,U,T;if(V&&"organic"==V.da){U=S(I.J(V.R));for(T=0;T<B[K];T++){A=A||S(B[T])==U}}return A};J.Ec=function(){var T="",B="",A=J.Rb;if(O(A)||J.Ib(A)){return }T=S(Q(A,"://")[1]);if(M(T,"/")){B=I.F(T,I.w(T,"/"));if(M(B,"?")){B=Q(B,"?")[0]}T=Q(T,"/")[0]}if(0==I.w(T,"www.")){T=I.F(T,4)}return new I.n.s(C,T,C,"(referral)","referral",C,B)};J.sc=function(B){var A="";if(J.o.pa){A=I.Db(B);A=""!=A?A+"&":A}A+=B.search;return A};J.zc=function(){return new I.n.s(C,"(direct)",C,"(direct)","(none)",C,C)};J.Oc=function(V){var B=false,A,U,T=J.o.ga;if(V&&"referral"==V.da){A=S(I.d(V.ia));for(U=0;U<T[K];U++){B=B||M(A,S(T[U]))}}return B};J.U=function(A){return C!=A&&A.Fa()};J.yc=function(A,c){var B="",i="-",U,X,V=0,T,f,Z=J.f;if(!A){return""}f=J.a[I.m]?J.a[I.m]:"";B=J.sc(J.a.location);if(J.o.I&&A.Jb()){i=A.Ca();if(!D(i)&&!M(i,";")){A.Ra();return""}}i=F(f,I.X+Z+".",";");U=J.Fc(B);if(J.U(U)){X=F(B,J.o.hb+"=","&");if("1"==X&&!D(i)){return""}}if(!J.U(U)){U=J.Fb();if(!D(i)&&J.Nc(U)){return""}}if(!J.U(U)&&c){U=J.Ec();if(!D(i)&&J.Oc(U)){return""}}if(!J.U(U)){if(D(i)&&c){U=J.zc()}}if(!J.U(U)){return""}if(!D(i)){var W=Q(i,"."),g=new I.n.s;g.Cb(W.slice(4).join("."));T=S(g.ka())==S(U.ka());V=W[3]*1}if(!T||c){var d=F(f,I.r+Z+".",";"),Y=d.lastIndexOf("."),a=Y>9?I.F(d,Y+1)*1:0;V++;a=0==a?1:a;A.Xb([Z,J.ja,a,V,U.ka()].join("."));A.Ra();return"&utmcn=1"}else{return"&utmcr=1"}}};_gat.n.s=function(G,B,H,D,F,C,A){var E=this;E.v=G;E.ia=B;E.ra=H;E.L=D;E.da=F;E.R=C;E.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={},Q="k",L="v",O=[Q,L],N="(",I=")",G="*",R="!",K="'",E={};E[K]="'0";E[I]="'1";E[G]="'2";E[R]="'3";var D=1;function P(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 J(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 H(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+=M(X);V=false}else{V=true}}return W}function M(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(G)+I}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()+H(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()+H(T[B]))}}return V.join("")};S._setKey=function(A,V,B){if(typeof B!="string"){return false}P(A,Q,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}P(A,L,V,B.toString());return true};S._getKey=function(A,B){return C(A,Q,B)};S._getValue=function(A,B){return C(A,L,B)};S._clearKey=function(A){J(A,Q)};S._clearValue=function(A){J(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,T=W.b,M=W.q,Q=W.w,O=W.F,J=W.C,H=W.P,U=W.z,L="location",E=W.c,D=T,R=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=T;X.j=T;X.A=T;X.M=false;X.aa=T;X.rb="";X.l=T;X.Ab=T;X.f=T;X.u=T;function K(){if("auto"==R.g){var A=X.a.domain;if("www."==O(A,0,4)){A=O(A,4)}R.g=A}R.g=W.T(R.g)}function I(){var A=R.g,B=Q(A,"www.google.")*Q(A,".google.")*Q(A,"google.");return B||"/"!=R.p||Q(A,"google.org")>-1}function N(A,a,Y){if(M(A)||M(a)||M(Y)){return"-"}var Z=J(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[L].protocol&&I()}function P(A){if(!A||""==A){return""}while(W.Lb(A.charAt(0))){A=O(A,1)}while(W.Lb(A.charAt(A[E]-1))){A=O(A,0,A[E]-1)}return A}function G(A,Y,B){if(!M(A())){Y(W.J(A()));if(!H(A(),";")){B()}}}function S(A){var Y,B=""!=A&&X.a[L].host!=A;if(B){for(Y=0;Y<R.B[E];Y++){B=B&&Q(W.T(A),W.T(R.B[Y]))==-1}}return B}X.Bc=function(){if(!R.g||""==R.g||"none"==R.g){R.g="";return 1}K();return R.pb?W.t(R.g):1};X.tc=function(A,Y){if(M(A)){A="-"}else{Y+=R.p&&"/"!=R.p?R.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+=R.qa?X.rb:"";Y+=R.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[L];A=T!=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!=T&&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,R);return A.Ha(X.f)?A.Wc():T};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+=(H(A,"?")?"&":"?")+B}else{Z=Y[0]+(H(A,"?")?"&":"?")+B+"#"+Y[1]}}}}return Z};X.Zb=function(){var A;if(X.A&&X.A[E]>=10&&!H(X.A,"=")){X.u.Uc(X.A);X.u.cd();W._gasoDomain=R.g;W._gasoCPath=R.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,m=X.f+"",i=X.e,c=i?i.gaGlobal:T,n,l=H(d,W.r+m+"."),g=H(d,W.W+m),k=H(d,W.ma+m),B,A=[],h="",a=false,f;d=M(d)?"":d;if(R.I){n=W.Db(X.a[L]);if(R.pa&&!M(n)){h=n+"&"}h+=X.a[L].search;if(!M(h)&&H(h,W.r)){Y.Rc(h);if(!Y.Jb()){Y.pc()}B=Y.ya()}G(Y.Ba,Y.Wb,Y.fc);G(Y.Aa,Y.Na,Y.Qa)}if(!M(B)){if(M(Y.K())||M(Y.za())){B=N(h,"&",Z);X.M=true}else{A=U(Y.K(),".");m=A[0]}}else{if(l){if(!g||!k){B=N(d,";",Z);X.M=true}else{B=J(d,W.r+m+".",";");A=U(J(d,W.W+m,";"),".")}}else{B=[m,W.Gc(),Z,Z,Z,1].join(".");X.M=true;a=true}}B=U(B,".");if(a){if(i&&c&&!c.from_cookie){B[4]=c.sid?c.sid:B[4];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]=m;A[1]=A[1]?A[1]:0;A[2]=undefined!=A[2]?A[2]:R.Yc;A[3]=A[3]?A[3]:B[4];Y.La(A.join("."));Y.Vb(m);if(!M(Y.Hc())){Y.Ma(Y.t())}Y.dc();Y.Pa();Y.ec()};X.Lc=function(){D=new W.jc(R)};X._initData=function(){var A;if(!C){X.Lc();X.f=X.Bc();X.u=new W.Y(X.a,R)}if(F()){X.Jc()}if(!C){if(F()){X.va=X.tc(X.Ac(),X.a.domain);if(R.sa){X.aa=new W.gc(R.ua);X.aa.xc()}if(R.qa){A=new W.n(X.f,X.a,X.va,X.ja,R);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=J(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[L].hash,B;B=A&&""!=A&&0==Q(A,"#gaso=")?J(A,"gaso=","&"):J(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<R.ha*100};X.Vc=function(){var A,Z,B=X.a.links;if(!R.Kb){var Y=X.a.domain;if("www."==O(Y,0,4)){Y=O(Y,4)}R.B.push("."+Y)}for(A=0;A<B[E]&&(R.Ga==-1||A<R.Ga);A++){Z=B[A];if(S(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(R.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:T);X._initData();if(c&&c.value){X.j=new W.i;B=U(c.value,"UTM:");R.G=!R.G||""==R.G?"|":R.G;for(a=0;a<B[E];a++){B[a]=P(B[a]);Y=U(B[a],R.G);for(Z=0;Z<Y[E];Z++){Y[Z]=P(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&&I()){X._initData();var Y=new W.Y(X.a,R),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(R.I&&A){X._initData();X.a[L].href=X._getLinkerUrl(A,B)}};X._linkByPost=function(A,B){if(R.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(T!=A&&T!=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=T==Y||c._setKey(5,3,Y)?B:false;B=T==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){R.g=A};X.dd=function(){return R.g};X._addOrganic=function(A,B){W.h(R.fa,new W.cb(A,B))};X._clearOrganic=function(){R.fa=[]};X.hd=function(){return R.fa};X._addIgnoredOrganic=function(A){W.h(R.ea,A)};X._clearIgnoredOrganic=function(){R.ea=[]};X.ed=function(){return R.ea};X._addIgnoredRef=function(A){W.h(R.ga,A)};X._clearIgnoredRef=function(){R.ga=[]};X.fd=function(){return R.ga};X._setAllowHash=function(A){R.pb=A?1:0};X._setCampaignTrack=function(A){R.qa=A?1:0};X._setClientInfo=function(A){R.sa=A?1:0};X._getClientInfo=function(){return R.sa};X._setCookiePath=function(A){R.p=A};X._setTransactionDelim=function(A){R.G=A};X._setCookieTimeout=function(A){R.wb=A};X._setDetectFlash=function(A){R.ua=A?1:0};X._getDetectFlash=function(){return R.ua};X._setDetectTitle=function(A){R.ta=A?1:0};X._getDetectTitle=function(){return R.ta};X._setLocalGifPath=function(A){R.Da=A};X._getLocalGifPath=function(){return R.Da};X._setLocalServerMode=function(){R.D=0};X._setRemoteServerMode=function(){R.D=1};X._setLocalRemoteServerMode=function(){R.D=2};X.gd=function(){return R.D};X._getServiceMode=function(){return R.D};X._setSampleRate=function(A){R.ha=A};X._setSessionTimeout=function(A){R.Tb=A};X._setAllowLinker=function(A){R.I=A?1:0};X._setAllowAnchor=function(A){R.pa=A?1:0};X._setCampNameKey=function(A){R.db=A};X._setCampContentKey=function(A){R.eb=A};X._setCampIdKey=function(A){R.fb=A};X._setCampMediumKey=function(A){R.gb=A};X._setCampNOKey=function(A){R.hb=A};X._setCampSourceKey=function(A){R.ib=A};X._setCampTermKey=function(A){R.jb=A};X._setCampCIdKey=function(A){R.kb=A};X._getAccount=function(){return X.H};X._getVersion=function(){return _gat.lb};X.kd=function(A){R.B=[];if(A){R.B=A}};X.md=function(A){R.Kb=A};X.ld=function(A){R.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};$(function(){window.pageTracker=_gat._getTracker("UA-2569248-3");pageTracker._initData();pageTracker._trackPageview();$("#encrypted")[0].value="-----BEGIN PKCS7-----MIIHRwYJKoZIhvcNAQcEoIIHODCCBzQCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYB/aanE/FwEZGDdDGtF1D6OS93nYcObk6bE+7SyQKJfYeCbsFQzW85bw+xtdGAG0+TpVwHdUgTAkCAdP3B8n8vNeRDKSF/EY624PtgNqWvaDdcdVmoMnaBYtu353Yfk1yrdG2LW+JEFgJ11qogicWsd1DGZlD0Mkb+BxsoEof3/RzELMAkGBSsOAwIaBQAwgcQGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQIs/QuZ1u03RSAgaD98DIR4uswzu5psV1AnQb7BVr8FdSG7vqOlw+Z4/x7SP5zIwGoEvO9ETt+OgLfV/NpI1JSl3sDxso17m66u+T//1kWZ5R+wb9qAe+CioCoVI2MoVz5WNK3ICZoIIa1xtbqCZikJqTnGoN20E1+VEREWJTvHHgpPwdzxRR1V4InL5Mpc9nh6UNuaWQYYywBi5n6Kb89g4e0nvdDqOISXx75oIIDhzCCA4MwggLsoAMCAQICAQAwDQYJKoZIhvcNAQEFBQAwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBw YXlwYWwuY29tMB4XDTA0MDIxMzEwMTMxNVoXDTM1MDIxMzEwMTMxNVowgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBR07d/ETMS1ycjtkpkvjXZe9k+6CieLuLsPumsJ7QC1odNz3sJiCbs2wC0nLE0uLGaEtXynIgRqIddYCHx88pb5HTXv4SZeuv0Rqq4+axW9PLAAATU8w04qqjaSXgbGLP3NmohqM6bV9kZZwZLR/klDaQGo1u9uDb9lr4Yn+rBQIDAQABo4HuMIHrMB0GA1UdDgQWBBSWn3y7xm8XvVk/UtcKG+wQ1mSUazCBuwYDVR0jBIGzMIGwgBSWn3y7xm8XvVk/UtcKG+wQ1mSUa6GBlKSBkTCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb22CAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCBXzpWmoBa5e9fo6ujionW1hUhPkOBakTr3YCDjbYfvJEiv/2P+IobhOGJr85+XHhN0v4gUkEDI8r2/rNk1m0GA8HKddvTjyGw/XqXa+LSTlDYkqI8OwR8GEYj4efEtcRpRYBxV8KxAW93YDWzFGvruKnnLbD AF6VR5w/cCMn5hzGCAZowggGWAgEBMIGUMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgwNjAyMjM0MjE0WjAjBgkqhkiG9w0BCQQxFgQUNresm69eFttcR1HKivUubP4Tkr8wDQYJKoZIhvcNAQEBBQAEgYA5NZJ8Xk9YXjNssV00OjBmQqxtLcYha1tcV5Yl+7NOmYp7jhWAmkq+cwwXLD4g6r+rkMJqvY29CRdbYnqsjhTzrzFSsAzPuOXyPEPnKw2ZHRPlftIzVNVZAO/JwCPQZfjMZnhV9xuBCtxTG1k/bRq9TZ76SV+5h9XpgJasqavdpw==-----END PKCS7-----";$(".donateLink").click(function(){document.donate.submit();return false})});