/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;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&&elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";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){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="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]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.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,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else
return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)
return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
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,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);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!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;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(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/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.replace(/ jQuery\d+="(?:\d+|null)"/g,""):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),"slice",Array.prototype.slice.call(arguments).join(","));},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);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};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(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
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 exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},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 typeof value==="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 elem&&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,extra){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;if(extra==="border")
return;jQuery.each(which,function(){if(!extra)
val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")
val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else
val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
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)
ret=computedStyle.getPropertyValue(name);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,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;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=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();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.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?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(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
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;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
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;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&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||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
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.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
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.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};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),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});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,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).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).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({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];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({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);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.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;};jQuery.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;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===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 namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===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(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
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=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else
this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});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){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},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.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)
return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
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);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){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,mouseenter,mouseleave,"+"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);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};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);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){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);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?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",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=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 parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=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();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();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){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else 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);}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(isTimeout)
xhr.abort();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr&&!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;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){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(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},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(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&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")&&this.style){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;});},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;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;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:[],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)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||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;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){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(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());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)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);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,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};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||document.body;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 null;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",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();;(function(){var aa="_gat",ba="_gaq",s=true,v=false,w=undefined,ca="4.5.8",y="length",z="cookie",A="location",C="&",D="=",E="__utma=",F="__utmb=",H="__utmc=",da="__utmk=",I="__utmv=",K="__utmz=",L="__utmx=",M="GASO=";var N=function(g){return w==g||"-"==g||""==g},ea=function(g){return g[y]>0&&" \n\r\t".indexOf(g)>-1},Q=function(g,i,b){var k="-",c;if(!N(g)&&!N(i)&&!N(b)){c=g.indexOf(i);if(c>-1){b=g.indexOf(b,c);if(b<0)b=g[y];k=P(g,c+i.indexOf(D)+1,b)}}return k},S=function(g){var i=v,b=0,k,c;if(!N(g)){i=s;for(k=0;k<g[y];k++){c=g.charAt(k);b+="."==c?1:0;i=i&&b<=1&&(0==k&&"-"==c||".0123456789".indexOf(c)>-1)}}return i},T=function(g,i){var b=encodeURIComponent;return b instanceof Function?i?encodeURI(g):b(g):escape(g)},U=function(g,i){var b=decodeURIComponent,k;g=g.split("+").join(" ");if(b instanceof Function)try{k=i?decodeURI(g):b(g)}catch(c){k=unescape(g)}else k=unescape(g);return k},V=function(g,i){return g.indexOf(i)>-1},W=function(g,i){g[g[y]]=i},X=function(g){return g.toLowerCase()},Y=function(g,i){return g.split(i)},ga=function(g,i){return g.indexOf(i)},P=function(g,i,b){b=w==b?g[y]:b;return g.substring(i,b)},ha=function(g,i){return g.join(i)},ia=function(g){var i=1,b=0,k;if(!N(g)){i=0;for(k=g[y]-1;k>=0;k--){b=g.charCodeAt(k);i=(i<<6&268435455)+b+(b<<14);b=i&266338304;i=b!=0?i^b>>21:i}}return i},ja=function(){var g=window,i=w;if(g&&g.gaGlobal&&g.gaGlobal.hid)i=g.gaGlobal.hid;else{i=Z();g.gaGlobal=g.gaGlobal?g.gaGlobal:{};g.gaGlobal.hid=i}return i},Z=function(){return Math.round(Math.random()*2147483647)},$={Fa:function(g,i){this.$a=g;this.lb=i},t:63072000000,gb:v,_gasoDomain:w,_gasoCPath:w};$.Fb=function(){var g=this,i=$.Fa;function b(c){return new i(c[0],c[1])}function k(c){var p=[];c=c.split(",");var n;for(n=0;n<c.length;++n)p.push(b(c[n].split(":")));return p}g.Ga="utm_campaign";g.Ha="utm_content";g.Ia="utm_id";g.Ja="utm_medium";g.Ka="utm_nooverride";g.La="utm_source";g.Ma="utm_term";g.Na="gclid";g.aa=0;g.z=0;g.Wa="15768000";g.qb="1800";g.ra=[];g.ta=[];g.nc="cse";g.oc="q";g.mb=5;g.T=k("images.google:q,google:q,yahoo:p,msn:q,bing:q,aol:query,aol:encquery,lycos:query,ask:q,altavista:q,netscape:query,cnn:query,looksmart:qt,about:terms,mamma:query,alltheweb:q,gigablast:q,voila:rdata,virgilio:qs,live:q,baidu:wd,alice:qs,yandex:text,najdi:q,aol:q,club-internet:query,mama:query,seznam:q,search:q,wp:szukaj,onet:qt,netsprint:q,google.interia:q,szukacz:q,yam:k,pchome:q,kvasir:q,sesam:q,ozu:q,terra:query,nostrum:query,mynet:q,ekolay:q,search.ilse:search_for,rambler:words");g.u=w;g.jb=v;g.h="/";g.U=100;g.ma="/__utm.gif";g.ea=1;g.fa=1;g.v="|";g.da=1;g.ba=1;g.Pa=1;g.c="auto";g.I=1;g.pa=1000;g.Ic=10;g.Pb=10;g.Jc=0.2;g.o=w;g.a=document;g.b=window};$.Gb=function(g){var i=this,b=g;i.r=(new Date).getTime();var k=[E,F,H,K,I,L,M];function c(j,m,q,a){var d="",l=0;d=Q(j,"2"+m,";");if(!N(d)){j=d.indexOf("^"+q+".");if(j<0)return["",0];d=P(d,j+q[y]+2);if(d.indexOf("^")>0)d=d.split("^")[0];q=d.split(":");d=q[1];l=parseInt(q[0],10);if(!a&&l<i.r)d=""}if(N(d))d="";return[d,l]}i.k=function(){var j=b.a[z];return b.o?i.Wb(j,b.o):j};i.Wb=function(j,m){var q=[],a,d;for(a=0;a<k[y];a++){d=c(j,k[a],m)[0];N(d)||(q[q[y]]=k[a]+d+";")}return q.join("")};i.l=function(j,m,q){var a=q>0?h(q):"";if(b.o){m=i.lc(b.a[z],j,b.o,m,q);j="2"+j;a=e(q)}r(j+m,a)};i.lc=function(j,m,q,a,d){var l="";d=p(d);a=n([a,i.r+d*1],q);l=Q(j,"2"+m,";");if(!N(l)){j=n(c(j,m,q,s),q);l=ha(l.split(j),"");return l=a+l}return a};function p(j){return j||$.t}function n(j,m){return"^"+ha([[m,j[1]].join("."),j[0]],":")}function r(j,m){b.a[z]=j+"; path="+b.h+"; "+m+i.db()}i.db=function(){return N(b.c)?"":"domain="+b.c+";"};function e(j){return j>0?f():""}function f(){return h($.t)}function h(j){var m=new Date;j=new Date(m.getTime()+j);return"expires="+j.toGMTString()+"; "}};$.$=function(g){var i,b,k,c,p,n,r,e=this,f,h=g;e.j=new $.Gb(g);function j(a){a=a instanceof Array?a.join("."):"";return N(a)?"-":a}function m(a,d){var l=[];if(!N(a)){l=a.split(".");if(d)for(a=0;a<l[y];a++)S(l[a])||(l[a]="-")}return l}function q(a,d,l){var t=e.M,o,u;for(o=0;o<t[y];o++){u=t[o][0];u+=N(d)?d:d+t[o][4];t[o][2](Q(a,u,l))}}e.ib=function(){return w==f||f==e.P()};e.k=function(){return e.j.k()};e.ka=function(){return p?p:"-"};e.tb=function(a){p=a};e.xa=function(a){f=S(a)?a*1:"-"};e.ja=function(){return j(n)};e.ya=function(a){n=m(a)};e.Vb=function(){e.j.l(I,"",-1)};e.mc=function(){return f?f:"-"};e.db=function(){return N(h.c)?"":"domain="+h.c+";"};e.ha=function(){return j(i)};e.rb=function(a){i=m(a,1)};e.C=function(){return j(b)};e.wa=function(a){b=m(a,1)};e.ia=function(){return j(k)};e.sb=function(a){k=m(a,1)};e.la=function(){return j(c)};e.ub=function(a){c=m(a);for(a=0;a<c[y];a++)if(a<4&&!S(c[a]))c[a]="-"};e.gc=function(){return r};e.Dc=function(a){r=a};e.Sb=function(){i=[];b=[];k=[];c=[];p=w;n=[];f=w};e.P=function(){var a="",d;for(d=0;d<e.M[y];d++)a+=e.M[d][1]();return ia(a)};e.sa=function(a){var d=e.k(),l=v;if(d){q(d,a,";");e.xa(e.P());l=s}return l};e.zc=function(a){q(a,"",C);e.xa(Q(a,da,C))};e.Gc=function(){var a=e.M,d=[],l;for(l=0;l<a[y];l++)W(d,a[l][0]+a[l][1]());W(d,da+e.P());return d.join(C)};e.Mc=function(a,d){var l=e.M,t=h.h;e.sa(a);h.h=d;for(a=0;a<l[y];a++)N(l[a][1]())||l[a][3]();h.h=t};e.Bb=function(){e.j.l(E,e.ha(),$.t)};e.Ca=function(){e.j.l(F,e.C(),h.qb*1000)};e.Cb=function(){e.j.l(H,e.ia(),0)};e.Ea=function(){e.j.l(K,e.la(),h.Wa*1000)};e.Db=function(){e.j.l(L,e.ka(),$.t)};e.Da=function(){e.j.l(I,e.ja(),$.t)};e.Nc=function(){e.j.l(M,e.gc(),0)};e.M=[[E,e.ha,e.rb,e.Bb,"."],[F,e.C,e.wa,e.Ca,""],[H,e.ia,e.sb,e.Cb,""],[L,e.ka,e.tb,e.Db,""],[K,e.la,e.ub,e.Ea,"."],[I,e.ja,e.ya,e.Da,"."]]};$.Jb=function(g){var i=this,b=g,k=new $.$(b),c=function(){},p=function(n){var r=(new Date).getTime(),e;e=(r-n[3])*(b.Jc/1000);if(e>=1){n[2]=Math.min(Math.floor(n[2]*1+e),b.Pb);n[3]=r}return n};i.H=function(n,r,e,f,h,j){var m,q=b.I,a=b.a[A];k.sa(e);m=Y(k.C(),".");if(m[1]<500||f){if(h)m=p(m);if(f||!h||m[2]>=1){if(!f&&h)m[2]=m[2]*1-1;m[1]=m[1]*1+1;n="?utmwv="+ca+"&utmn="+Z()+(N(a.hostname)?"":"&utmhn="+T(a.hostname))+(b.U==100?"":"&utmsp="+T(b.U))+n;if(0==q||2==q){f=2==q?c:j||c;i.Ya(b.ma+n,f)}if(1==q||2==q){n=("https:"==a.protocol?"https://ssl.google-analytics.com/__utm.gif":"http://www.google-analytics.com/__utm.gif")+n+"&utmac="+r+"&utmcc="+i.ac(e);if(ka)n+="&gaq=1";i.Ya(n,j)}}}k.wa(m.join("."));k.Ca()};i.Ya=function(n,r){var e=new Image(1,1);e.src=n;e.onload=function(){e.onload=null;(r||c)()}};i.ac=function(n){var r=[],e=[E,K,I,L],f,h=k.k(),j;for(f=0;f<e[y];f++){j=Q(h,e[f]+n,";");if(!N(j)){if(e[f]==I){j=Y(j.split(n+".")[1],"|")[0];if(N(j))continue;j=n+"."+j}W(r,e[f]+j+";")}}return T(r.join("+"))}};$.n=function(){var g=this;g.Y=[];g.fb=function(i){var b,k=g.Y,c;for(c=0;c<k.length;c++)b=i==k[c].q?k[c]:b;return b};g.Ob=function(i,b,k,c,p,n,r,e){var f=g.fb(i);if(w==f){f=new $.n.Mb(i,b,k,c,p,n,r,e);W(g.Y,f)}else{f.Oa=b;f.zb=k;f.yb=c;f.vb=p;f.Ua=n;f.xb=r;f.Xa=e}return f}};$.n.Lb=function(g,i,b,k,c,p){var n=this;n.Ab=g;n.za=i;n.D=b;n.Sa=k;n.nb=c;n.ob=p;n.Aa=function(){return"&"+["utmt=item","tid="+T(n.Ab),"ipc="+T(n.za),"ipn="+T(n.D),"iva="+T(n.Sa),"ipr="+T(n.nb),"iqt="+T(n.ob)].join("&utm")}};$.n.Mb=function(g,i,b,k,c,p,n,r){var e=this;e.q=g;e.Oa=i;e.zb=b;e.yb=k;e.vb=c;e.Ua=p;e.xb=n;e.Xa=r;e.R=[];e.Nb=function(f,h,j,m,q){var a=e.hc(f),d=e.q;if(w==a)W(e.R,new $.n.Lb(d,f,h,j,m,q));else{a.Ab=d;a.za=f;a.D=h;a.Sa=j;a.nb=m;a.ob=q}};e.hc=function(f){var h,j=e.R,m;for(m=0;m<j.length;m++)h=f==j[m].za?j[m]:h;return h};e.Aa=function(){return"&"+["utmt=tran","id="+T(e.q),"st="+T(e.Oa),"to="+T(e.zb),"tx="+T(e.yb),"sp="+T(e.vb),"ci="+T(e.Ua),"rg="+T(e.xb),"co="+T(e.Xa)].join("&utmt")}};$.Eb=function(g){var i=g,b=i.b,k=this,c="-";k.V=b.screen;k.Qa=!k.V&&b.java?java.awt.Toolkit.getDefaultToolkit():w;k.e=b.navigator;k.W=c;k.va=c;k.Ta=c;k.oa=c;k.na=1;k.cb=c;function p(){var n,r,e;r="ShockwaveFlash";var f="$version",h=k.e?k.e.plugins:w;if(h&&h[y]>0)for(n=0;n<h[y]&&!e;n++){r=h[n];if(V(r.name,"Shockwave Flash"))e=r.description.split("Shockwave Flash ")[1]}else{r=r+"."+r;try{n=new ActiveXObject(r+".7");e=n.GetVariable(f)}catch(j){}if(!e)try{n=new ActiveXObject(r+".6");e="WIN 6,0,21,0";n.AllowScriptAccess="always";e=n.GetVariable(f)}catch(m){}if(!e)try{n=new ActiveXObject(r);e=n.GetVariable(f)}catch(q){}if(e){e=Y(e.split(" ")[1],",");e=e[0]+"."+e[1]+" r"+e[2]}}return e?e:c}k.bc=function(){var n;if(b.screen){k.W=k.V.width+"x"+k.V.height;k.va=k.V.colorDepth+"-bit"}else if(k.Qa)try{n=k.Qa.getScreenSize();k.W=n.width+"x"+n.height}catch(r){}k.oa=X(k.e&&k.e.language?k.e.language:k.e&&k.e.browserLanguage?k.e.browserLanguage:c);k.na=k.e&&k.e.javaEnabled()?1:0;k.cb=i.fa?p():c;k.Ta=T(i.a.characterSet?i.a.characterSet:i.a.charset?i.a.charset:c)};k.Hc=function(){return C+"utm"+["cs="+T(k.Ta),"sr="+k.W,"sc="+k.va,"ul="+k.oa,"je="+k.na,"fl="+T(k.cb)].join("&utm")};k.$b=function(){var n=i.a,r=b.history[y];n=k.e.appName+k.e.version+k.oa+k.e.platform+k.e.userAgent+k.na+k.W+k.va+(n[z]?n[z]:"")+(n.referrer?n.referrer:"");for(var e=n[y];r>0;)n+=r--^e++;return ia(n)}};$.m=function(g,i,b,k){var c=k,p=this;p.d=g;p.pb=i;p.r=b;function n(f){return N(f)||"0"==f||!V(f,"://")}function r(f){var h="";f=X(f.split("://")[1]);if(V(f,"/")){f=f.split("/")[1];if(V(f,"?"))h=f.split("?")[0]}return h}function e(f){var h="";h=X(f.split("://")[1]);if(V(h,"/"))h=h.split("/")[0];return h}p.jc=function(f){var h=p.eb();return new $.m.w(Q(f,c.Ia+D,C),Q(f,c.La+D,C),Q(f,c.Na+D,C),p.Q(f,c.Ga,"(not set)"),p.Q(f,c.Ja,"(not set)"),p.Q(f,c.Ma,h&&!N(h.K)?U(h.K):w),p.Q(f,c.Ha,w))};p.hb=function(f){var h=e(f),j=r(f);if(V(h,"google")){f=f.split("?").join(C);if(V(f,C+c.oc+D))if(j==c.nc)return s}return v};p.eb=function(){var f,h=p.pb,j,m,q=c.T;if(!(n(h)||p.hb(h))){f=e(h);for(j=0;j<q[y];j++){m=q[j];if(V(f,X(m.$a))){h=h.split("?").join(C);if(V(h,C+m.lb+D)){f=h.split(C+m.lb+D)[1];if(V(f,C))f=f.split(C)[0];return new $.m.w(w,m.$a,w,"(organic)","organic",f,w)}}}}};p.Q=function(f,h,j){f=Q(f,h+D,C);return j=!N(f)?U(f):!N(j)?j:"-"};p.uc=function(f){var h=c.ra,j=v,m;if(f&&"organic"==f.S){f=X(U(f.K));for(m=0;m<h[y];m++)j=j||X(h[m])==f}return j};p.ic=function(){var f="",h="";f=p.pb;if(!(n(f)||p.hb(f))){f=f.split("://")[1];if(V(f,"/")){h=P(f,f.indexOf("/"));h=h.split("?")[0];f=X(f.split("/")[0])}if(0==f.indexOf("www."))f=P(f,4);return new $.m.w(w,f,w,"(referral)","referral",w,h)}};p.Xb=function(f){var h="";if(c.aa){h=f&&f.hash?f.href.substring(f.href.indexOf("#")):"";h=""!=h?h+C:h}h+=f.search;return h};p.ec=function(){return new $.m.w(w,"(direct)",w,"(direct)","(none)",w,w)};p.vc=function(f){var h=v,j,m=c.ta;if(f&&"referral"==f.S){f=X(T(f.X));for(j=0;j<m[y];j++)h=h||V(f,X(m[j]))}return h};p.L=function(f){return w!=f&&f.kb()};p.cc=function(f,h){var j="",m="-",q,a=0,d,l,t=p.d;if(!f)return"";l=f.k();j=p.Xb(c.a[A]);if(c.z&&f.ib()){m=f.la();if(!N(m)&&!V(m,";")){f.Ea();return""}}m=Q(l,K+t+".",";");q=p.jc(j);if(p.L(q)){j=Q(j,c.Ka+D,C);if("1"==j&&!N(m))return""}if(!p.L(q)){q=p.eb();if(!N(m)&&p.uc(q))return""}if(!p.L(q)&&h){q=p.ic();if(!N(m)&&p.vc(q))return""}if(!p.L(q))if(N(m)&&h)q=p.ec();if(!p.L(q))return"";if(!N(m)){a=m.split(".");d=new $.m.w;d.Zb(a.slice(4).join("."));d=X(d.Ba())==X(q.Ba());a=a[3]*1}if(!d||h){h=Q(l,E+t+".",";");l=h.lastIndexOf(".");h=l>9?P(h,l+1)*1:0;a++;h=0==h?1:h;f.ub([t,p.r,h,a,q.Ba()].join("."));f.Ea();return C+"utmcn=1"}else return C+"utmcr=1"}};$.m.w=function(g,i,b,k,c,p,n){var r=this;r.q=g;r.X=i;r.ca=b;r.D=k;r.S=c;r.K=p;r.Va=n;r.Ba=function(){var e=[],f=[["cid",r.q],["csr",r.X],["gclid",r.ca],["ccn",r.D],["cmd",r.S],["ctr",r.K],["cct",r.Va]],h,j;if(r.kb())for(h=0;h<f[y];h++)if(!N(f[h][1])){j=f[h][1].split("+").join("%20");j=j.split(" ").join("%20");W(e,"utm"+f[h][0]+D+j)}return e.join("|")};r.kb=function(){return!(N(r.q)&&N(r.X)&&N(r.ca))};r.Zb=function(e){var f=function(h){return U(Q(e,"utm"+h+D,"|"))};r.q=f("cid");r.X=f("csr");r.ca=f("gclid");r.D=f("ccn");r.S=f("cmd");r.K=f("ctr");r.Va=f("cct")}};$.Hb=function(g,i,b,k){var c=this,p=i,n=D,r=g,e=k;c.O=b;c.qa="";c.p={};c.tc=function(){var h;h=Y(Q(c.O.k(),I+p+".",";"),p+".")[1];if(!N(h)){h=h.split("|");f(1,c.p,h[1]);c.qa=h[0];c.Z()}};c.Z=function(){c.Qb();var h=c.qa,j,m,q="";for(j in c.p)if((m=c.p[j])&&1===m[2])q+=j+n+m[0]+n+m[1]+n+1+",";N(q)||(h+="|"+q);if(N(h))c.O.Vb();else{c.O.ya(p+"."+h);c.O.Da()}};c.Ec=function(h){c.qa=h;c.Z()};c.Cc=function(h,j,m,q){if(1!=q&&2!=q&&3!=q)q=3;var a=v;if(j&&m&&h>0&&h<=r.mb){j=T(j);m=T(m);if(j[y]+m[y]<=64){c.p[h]=[j,m,q];c.Z();a=s}}return a};c.dc=function(h){if(h=c.p[h])return{value:h[1],scope:h[2]}};c.Ub=function(h){var j=c.p;if(j[h]){delete j[h];c.Z()}};c.Qb=function(){e._clearKey(8);e._clearKey(9);e._clearKey(11);var h=c.p,j,m;for(m in h)if(j=h[m]){e._setKey(8,m,j[0]);e._setKey(9,m,j[1]);(j=j[2])&&3!=j&&e._setKey(11,m,""+j)}};function f(h,j,m){var q;if(!N(m)){m=m.split(",");for(var a=0;a<m[y];a++){q=m[a];if(!N(q)){q=q.split(n);if(q[y]==4)j[q[0]]=[q[1],q[2],h]}}}}};$.N=function(){var g=this,i={},b="k",k="v",c=[b,k],p="(",n=")",r="*",e="!",f="'",h={};h[f]="'0";h[n]="'1";h[r]="'2";h[e]="'3";var j=1;function m(o,u,x,B){if(w==i[o])i[o]={};if(w==i[o][u])i[o][u]=[];i[o][u][x]=B}function q(o,u,x){return w!=i[o]&&w!=i[o][u]?i[o][u][x]:w}function a(o,u){if(w!=i[o]&&w!=i[o][u]){i[o][u]=w;u=s;var x;for(x=0;x<c[y];x++)if(w!=i[o][c[x]]){u=v;break}if(u)i[o]=w}}function d(o){var u="",x=v,B,O;for(B=0;B<c[y];B++){O=o[c[B]];if(w!=O){if(x)u+=c[B];u+=l(O);x=v}else x=s}return u}
function l(o){var u=[],x,B;for(B=0;B<o[y];B++)if(w!=o[B]){x="";if(B!=j&&w==o[B-1])x+=B.toString()+e;x+=t(o[B]);W(u,x)}return p+u.join(r)+n}function t(o){var u="",x,B,O;for(x=0;x<o[y];x++){B=o.charAt(x);O=h[B];u+=w!=O?O:B}return u}g.qc=function(o){return w!=i[o]};g.G=function(){var o="",u;for(u in i)if(w!=i[u])o+=u.toString()+d(i[u]);return o};g.Ac=function(o){if(o==w)return g.G();var u=o.G(),x;for(x in i)if(w!=i[x]&&!o.qc(x))u+=x.toString()+d(i[x]);return u};g._setKey=function(o,u,x){if(typeof x!="string")return v;m(o,b,u,x);return s};g._setValue=function(o,u,x){if(typeof x!="number"&&(w==Number||!(x instanceof Number))||Math.round(x)!=x||x==NaN||x==Infinity)return v;m(o,k,u,x.toString());return s};g._getKey=function(o,u){return q(o,b,u)};g._getValue=function(o,u){return q(o,k,u)};g._clearKey=function(o){a(o,b)};g._clearValue=function(o){a(o,k)}};$.Ib=function(g,i){var b=this;b.Pc=i;b.xc=g;b._trackEvent=function(k,c,p){return i._trackEvent(b.xc,k,c,p)}};$.Kb=function(g,i){var b=this,k=w,c=new $.Fb,p=v,n=w;b.b=window;b.r=Math.round((new Date).getTime()/1000);b.s=g||"UA-XXXXX-X";b.Za=c.a.referrer;b.ga=w;b.f=w;b.B=w;b.F=v;b.A=w;b.Ra="";b.g=w;b.ab=w;b.d=w;b.i=w;c.o=i?T(i):w;function r(){if("auto"==c.c){var a=c.a.domain;if("www."==P(a,0,4))a=P(a,4);c.c=a}c.c=X(c.c)}function e(){var a=c.c,d=a.indexOf("www.google.")*a.indexOf(".google.")*a.indexOf("google.");return d||"/"!=c.h||a.indexOf("google.org")>-1}function f(a,d,l){if(N(a)||N(d)||N(l))return"-";a=Q(a,E+b.d+".",d);if(!N(a)){a=a.split(".");a[5]=a[5]?a[5]*1+1:1;a[3]=a[4];a[4]=l;a=a.join(".")}return a}function h(){return"file:"!=c.a[A].protocol&&e()}function j(a){if(!a||""==a)return"";for(;ea(a.charAt(0));)a=P(a,1);for(;ea(a.charAt(a[y]-1));)a=P(a,0,a[y]-1);return a}function m(a,d,l,t){if(!N(a())){d(t?U(a()):a());V(a(),";")||l()}}function q(a){var d,l=""!=a&&c.a[A].host!=a;if(l)for(d=0;d<c.u[y];d++)l=l&&ga(X(a),X(c.u[d]))==-1;return l}b.wc=function(){var a=v;if(b.B)a=b.B.match(/^[0-9a-z-_.]{10,1200}$/i);return a};b.kc=function(){return Z()^b.A.$b()&2147483647};b.fc=function(){if(!c.c||""==c.c||"none"==c.c){c.c="";return 1}r();return c.Pa?ia(c.c):1};b.Yb=function(a,d){if(N(a))a="-";else{d+=c.h&&"/"!=c.h?c.h:"";d=a.indexOf(d);a=d>=0&&d<=8?"0":"["==a.charAt(0)&&"]"==a.charAt(a[y]-1)?"-":a}return a};b.ua=function(a){var d="",l=c.a;d+=c.da?b.A.Hc():"";d+=c.ba?b.Ra:"";d+=c.ea&&!N(l.title)?"&utmdt="+T(l.title):"";d+="&utmhid="+ja()+"&utmr="+T(b.ga)+"&utmp="+T(b.Bc(a));return d};b.Bc=function(a){var d=c.a[A];return a=w!=a&&""!=a?T(a,s):T(d.pathname+d.search,s)};b.Kc=function(a){if(b.J()){var d="";if(b.g!=w&&b.g.G()[y]>0)d+="&utme="+T(b.g.G());d+=b.ua(a);k.H(d,b.s,b.d)}};b.Tb=function(){var a=new $.$(c);return a.sa(b.d)?a.Gc():w};b._getLinkerUrl=function(a,d){var l=a.split("#"),t=a,o=b.Tb();if(o)if(d&&1>=l[y])t+="#"+o;else if(!d||1>=l[y])if(1>=l[y])t+=(V(a,"?")?C:"?")+o;else t=l[0]+(V(a,"?")?C:"?")+o+"#"+l[1];return t};b.wb=function(){var a;if(b.wc()){b.i.Dc(b.B);b.i.Nc();$._gasoDomain=c.c;$._gasoCPath=c.h;a=c.a.createElement("script");a.type="text/javascript";a.id="_gasojs";a.src="https://www.google.com/analytics/reporting/overlay_js?gaso="+b.B+C+Z();c.a.getElementsByTagName("head")[0].appendChild(a)}};b.pc=function(){var a=b.r,d=b.i,l=d.k(),t=b.d+"",o=c.b,u=o?o.gaGlobal:w,x,B=V(l,E+t+"."),O=V(l,F+t),la=V(l,H+t),G,J=[],R="",fa=v;l=N(l)?"":l;if(c.z){x=c.a[A]&&c.a[A].hash?c.a[A].href.substring(c.a[A].href.indexOf("#")):"";if(c.aa&&!N(x))R=x+C;R+=c.a[A].search;if(!N(R)&&V(R,E)){d.zc(R);d.ib()||d.Sb();G=d.ha()}m(d.ka,d.tb,d.Db,true);m(d.ja,d.ya,d.Da)}if(N(G))if(B)if(!O||!la){G=f(l,";",a);b.F=s}else{G=Q(l,E+t+".",";");J=Y(Q(l,F+t,";"),".")}else{G=ha([t,b.kc(),a,a,a,1],".");fa=b.F=s}else if(N(d.C())||N(d.ia())){G=f(R,C,a);b.F=s}else{J=Y(d.C(),".");t=J[0]}G=G.split(".");if(o&&u&&u.dh==t&&!c.o){G[4]=u.sid?u.sid:G[4];if(fa){G[3]=u.sid?u.sid:G[4];if(u.vid){a=u.vid.split(".");G[1]=a[0];G[2]=a[1]}}}d.rb(G.join("."));J[0]=t;J[1]=J[1]?J[1]:0;J[2]=w!=J[2]?J[2]:c.Ic;J[3]=J[3]?J[3]:G[4];d.wa(J.join("."));d.sb(t);N(d.mc())||d.xa(d.P());d.Bb();d.Ca();d.Cb()};b.rc=function(){k=new $.Jb(c)};b._initData=function(){var a;if(!p){if(!b.A){b.A=new $.Eb(c);b.A.bc()}b.d=b.fc();b.i=new $.$(c);b.g=new $.N;n=new $.Hb(c,b.d,b.i,b.g);b.rc()}if(h()){b.pc();n.tc()}if(!p){if(h()){b.ga=b.Yb(b.Za,c.a.domain);if(c.ba){a=new $.m(b.d,b.ga,b.r,c);b.Ra=a.cc(b.i,b.F)}}b.ab=new $.N;p=s}$.gb||b.sc()};b._visitCode=function(){b._initData();var a=Q(b.i.k(),E+b.d+".",";");a=a.split(".");return a[y]<4?"":a[1]};b._cookiePathCopy=function(a){b._initData();b.i&&b.i.Mc(b.d,a)};b.sc=function(){var a=c.a[A].hash;if(a&&1==a.indexOf("gaso="))a=Q(a,"gaso=",C);else a=(a=c.b.name)&&0<=a.indexOf("gaso=")?Q(a,"gaso=",C):Q(b.i.k(),M,";");if(a[y]>=10){b.B=a;c.b.addEventListener?c.b.addEventListener("load",b.wb,v):c.b.attachEvent("onload",b.wb)}$.gb=s};b.J=function(){return b._visitCode()%10000<c.U*100};b.Fc=function(){var a,d,l=c.a.links;if(!c.jb){a=c.a.domain;if("www."==P(a,0,4))a=P(a,4);c.u.push("."+a)}for(a=0;a<l[y]&&(c.pa==-1||a<c.pa);a++){d=l[a];if(q(d.host))if(!d.gatcOnclick){d.gatcOnclick=d.onclick?d.onclick:b.yc;d.onclick=function(t){var o=!this.target||this.target=="_self"||this.target=="_top"||this.target=="_parent";o=o&&!b.Rb(t);b.Lc(t,this,o);return o?v:this.gatcOnclick?this.gatcOnclick(t):s}}}};b.yc=function(){};b._trackPageview=function(a){if(h()){b._initData();c.u&&b.Fc();b.Kc(a);b.F=v}};b._trackTrans=function(){var a=b.d,d=[],l,t,o;b._initData();if(b.f&&b.J()){for(l=0;l<b.f.Y[y];l++){t=b.f.Y[l];W(d,t.Aa());for(o=0;o<t.R[y];o++)W(d,t.R[o].Aa())}for(l=0;l<d[y];l++)k.H(d[l],b.s,a,s)}};b._setTrans=function(){var a=c.a,d,l,t;a=a.getElementById?a.getElementById("utmtrans"):a.utmform&&a.utmform.utmtrans?a.utmform.utmtrans:w;b._initData();if(a&&a.value){b.f=new $.n;t=a.value.split("UTM:");c.v=!c.v||""==c.v?"|":c.v;for(a=0;a<t[y];a++){t[a]=j(t[a]);d=t[a].split(c.v);for(l=0;l<d[y];l++)d[l]=j(d[l]);if("T"==d[0])b._addTrans(d[1],d[2],d[3],d[4],d[5],d[6],d[7],d[8]);else"I"==d[0]&&b._addItem(d[1],d[2],d[3],d[4],d[5],d[6])}}};b._addTrans=function(a,d,l,t,o,u,x,B){b.f=b.f?b.f:new $.n;return b.f.Ob(a,d,l,t,o,u,x,B)};b._addItem=function(a,d,l,t,o,u){var x;b.f=b.f?b.f:new $.n;(x=b.f.fb(a))||(x=b._addTrans(a,"","","","","","",""));x.Nb(d,l,t,o,u)};b._setVar=function(a){if(a&&""!=a&&e()){b._initData();n.Ec(T(a));b.J()&&k.H("&utmt=var",b.s,b.d)}};b._setCustomVar=function(a,d,l,t){b._initData();return n.Cc(a,d,l,t)};b._deleteCustomVar=function(a){b._initData();n.Ub(a)};b._getCustomVar=function(a){b._initData();return n.dc(a)};b._setMaxCustomVariables=function(a){c.mb=a};b._link=function(a,d){if(c.z&&a){b._initData();c.a[A].href=b._getLinkerUrl(a,d)}};b._linkByPost=function(a,d){if(c.z&&a&&a.action){b._initData();a.action=b._getLinkerUrl(a.action,d)}};b._setXKey=function(a,d,l){b.g._setKey(a,d,l)};b._setXValue=function(a,d,l){b.g._setValue(a,d,l)};b._getXKey=function(a,d){return b.g._getKey(a,d)};b._getXValue=function(a,d){return b.g.getValue(a,d)};b._clearXKey=function(a){b.g._clearKey(a)};b._clearXValue=function(a){b.g._clearValue(a)};b._createXObj=function(){b._initData();return new $.N};b._sendXEvent=function(a){var d="";b._initData();if(b.J()){d+="&utmt=event&utme="+T(b.g.Ac(a))+b.ua();k.H(d,b.s,b.d,v,s)}};b._createEventTracker=function(a){b._initData();return new $.Ib(a,b)};b._trackEvent=function(a,d,l,t){var o=b.ab;if(w!=a&&w!=d&&""!=a&&""!=d){o._clearKey(5);o._clearValue(5);(a=o._setKey(5,1,a)&&o._setKey(5,2,d)&&(w==l||o._setKey(5,3,l))&&(w==t||o._setValue(5,1,t)))&&b._sendXEvent(o)}else a=v;return a};b.Lc=function(a,d,l){b._initData();if(b.J()){var t=new $.N;t._setKey(6,1,d.href);var o=l?function(){b.bb(a,d)}:w;k.H("&utmt=event&utme="+T(t.G())+b.ua(),b.s,b.d,v,s,o);if(l){var u=this;c.b.setTimeout(function(){u.bb(a,d)},500)}}};b.bb=function(a,d){if(!a)a=c.b.event;var l=s;if(d.gatcOnclick)l=d.gatcOnclick(a);if(l||typeof l=="undefined")if(!d.target||d.target=="_self")c.b[A]=d.href;else if(d.target=="_top")c.b.top.document[A]=d.href;else if(d.target=="_parent")c.b.parent.document[A]=d.href};b.Rb=function(a){if(!a)a=c.b.event;var d=a.shiftKey||a.ctrlKey||a.altKey;if(!d)if(a.modifiers&&c.b.Event)d=a.modifiers&c.b.Event.CONTROL_MASK||a.modifiers&c.b.Event.SHIFT_MASK||a.modifiers&c.b.Event.ALT_MASK;return d};b.Oc=function(){return c};b._setDomainName=function(a){c.c=a};b._addOrganic=function(a,d,l){c.T.splice(l?0:c.T.length,0,new $.Fa(a,d))};b._clearOrganic=function(){c.T=[]};b._addIgnoredOrganic=function(a){W(c.ra,a)};b._clearIgnoredOrganic=function(){c.ra=[]};b._addIgnoredRef=function(a){W(c.ta,a)};b._clearIgnoredRef=function(){c.ta=[]};b._setAllowHash=function(a){c.Pa=a?1:0};b._setCampaignTrack=function(a){c.ba=a?1:0};b._setClientInfo=function(a){c.da=a?1:0};b._getClientInfo=function(){return c.da};b._setCookiePath=function(a){c.h=a};b._setTransactionDelim=function(a){c.v=a};b._setCookieTimeout=function(a){c.Wa=a};b._setDetectFlash=function(a){c.fa=a?1:0};b._getDetectFlash=function(){return c.fa};b._setDetectTitle=function(a){c.ea=a?1:0};b._getDetectTitle=function(){return c.ea};b._setLocalGifPath=function(a){c.ma=a};b._getLocalGifPath=function(){return c.ma};b._setLocalServerMode=function(){c.I=0};b._setRemoteServerMode=function(){c.I=1};b._setLocalRemoteServerMode=function(){c.I=2};b._getServiceMode=function(){return c.I};b._setSampleRate=function(a){c.U=a};b._setSessionTimeout=function(a){c.qb=a};b._setAllowLinker=function(a){c.z=a?1:0};b._setAllowAnchor=function(a){c.aa=a?1:0};b._setCampNameKey=function(a){c.Ga=a};b._setCampContentKey=function(a){c.Ha=a};b._setCampIdKey=function(a){c.Ia=a};b._setCampMediumKey=function(a){c.Ja=a};b._setCampNOKey=function(a){c.Ka=a};b._setCampSourceKey=function(a){c.La=a};b._setCampTermKey=function(a){c.Ma=a};b._setCampCIdKey=function(a){c.Na=a};b._getAccount=function(){return b.s};b._setAccount=function(a){b.s=a};b._setNamespace=function(a){c.o=a?T(a):w};b._getVersion=function(){return ca};b._setAutoTrackOutbound=function(a){c.u=[];if(a)c.u=a};b._setTrackOutboundSubdomains=function(a){c.jb=a};b._setHrefExamineLimit=function(a){c.pa=a};b._setReferrerOverride=function(a){b.Za=a};b._setCookiePersistence=function(a){$.t=a}};$._getTracker=function(g,i){return new $.Kb(g,i)};window[aa]=$;var ka=window[ba];})();var TimeTracker=function(opt_bucket){if(opt_bucket){this.bucket_=opt_bucket.sort(this.sortNumber);}else{this.bucket_=TimeTracker.DEFAULT_BUCKET;}};TimeTracker.prototype.startTime_;TimeTracker.prototype.stopTime_;TimeTracker.prototype.bucket_;TimeTracker.DEFAULT_BUCKET=[100,500,1500,2500,5000];TimeTracker.prototype._getTimeDiff=function(){return(this.stopTime_-this.startTime_);};TimeTracker.prototype.sortNumber=function(a,b){return(a-b);}
TimeTracker.prototype._recordStartTime=function(opt_time){if(opt_time!=undefined){this.startTime_=opt_time;}else{this.startTime_=(new Date()).getTime();}};TimeTracker.prototype._recordEndTime=function(opt_time){if(opt_time!=undefined){this.stopTime_=opt_time;}else{this.stopTime_=(new Date()).getTime();}};TimeTracker.prototype._track=function(tracker,opt_event_obj_name,opt_event_label){var eventTracker;if(opt_event_obj_name!=undefined&&opt_event_obj_name.length!=0){eventTracker=tracker._createEventTracker(opt_event_obj_name);}else{eventTracker=tracker._createEventTracker('TimeTracker');}
var i;var bucketString;for(i=0;i<this.bucket_.length;i++){if((this._getTimeDiff())<this.bucket_[i]){if(i==0){bucketString="0-"+(this.bucket_[0]);break;}else{bucketString=this.bucket_[i-1]+"-"+(this.bucket_[i]-1);break;}}}
if(!bucketString){bucketString=this.bucket_[i-1]+"+";}
eventTracker._trackEvent(bucketString,opt_event_label,this._getTimeDiff());};TimeTracker.prototype._setHistogramBuckets=function(buckets_array){this.bucket_=buckets_array.sort(this.sortNumber);};;eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('b 13=\'1I\';b W=4X.4P.2y();9(W.2E("2t")!=-1){13=\'2t\'}P 9(W.2E("1I")!=-1){13=\'1I\'}P 9(W.2E("3S")!=-1){13=\'3S\'}P 9(W.2E("9I")!=-1){13=\'4p\'}b 41=1C 5F();k 3q$(1G){B q.81(1G)};k 1A(v,6r){9(v.4G){b y=v.4G[6r];y=G(y)?y:\'1D\'}P 9(1a.6v){b 4n=q.6z.6v(v,1f);b y=4n?4n[6r]:1f}P{y=v.m[6r];y=G(y)?y:\'1D\'}B y};k 6b(e){9(e.8H){b r=e.8H();b 5n=0;b 5m=0;9(q.U&&(q.U.2K||q.U.2D)){5m=q.U.2D;5n=q.U.2K}P 9(q.1F&&(q.1F.2K||q.1F.2D)){5m=q.1F.2D;5n=q.1F.2K}B{\'J\':r.J+5n,\'I\':r.I+5m,\'1b\':r.1b+5n,\'1x\':r.1x+5m}}}k 6y(e){b x=0;b y=0;9(13==\'1I\'){y=e.3x;x=e.3E;9(q.U&&(q.U.2K||q.U.2D)){y=e.3x+q.U.2D;x=e.3E+q.U.2K}P 9(q.1F&&(q.1F.2K||q.1F.2D)){y=e.3x+q.1F.2D;x=e.3E+q.1F.2K}}P{y=e.3x;x=e.3E;y+=1a.48;x+=1a.43}B{\'x\':x,\'y\':y}}k 6w(){B M};b 6S=k(){b 1T=1S;9(!1T[1])1T=[7,1T[0]];1v(b 6G 5E 1T[1])1T[0][6G]=1T[1][6G];B 1T[0]};k 3f(2u,X,4v){9(13==\'4p\'||13==\'2t\'||13==\'3S\'){3A{2u.74(X,4v,M)}3F(e){}}P 9(13==\'1I\'){2u.5P("4F"+X,4v)}};k 6H(2u,X,4v){9(13==\'4p\'||13==\'2t\'||13==\'3S\'){2u.73(X,4v,M)}P 9(13==\'1I\'){2u.7s("4F"+X,4v)}};k 8O(){b 3m=[];1v(b i=0;i<1S.1c;i++)1v(b j=0;j<1S[i].1c;j++)3m.3I(1S[i][j]);B 3m};k 8P(6E,8S){3m=[];1v(b i=8S;i<6E.1c;i++)3m.3I(6E[i]);B 3m};k 3e(3W,8N){b 1T=8P(1S,2);B k(){3W[8N].4m(3W,8O(1T,1S))}};k 4y(e){9(13==\'4p\'||13==\'3S\'||13==\'2t\'){e.6Z=T;e.6Y();e.6J()}P 9(13==\'1I\'){1a.X.6Z=T}};k 2c(8D,8t,8s,8r,Y){7.7p=\'2.2\';7.6g=M;7.1E=3q$(8D);7.Z=3q$(8t);7.Q=3q$(8s);7.1k=3q$(8r);7.1y=0;7.Y=Y;9(!7.Y["3v"]){7.Y["3v"]=""}7.35=0;7.2B=0;7.1Z=0;7.2d=0;7.2l=20;7.9K=20;7.3o=0;7.3D=0;7.3y=\'\';7.1X=1f;9(7.Y["4B"]!=\'\'){7.1X=q.1l(\'4Y\');7.1X.m.N=\'1m\';7.1X.m.1d=\'1o\';7.1X.2T=\'7L\';7.1X.m.1u=\'1U\';7.1X.m.7A=\'4I\';7.1X.3j=7.Y["4C"]+\'<9N/><1g 2z="0" 4i="\'+7.Y["4C"]+\'" 1J="\'+7.Y["4B"]+\'"/>\';7.1E.1h(7.1X)}7.9M=\'\';7.6h=M;41.3I(7);7.78=3e(7,"65");7.77=3e(7,"4q")};2c.24.7D=k(){6H(1a.q,"4q",7.78);6H(7.1E,"4q",7.77);9(7.Y["N"]=="4D"){3q$(7.1E.1G+"-9c").2O(7.Q)}P{7.1E.2O(7.Q)}7.1E.2O(7.1y)};2c.24.65=k(e){b r=6y(e);b x=r[\'x\'];b y=r[\'y\'];b 2q=0;b 2A=0;b 2g=7.Z;3b(2g&&2g.2V!="8x"&&2g.2V!="8y"){2q+=2g.6n;2A+=2g.6p;2g=2g.5c}9(13==\'1I\'){b r=6b(7.Z);2A=r[\'J\'];2q=r[\'I\']}2A+=G(1A(7.Z,\'4U\'));2q+=G(1A(7.Z,\'6I\'));9(13!=\'1I\'||!(q.1R&&\'3r\'==q.1R.2y())){2A+=G(1A(7.Z,\'3K\'));2q+=G(1A(7.Z,\'6c\'))}9(x>G(2A+7.1Z)){7.5r();B M}9(x<G(2A)){7.5r();B M}9(y>G(2q+7.2d)){7.5r();B M}9(y<G(2q)){7.5r();B M}9(13==\'1I\'){7.1E.m.1t=1}B T};2c.24.62=k(e){4y(e);7.1E.m.4O=\'8C\'};2c.24.76=k(e){4y(e);7.1E.m.4O=\'6M\'};2c.24.4q=k(e){4y(e);1v(i=0;i<41.1c;i++){9(41[i]!=7){41[i].65(e)}}9(7.Y&&7.Y["3Q"]==T){9(7.1E.m.4O!=\'8C\'){B}}9(7.6g){B}9(!7.65(e)){B}7.6g=T;b 1w=7.Z;b 2A=0;b 2q=0;9(13==\'4p\'||13==\'2t\'||13==\'3S\'){b 2g=1w;3b(2g.2V!="8x"&&2g.2V!="8y"){2q+=2g.6n;2A+=2g.6p;2g=2g.5c}}P{b r=6b(7.Z);2A=r[\'J\'];2q=r[\'I\']}2A+=G(1A(7.Z,\'4U\'));2q+=G(1A(7.Z,\'6I\'));9(13!=\'1I\'||!(q.1R&&\'3r\'==q.1R.2y())){2A+=G(1A(7.Z,\'3K\'));2q+=G(1A(7.Z,\'6c\'))}b r=6y(e);b x=r[\'x\'];b y=r[\'y\'];7.3o=x-2A;7.3D=y-2q;9((7.3o+7.2l/2)>=7.1Z){7.3o=7.1Z-7.2l/2}9((7.3D+7.2x/2)>=7.2d){7.3D=7.2d-7.2x/2}9((7.3o-7.2l/2)<=0){7.3o=7.2l/2}9((7.3D-7.2x/2)<=0){7.3D=7.2x/2}2H(3e(7,"6W"),10)};2c.24.6W=k(){b 5g=7.3o-7.2l/2;b 5p=7.3D-7.2x/2;b 5u=5g*(7.35/7.1Z);b 6a=5p*(7.2B/7.2d);9(q.1F.9F==\'9E\'){5u=(7.3o+7.2l/2-7.1Z)*(7.35/7.1Z)}5g+=G(1A(7.Z,\'4U\'));5p+=G(1A(7.Z,\'6I\'));9(13!=\'1I\'||!(q.1R&&\'3r\'==q.1R.2y())){5g+=G(1A(7.Z,\'3K\'));5p+=G(1A(7.Z,\'6c\'))}7.1y.m.J=5g+\'1n\';7.1y.m.I=5p+\'1n\';7.1y.m.1d="1Y";9((7.35-5u)<G(7.Q.m.F)){5u=7.35-G(7.Q.m.F)}b 5o=0;9(7.Y&&7.Y["3v"]!=""){b 5o=19}9(7.2B>(G(7.Q.m.K)-5o)){9((7.2B-6a)<(G(7.Q.m.K)-5o)){6a=7.2B-G(7.Q.m.K)+5o}}7.1k.m.J=(-5u)+\'1n\';7.1k.m.I=(-6a)+\'1n\';7.Q.m.I=7.3y;7.Q.m.1u=\'1U\';7.Q.m.1d=\'1Y\';7.1k.m.1u=\'1U\';7.1k.m.1d=\'1Y\';7.6g=M};k 6k(4l){b 4k="";1v(i=0;i<4l.1c;i++){4k+=3N.8Z(14^4l.9a(i))}B 4k};2c.24.5r=k(){9(7.Y&&7.Y["4E"]==T)B;9(7.1y){7.1y.m.1d="1o"}7.Q.m.I=\'-4s\';9(13==\'1I\'){7.1E.m.1t=0}};2c.24.79=k(){7.2l=G(7.Q.m.F)/(7.35/7.1Z);9(7.Y&&7.Y["3v"]!=""){7.2x=(G(7.Q.m.K)-19)/(7.2B/7.2d)}P{7.2x=G(7.Q.m.K)/(7.2B/7.2d)}9(7.2l>7.1Z){7.2l=7.1Z}9(7.2x>7.2d){7.2x=7.2d}7.2l=1p.2b(7.2l);7.2x=1p.2b(7.2x);9(!(q.1R&&\'3r\'==q.1R.2y())){b 6x=G(1A(7.1y,\'4U\'));7.1y.m.F=(7.2l-2*6x)+\'1n\';7.1y.m.K=(7.2x-2*6x)+\'1n\'}P{7.1y.m.F=7.2l+\'1n\';7.1y.m.K=7.2x+\'1n\'}};2c.24.8b=k(){7.1y=q.1l("4Y");7.1y.2T=\'9A\';7.1y.m.1t=10;7.1y.m.1d=\'1o\';7.1y.m.N=\'1m\';7.1y.m["V"]=44(7.Y[\'V\']/2a.0);7.1y.m["-9D-V"]=44(7.Y[\'V\']/2a.0);7.1y.m["-8g-V"]=44(7.Y[\'V\']/2a.0);7.1y.m["4H"]="9j(9C="+7.Y[\'V\']+")";7.1E.1h(7.1y);7.79();7.1E.9B="4F";7.1E.m.9O="2W";7.1E.9P=6w;7.1E.a2=6w};2c.24.8e=k(){b 7M=7.1k.1J;9(7.2B<G(7.Q.m.K)){7.Q.m.K=7.2B+\'1n\';9(7.Y&&7.Y["3v"]!=""){7.Q.m.K=(19+7.2B)+\'1n\'}}9(7.35<G(7.Q.m.F)){7.Q.m.F=7.35+\'1n\'}3b(7.Q.2r){7.Q.2O(7.Q.2r)}9(13==\'1I\'){b f=q.1l("a1");f.m.J=\'1D\';f.m.I=\'1D\';f.m.N=\'1m\';f.1J="71:\'\'";f.m.4H=\'7Z:88.8j.a0(m=0,V=0)\';f.m.F=7.Q.m.F;f.m.K=7.Q.m.K;f.a3=0;7.Q.1h(f)}9(7.Y&&7.Y["3v"]!=""){b f=q.1l("4Y");f.2T=\'67\';f.1G=\'67\'+7.Q.1G;f.m.N=\'1H\';f.m.1t=10;f.m.J=\'1D\';f.m.I=\'1D\';f.m.3M=\'a4\';f.3j=7.Y["3v"];7.Q.1h(f)}b 6d=q.1l("4Y");6d.m.3B="1o";7.Q.1h(6d);7.1k=q.1l("3u");7.1k.1J=7M;7.1k.m.N=\'1H\';7.1k.m.7t=\'1D\';7.1k.m.3M=\'1D\';7.1k.m.J=\'1D\';7.1k.m.I=\'1D\';6d.1h(7.1k);9(\'25\'!==4M(2i)){b 4K=6k(2i[0]);b f=q.1l("3l");f.m.5w=2i[1];f.m.9v=2i[2]+\'1n\';f.m.a5=2i[3];f.m.9Z=\'85\';f.m.N=\'1m\';f.m.F=2i[5];f.m.7A=2i[4];f.3j=4K;f.m.J=\'1D\';f.m.I=G(7.Q.m.K)-2i[6]+\'1n\';7.Q.1h(f)}};2c.24.4z=k(){9(7.1X!=1f&&!7.1k.5x&&7.Z.F!=0&&7.Z.K!=0){7.1X.m.J=(G(7.Z.F)/2-G(7.1X.5N)/2)+\'1n\';7.1X.m.I=(G(7.Z.K)/2-G(7.1X.5M)/2)+\'1n\';7.1X.m.1d=\'1Y\'}9(13==\'3S\'){9(!7.6h){3f(7.1k,"3T",3e(7,"4z"));7.6h=T;B}}P{9(!7.1k.5x||!7.Z.5x){2H(3e(7,"4z"),2a);B}}7.1k.m.7t=\'1D\';7.1k.m.3M=\'1D\';7.35=7.1k.F;7.2B=7.1k.K;7.1Z=7.Z.F;7.2d=7.Z.K;9(7.35==0||7.2B==0||7.1Z==0||7.2d==0){2H(3e(7,"4z"),2a);B}9(13==\'2t\'||(13==\'1I\'&&!(q.1R&&\'3r\'==q.1R.2y()))){7.1Z-=G(1A(7.Z,\'3K\'));7.1Z-=G(1A(7.Z,\'4S\'));7.2d-=G(1A(7.Z,\'6c\'));7.2d-=G(1A(7.Z,\'9S\'))}9(7.1X!=1f)7.1X.m.1d=\'1o\';7.1E.m.F=7.Z.F+\'1n\';7.Q.m.I=\'-4s\';7.3y=\'1D\';b r=6b(7.Z);9(!r){7.Q.m.J=7.1Z+G(1A(7.Z,\'4U\'))+G(1A(7.Z,\'9R\'))+G(1A(7.Z,\'3K\'))+G(1A(7.Z,\'4S\'))+15+\'1n\'}P{7.Q.m.J=(r[\'1b\']-r[\'J\']+15)+\'1n\'}5a(7.Y[\'N\']){1q\'J\':7.Q.m.J=\'-\'+(15+G(7.Q.m.F))+\'1n\';1r;1q\'1x\':9(r){7.3y=r[\'1x\']-r[\'I\']+15+\'1n\'}P{7.3y=7.Z.K+15+\'1n\'}7.Q.m.J=\'1D\';1r;1q\'I\':7.3y=\'-\'+(15+G(7.Q.m.K))+\'1n\';7.Q.m.J=\'1D\';1r;1q\'4D\':7.Q.m.J=\'1D\';7.3y=\'1D\';1r;1q\'5A\':7.Q.m.J=\'1D\';7.3y=\'1D\';9(7.Y[\'54\']==-1){7.Q.m.F=7.1Z+\'1n\'}9(7.Y[\'4V\']==-1){7.Q.m.K=7.2d+\'1n\'}1r}9(7.1y){7.79();B}7.8e();7.8b();3f(1a.q,"4q",7.78);3f(7.1E,"4q",7.77);9(7.Y&&7.Y["3Q"]==T){3f(7.1E,"62",3e(7,"62"));3f(7.1E,"76",3e(7,"76"))}9(7.Y&&(7.Y["3Q"]==T||7.Y["4E"]==T)){7.3o=7.1Z/2;7.3D=7.2d/2;7.6W()}};2c.24.6P=k(3X,e){9(3X.3J==7.1k.1J)B;b 4N=q.1l("3u");4N.1G=7.1k.1G;4N.1J=3X.3J;b p=7.1k.9b;p.9W(4N,7.1k);7.1k=4N;7.1k.m.N=\'1H\';7.Z.1J=3X.84;9(3X.2F!=\'\'&&3q$(\'67\'+7.Q.1G)){3q$(\'67\'+7.Q.1G).2r.8Q=3X.2F}7.6h=M;7.4z();7.1E.3J=3X.3J;3A{C.4c()}3F(e){}};k 7w(1G,1B){b S=1a.q.31("A");1v(b i=0;i<S.1c;i++){9(S[i].30==1G){3f(S[i],"2L",k(X){9(13!=\'1I\'){7.8v()}P{1a.5d()}4y(X);B M});3f(S[i],1B.Y[\'51\'],3e(1B,"6P",S[i]));S[i].m.9k=\'0\';S[i].5C=6S;S[i].5C({1B:1B,a7:k(){7.1B.6P(1f,7)}});b 1g=q.1l("3u");1g.1J=S[i].3J;1g.m.N=\'1m\';1g.m.J=\'-4s\';1g.m.I=\'-4s\';q.U.1h(1g);1g=q.1l("3u");1g.1J=S[i].84;1g.m.N=\'1m\';1g.m.J=\'-4s\';1g.m.I=\'-4s\';q.U.1h(1g)}}};k 9q(){3b(41.1c>0){b 1B=41.53();1B.7D();6t 1B}};k 8k(){b 4C=\'8F 9t\';b 4B=\'\';b 4x=1a.q.31("3u");1v(b i=0;i<4x.1c;i++){9(/7L/.3c(4x[i].2T)){9(4x[i].4i!=\'\')4C=4x[i].4i;4B=4x[i].1J;1r}}b S=1a.q.31("A");1v(b i=0;i<S.1c;i++){9(/2c/.3c(S[i].2T)){3b(S[i].2r){9(S[i].2r.2V!=\'3u\'){S[i].2O(S[i].2r)}P{1r}}9(S[i].2r.2V!=\'3u\')9n"9l 2c 9m!";b 3R=1p.2b(1p.9u()*9r);S[i].m.N="1H";S[i].m.1u=\'1U\';S[i].m.9k=\'0\';S[i].m.9p=\'2W\';3f(S[i],"2L",k(X){9(13!=\'1I\'){7.8v()}4y(X);B M});9(S[i].1G==\'\'){S[i].1G="9s"+3R}9(13==\'1I\'){S[i].m.1t=0}b 1w=S[i].2r;1w.1G="7E"+3R;b 29=q.1l("4Y");29.1G="bc"+3R;2m=1C 3L(/V(\\s+)?:(\\s+)?(\\d+)/i);1s=2m.3G(S[i].30);b V=50;9(1s){V=G(1s[3])}2m=1C 3L(/9o\\-a6(\\s+)?:(\\s+)?(2L|3d)/i);1s=2m.3G(S[i].30);b 51=\'2L\';9(1s){51=1s[3]}2m=1C 3L(/1B\\-F(\\s+)?:(\\s+)?(\\w+)/i);b 54=-1;1s=2m.3G(S[i].30);29.m.F=\'8K\';9(1s){29.m.F=1s[3];54=1s[3]}2m=1C 3L(/1B\\-K(\\s+)?:(\\s+)?(\\w+)/i);b 4V=-1;1s=2m.3G(S[i].30);29.m.K=\'8K\';9(1s){29.m.K=1s[3];4V=1s[3]}2m=1C 3L(/1B\\-N(\\s+)?:(\\s+)?(\\w+)/i);1s=2m.3G(S[i].30);b N=\'1b\';9(1s){5a(1s[3]){1q\'J\':N=\'J\';1r;1q\'1x\':N=\'1x\';1r;1q\'I\':N=\'I\';1r;1q\'4D\':N=\'4D\';1r;1q\'5A\':N=\'5A\';1r}}2m=1C 3L(/ap\\-aX(\\s+)?:(\\s+)?(T|M)/i);1s=2m.3G(S[i].30);b 3Q=M;9(1s){9(1s[3]==\'T\')3Q=T}2m=1C 3L(/aW\\-2S\\-1B(\\s+)?:(\\s+)?(T|M)/i);1s=2m.3G(S[i].30);b 4E=M;9(1s){9(1s[3]==\'T\')4E=T}29.m.3B=\'1o\';29.2T="aY";29.m.1t=2a;29.m.1d=\'1o\';9(N!=\'4D\'){29.m.N=\'1m\'}P{29.m.N=\'1H\'}b H=q.1l("3u");H.1G="7R"+3R;H.1J=S[i].3J;29.1h(H);9(N!=\'4D\'){S[i].1h(29)}P{3q$(S[i].1G+\'-9c\').1h(29)}b Y={4E:4E,3Q:3Q,3v:S[i].2F,V:V,51:51,N:N,4C:4C,4B:4B,54:54,4V:4V};9(N==\'5A\'){S[i].2F=\'\'}b 1B=1C 2c(S[i].1G,\'7E\'+3R,29.1G,\'7R\'+3R,Y);S[i].5C=6S;S[i].5C({1B:1B});1B.4z();7w(S[i].1G,1B)}}};9(13==\'1I\')3A{q.92("9d",M,T)}3F(e){};3f(1a,"3T",8k);(k(){1a.8={7p:\'1.12\',1j:{2J:!!(1a.5P&&!1a.2t),4r:!!(1a.5P&&!1a.94),aQ:!!(1a.aP&&1a.94),2t:!!1a.2t,8p:4X.4P.2E(\'b2/\')>-1,4p:4X.4P.2E(\'b7\')>-1&&4X.4P.2E(\'bf\')==-1,bd:!!4X.4P.b6(/b5.*b4.*be/),5D:q.1R&&\'3r\'==q.1R.2y(),5K:M},$:k(v){9(!v)B 1f;9("b8"==4M v){v=q.81(v)}B v},$A:k(3p){9(!3p)B[];9(3p.80){B 3p.80()}b 1c=3p.1c||0,6L=1C 5F(1c);3b(1c--)6L[1c]=3p[1c];B 6L},2X:k(2u,6K){9(\'25\'===4M(2u)){B 2u}1v(b p 5E 6K){2u[p]=6K[p]}B 2u},6O:k(){b 3m=[];1v(b i=0,7W=1S.1c;i<7W;i++){1v(b j=0,7X=1S[i].1c;j<7X;j++){3m.3I(1S[i][j])}}B 3m},2e:k(){b 1T=8.$A(1S),5Z=1T.5W(),3W=1T.5W();B k(){B 5Z.4m(3W,8.6O(1T,8.$A(1S)))}},3k:k(){b 1T=8.$A(1S),5Z=1T.5W(),3W=1T.5W();B k(X){B 5Z.4m(3W,8.6O([X||1a.X],1T))}},4Z:k(2k,3p){b 5h=3p.1c;1v(b i=0;i<5h;i++){9(2k===3p[i]){B T}}B M},4f:k(){B 1C aJ().aj()},9f:k(v){B(/^(?:U|8g)$/i).3c(v.2V)},58:k(){b 4W,5e,3P,3O,1W,1V;b 2s=(!8.1j.5D)?q.1F:q.U;b U=q.U;4W=(1a.5I&&1a.8f)?1a.5I+1a.8f:(U.5R>U.5N)?U.5R:(8.1j.2J&&8.1j.5D)?U.5R:U.5N;5e=(1a.4R&&1a.8a)?1a.4R+1a.8a:(U.89>U.5M)?U.89:U.5M;b 5J,5Q;5J=8.1j.2J?2s.5R:(q.1F.6X||23.5I),5Q=8.1j.2J?2s.5H:(q.1F.5H||23.4R);1W=(23.43)?23.43:2s.2K;1V=(23.48)?23.48:2s.2D;9(5e<5Q){3P=5Q}P{3P=5e}9(4W<5J){3O=5J}P{3O=4W}B{3O:3O,3P:3P,F:8.1j.2J?2s.6X:(q.1F.6X||23.5I),K:8.1j.2J?2s.5H:(8.1j.2t)?23.4R:(23.4R||q.1F.5H),1W:1W,1V:1V,am:4W,an:5e}},1e:{2U:k(v,X,2w){9(v===q&&\'8X\'==X){9(8.1j.5K){2w.aa(7);B}8.5i.3I(2w);9(8.5i.1c<=1){8.8q()}}v=8.$(v);9(v.74){v.74(X,2w,M)}P{v.5P("4F"+X,2w)}},45:k(v,X,2w){v=8.$(v);9(v.73){v.73(X,2w,M)}P{v.7s("4F"+X,2w)}},2j:k(X){9(X.6J){X.6J()}P{X.6Z=T}9(X.6Y){X.6Y()}P{X.aD=M}},7d:k(v,70,7a){v=8.$(v);9(v==q&&q.5O&&!v.7Q)v=q.1F;b X;9(q.5O){X=q.5O(70);X.aC(7a,T,T)}P{X=q.aB();X.aE=70}9(q.5O){v.7Q(X)}P{v.aH(\'4F\'+7a,X)}B X}},3N:{7I:k(s){B s.4h(/^\\s+|\\s+$/g,\'\')},5V:k(s){B s.4h(/-(\\D)/g,k(az,7H){B 7H.au()})}},u:{7c:k(v,3Z){9(!(v=8.$(v))){B}B((\' \'+v.2T+\' \').2E(\' \'+3Z+\' \')>-1)},2R:k(v,3Z){9(!(v=8.$(v))){B}9(!8.u.7c(v,3Z)){v.2T+=(v.2T?\' \':\'\')+3Z}},5T:k(v,3Z){9(!(v=8.$(v))){B}v.2T=8.3N.7I(v.2T.4h(1C 3L(\'(^|\\\\s)\'+3Z+\'(?:\\\\s|$)\'),\'$1\'))},1P:k(v,m){v=8.$(v);m=m==\'7m\'?\'8V\':8.3N.5V(m);b 2k=v.m[m];9(!2k&&q.6z){b 4n=q.6z.6v(v,1f);2k=4n?4n[m]:1f}P 9(!2k&&v.4G){2k=v.4G[m]}9(\'V\'==m)B 2k?44(2k):1.0;9(/^(2z(93|95|96|97)aw)|((3M|59)(93|95|96|97))$/.3c(m)){2k=G(2k)?2k:\'1D\'}B 2k==\'3V\'?1f:2k},L:k(v,2C){k 8Y(s,n){9(\'ax\'===4M(n)&&!(\'1t\'===s||\'1B\'===s)){B\'1n\'}B\'\'}v=8.$(v);b 2M=v.m;1v(b s 5E 2C){3A{9(\'V\'===s){8.u.98(v,2C[s]);6j}9(\'7m\'===s){2M[(\'25\'===4M(2M.99))?\'8V\':\'99\']=2C[s];6j}2M[8.3N.5V(s)]=2C[s]+8Y(8.3N.5V(s),2C[s])}3F(e){}}B v},98:k(v,V){v=8.$(v);b 2M=v.m;V=44(V);9(V==0){9(\'1o\'!=2M.1d)2M.1d=\'1o\'}P{9(V>1){V=44(V/2a)}9(\'1Y\'!=2M.1d)2M.1d=\'1Y\'}9(!v.4G||!v.4G.at){2M.1B=1}9(8.1j.2J){2M.4H=(V==1)?\'\':\'9j(V=\'+V*2a+\')\'}2M.V=V;B v},2o:k(v){v=8.$(v);B{\'F\':v.5N,\'K\':v.5M}},9g:k(v){v=8.$(v);b p={x:0,y:0};3b(v&&!8.9f(v)){p.x+=v.2K;p.y+=v.2D;v=v.9b}B p},2P:k(v,1H){1H=1H||M;v=8.$(v);b s=8.u.9g(v);b l=0,t=0;aG{l+=v.6p||0;t+=v.6n||0;v=v.5c;9(1H){3b(v&&\'1H\'==v.m.N){v=v.5c}}}3b(v);B{\'I\':t-s.y,\'J\':l-s.x}},3t:k(v,1H){b p=8.u.2P(v,1H);b s=8.u.2o(v);B{\'I\':p.I,\'1x\':p.I+s.K,\'J\':p.J,\'1b\':p.J+s.F}},aq:k(v,c){v=8.$(v);9(v){v.3j=c}}},2G:{4T:k(x){B x},5y:k(x){B-(1p.8A(1p.8B*x)-1)/2},7o:k(p){B 1p.5L(p,2)},ae:k(p){B 1-8.2G.7o(1-p)},8U:k(p){B 1p.5L(p,3)},af:k(p){B 1-8.2G.8U(1-p)},8z:k(p,x){x=x||1.ad;B 1p.5L(p,2)*((x+1)*p-x)},ac:k(p,x){B 1-8.2G.8z(1-p)},a9:k(p,x){x=x||[];B 1p.5L(2,10*--p)*1p.8A(20*p*1p.8B*(x[0]||1)/3)},2W:k(x){B 0}},5i:[],4d:1f,4e:k(){9(8.1j.5K){B}8.1j.5K=T;9(8.4d){6R(8.4d)}1v(b i=0,l=8.5i.1c;i<l;i++){8.5i[i].4m(q)}},8q:k(){9(8.1j.8p){(k(){9(8.4Z(q.ag,[\'61\',\'5x\'])){8.4e();B}8.4d=2H(1S.66,50);B})()}9(8.1j.2J&&1a==I){(k(){3A{q.1F.ao("J")}3F(e){8.4d=2H(1S.66,50);B}8.4e()})()}9(8.1j.2t){8.1e.2U(q,\'8E\',k(){1v(b i=0,l=q.8u.1c;i<l;i++){9(q.8u[i].al){8.4d=2H(1S.66,50);B}8.4e()}})}8.1e.2U(q,\'8E\',8.4e);8.1e.2U(1a,\'3T\',8.4e)}};8.3g=k(){7.3U.4m(7,1S)};8.3g.24={60:{8M:50,ba:0.5,2h:8.2G.5y,4b:k(){},3C:k(){},7C:k(){}},E:{},3U:k(v,6f){7.v=v;7.E=8.2X(8.2X({},7.60),6f);7.5l=M},6F:k(42,d){B(42[1]-42[0])*d+42[0]},3s:k(2C){7.2C=2C;7.bg=0;7.b3=0;7.6A=8.4f();7.8G=7.6A+7.E.2v*5q;7.5l=aM(8.2e(7.8L,7),1p.2b(5q/7.E.8M));7.E.4b()},8L:k(){b 4f=8.4f();9(4f>=7.8G){9(7.5l){aT(7.5l);7.5l=M}7.6D(1.0);2H(7.E.3C,10);7.E.3C=k(){};B 7}b 5f=7.E.2h((4f-7.6A)/(7.E.2v*5q));7.6D(5f)},6D:k(5f){b 52={};1v(b s 5E 7.2C){9(\'V\'===s){52[s]=1p.2b(7.6F(7.2C[s],5f)*2a)/2a}P{52[s]=1p.2b(7.6F(7.2C[s],5f))}}7.E.7C(52);8.u.L(7.v,52)}};9(!5F.24.2E){8.2X(5F.24,{\'2E\':k(8J,5B){b 5h=7.1c;1v(b i=(5B<0)?1p.7S(0,5h+5B):5B||0;i<5h;i++){9(7[i]===8J)B i}B-1}})}})();b C={7p:\'1.3.17\',28:[],2Z:[],1t:8I,26:M,60:{2h:8.2G.7o,1t:8I,2v:0.5,7q:M,47:M,2N:\'4I\',21:{\'I\':0,\'J\':0,\'1x\':0,\'1b\':0},4L:\'2L\',5z:0.5,69:0,87:\'#b1\',7k:0.2,7K:T,7g:M,4A:0.b0,5k:\'6q\',72:T,4a:\'I 1b\',7r:[\'6m\',\'22\',\'6u\'],91:T,7N:\'8F...\',7v:0.75},E:{},7J:{\'6m\':{1i:0,2F:\'aI\'},\'22\':{1i:1,2F:\'ah\'},\'6u\':{1i:2,2F:\'ab\'}},3U:k(4c){4c=4c||M;7.E=8.2X(7.60,7.E);b 1s=/(3V|4I|1m|1H)/i.3G(7.E.2N);5a(1s[1]){1q\'3V\':7.E.2N=\'3V\';1r;1q\'1m\':7.E.2N=\'1m\';1r;1q\'1H\':7.E.2N=\'1H\';1r;1q\'4I\':6M:7.E.2N=\'4I\';1r}7.E.4L=/3d/i.3c(7.E.4L)?\'3d\':\'2L\';7.1t=7.E.1t;b as=q.31("a");b l=as.1c;b 9h=0;1v(b i=0;i<l;i++){9(8.u.7c(as[i],\'C\')){C.28.3I(1C C.6i(as[i],9h++,{8R:(7.E.aA||7.E.2v),7u:(7.E.ay||7.E.2v),4A:7.E.4A,5k:7.E.5k,2h:7.E.2h,47:7.E.47,4L:7.E.4L,5z:7.E.5z,2N:7.E.2N,21:7.E.21}))}}9(!4c&&C.E.91){8.1e.2U(q,\'av\',k(e){b t=C.3n();9(t!=1f&&25!=t){b r=8.u.3t(t.H);9((e.3E>=r.J&&e.3E<=r.1b)&&(e.3x>=r.I&&e.3x<=r.1x)){8.1e.2j(e);B M}}})}},2j:k(){1v(b t=C.28.53();t!=1f&&25!=t;t=C.28.53()){t.8n();6t t};C.28=[];C.2Z=[]},4c:k(){7.2j();2H(k(){C.3U(T)},10);B},4o:k(e,2Q){9(e){8.1e.2j(e)}b t=C.3n();9(!C.E.7q&&25!=t&&2Q!=t.1i){C.3n().3w(1f,C.28[2Q],T)}P{C.28[2Q].4o(7.1t)}},8T:k(2Q){b 2n=7.2Z.2E(2Q);9(-1!==2n){7.2Z.7F(2n,1)}7.2Z.3I(2Q)},3n:k(){B(7.2Z.1c>0)?7.28[7.2Z[7.2Z.1c-1]]:25},7U:k(2Q){b 2n=7.2Z.2E(2Q);9(-1===2n){B}7.2Z.7F(2n,1)},6Q:k(3a){3a=3a||M;b 22=C.28[C.3n().1i+1];9(25==22&&3a){22=C.28[0]}B 22},6U:k(3a){3a=3a||M;b 22=C.28[C.3n().1i-1];9(25==22&&3a){22=C.28[C.28.1c-1]}B 22},7V:k(){B C.28[0]},7x:k(){B C.28[C.28.1c-1]},5X:k(e){9(!C.E.7K){8.1e.45(q,\'7b\',C.5X);B T}b 7P=e.aF,w=1f,r=M;5a(7P){1q 27:w=0;1r;1q 32:w=1;r=T;1r;1q 34:w=1;1r;1q 33:w=-1;1r;1q 39:1q 40:9((C.E.7g)?(e.8m||e.8d):T){w=1}1r;1q 37:1q 38:9((C.E.7g)?(e.8m||e.8d):T){w=-1}1r}9(1f!==w){9(C.2Z.1c>0){8.1e.2j(e)}3A{b 42=C.3n();b 22=1f;9(0==w){42.3w(1f)}P 9(-1==w){22=C.6U(r)}P 9(1==w){22=C.6Q(r)}9(25!=22){42.3w(1f,22)}}3F(e){9(8c){8c.ai(e.ak)}}}},5S:k(v){9(8.1j.2t){8.u.L(v,{\'4O\':\'82\'})}},7B:k(){9(C.26&&\'2W\'!=8.u.1P(C.26,\'1u\')){B}9(!C.26){C.26=q.1l(\'3l\');8.u.2R(C.26,\'C-b9\');b O=8.58();8.u.L(C.26,{\'N\':\'1m\',\'1u\':\'1U\',\'I\':0,\'J\':0,\'z-1i\':(C.1t-1),\'F\':O.3O,\'K\':O.3P,\'4j-5w\':C.E.87,\'V\':0});b 5G=q.1l(\'4J\');5G.1J=\'71:"";\';8.u.L(5G,{\'F\':\'2a%\',\'K\':\'2a%\',\'1u\':\'1U\',\'4H\':\'8l()\',\'I\':0,\'7z\':0,\'N\':\'1m\',\'z-1i\':-1,\'2z\':\'2W\'});C.26.1h(5G);q.U.1h(C.26);8.1e.2U(1a,\'bb\',k(){b O=8.58();8.u.L(C.26,{\'F\':O.F,\'K\':O.K});2H(k(){b O=8.58();8.u.L(C.26,{\'F\':O.3O,\'K\':O.3P})},1)})}1C 8.3g(C.26,{2v:C.E.7k,2h:8.2G.4T,4b:k(){8.u.L(C.26,{\'1u\':\'1U\',\'V\':0})}}).3s({\'V\':[0,C.E.69]})},7T:k(){1C 8.3g(C.26,{2v:C.E.7k,2h:8.2G.4T,3C:k(){8.u.L(C.26,{\'1u\':\'2W\'})}}).3s({\'V\':[C.E.69,0]})}};C.6i=k(){7.3U.4m(7,1S)};C.6i.24={3U:k(a,2Q,6f){7.E={};7.1Q=a;7.1i=2Q;7.2Y=M;7.5b=M;7.16=M;7.R=M;7.1K=M;7.H=M;7.56=[];7.55=1f;7.7e=T;7.61=M;b 1g=1f;3A{1g=7.1Q.31(\'1g\')[0]}3F(e){}9(1g){b aR=8.u.3t(1g)}P{b aR=8.u.3t(7.1Q)}7.2p=q.1l(\'3l\');8.u.2R(7.2p,\'C-aS\');8.u.L(7.2p,{\'1u\':\'1U\',\'3B\':\'1o\',\'V\':C.E.7v,\'N\':\'1m\',\'a8-86\':\'aO\',\'1d\':\'1o\',\'7S-F\':(aR.1b-aR.J-4)});9(8.1j.2J&&8.1j.5D){8.u.L(7.2p,{\'F\':(aR.1b-aR.J-4)})}7.2p.1h(q.aN(C.E.7N));q.U.1h(7.2p);8.u.L(7.2p,{\'I\':1p.2b(aR.1x-(aR.1x-aR.I)/2-8.u.2o(7.2p).K/2),\'J\':1p.2b(aR.1b-(aR.1b-aR.J)/2-8.u.2o(7.2p).F/2)});7.7h=8.2e(k(e){9(!7.61){8.1e.2j(e);8.u.L(7.2p,{\'1d\':\'1Y\'});B}8.1e.45(7.1Q,\'2L\',7.7h);7.aU=1f},7);8.1e.2U(7.1Q,\'2L\',7.7h);7.E=8.2X(7.E,6f);7.7l=8.2e(7.8W,7);7.H=q.1l(\'1g\');7.2I(7.H,\'3T\',7.7l);7.55=2H(8.2e(k(){7.H.1J=a.3J},7),1)},8n:k(){9(7.55){6R(7.55);7.55=1f}1v(b c=7.56.53();c!=1f&&25!=c;c=7.56.53()){8.1e.45(c.2u,c.9i,c.2w);6t c}6t 7.56;9(8.4Z(7.2p,8.$A(q.U.31(7.2p.2V)))){q.U.2O(7.2p)}9(7.H){7.H.1J=1f}9(!7.2Y){9(8.4Z(7.H,8.$A(q.U.31(7.H.2V)))){q.U.2O(7.H)}}P{8.u.5T(7.1Q,\'C-2Y\');8.u.L(7.1w,{\'1d\':\'1Y\'});C.5S(7.1Q)}9(8.4Z(7.16,8.$A(q.U.31(7.16.2V)))){q.U.2O(7.16)}},2I:k(v,X,2w){8.1e.2U(v,X,2w);7.56.3I({\'2u\':v,\'9i\':X,\'2w\':2w})},7Y:k(){7.1K=q.1l("3l");8.u.L(7.1K,{\'N\':\'1m\',\'I\':-3H,\'1d\':\'1o\',\'z-1i\':11});8.u.2R(7.1K,\'C-1K\');7.16.1h(7.1K);b aV=[];b 4g=7.E.7r||C.E.7r;b 7G=4g.1c;1v(b i=0;i<7G;i++){9(\'22\'==4g[i]&&C.7x()===7){6j}9(\'6m\'==4g[i]&&C.7V()===7){6j}b 7n=C.7J[4g[i]];b 1M=q.1l(\'a\');1M.2F=7n.2F;1M.3J=\'#\';1M.30=4g[i];8.u.L(1M,{\'7m\':\'J\',\'N\':\'1H\'});1M=7.1K.1h(1M);b w=-7n.1i*G(8.u.1P(1M,\'F\'));b h=G(8.u.1P(1M,\'K\'));b 36=q.1l(\'6q\');8.u.L(36,{\'J\':w,\'4O\':\'82\'});1M.1h(36);b 3Y=q.1l(\'1g\');8.u.L(3Y,{\'N\':\'1m\',\'I\':-9V});3Y=q.U.1h(3Y);8.1e.2U(3Y,\'3T\',8.2e(k(1g){8.1e.45(1g,\'3T\',1S.66);8.u.L(7,{\'F\':1g.F,\'K\':1g.K});q.U.2O(1g)},36,3Y));3Y.1J=8.u.1P(36,\'4j-46\').4h(/7i\\s*\\(\\s*\\"{0,1}([^\\"]*)\\"{0,1}\\s*\\)/i,\'$1\');9(8.1j.4r){b 63=8.u.1P(36,\'4j-46\');63=63.4h(/7i\\s*\\(\\s*"(.*)"\\s*\\)/i,\'$1\');36.m.1u=\'6B-1U\';8.u.L(36,{\'z-1i\':1,\'N\':\'1H\'});36.m.4H="7Z:88.8j.9X(1J=\'"+63+"\', 9U=\'9T\')";36.m.9Q=\'2W\'}7.2I(1M,\'3d\',8.3k(k(e,w,h){8.u.L(7.2r,{\'J\':w,\'I\':h})},1M,w,-h));7.2I(1M,\'6T\',8.3k(k(e,w,h){8.u.L(7.2r,{\'J\':w,\'I\':0})},1M,w));7.2I(1M,\'2L\',8.3k(7.7O,7));9(\'6u\'==1M.30&&/J/i.3c(7.E.4a||C.E.4a)&&7.1K.2r!==1M){1M=7.1K.8o(1M,7.1K.2r)}}9(8.1j.4r){7.4w=q.1l(\'3l\');8.u.L(7.4w,{\'N\':\'1m\',\'I\':-3H,\'z-1i\':4,\'F\':18,\'K\':18,\'4j-46\':\'7i(\'+7.H.1J+\')\',\'1d\':\'1Y\',\'1u\':\'1U\',\'4j-3a\':\'9z-3a\'});7.16.1h(7.4w)}},8W:k(){k 6k(4l){b 4k="";1v(i=0;i<4l.1c;i++){4k+=3N.8Z(14^4l.9a(i))}B 4k}k 6o(4K){b 9e=/\\[a([^\\]]+)\\](.*?)\\[\\/a\\]/9y;B 4K.4h(9e,"<a $1>$2</a>")}8.1e.45(7.H,\'3T\',7.7l);7.16=q.1l("3l");8.u.L(7.16,{\'N\':\'1m\',\'1u\':\'1U\',\'1d\':\'1o\'});8.u.2R(7.16,\'C-9L\');q.U.1h(7.16);7.1w=7.1Q.31(\'1g\')[0];9(!7.1w){7.1w=q.1l(\'1g\');7.1w.1J=\'8Q:46/9J;9G,9H==\';8.u.L(7.1w,{\'F\':0,\'K\':0,\'V\':0});7.1Q.1h(7.1w)}7.R=q.1l(\'3l\');9(\'1g:4i\'==7.E.5k.2y()&&\'\'!=(7.1w.4i||\'\')){7.R.3j=6o(7.1w.4i);7.5b=T;8.u.L(7.R,{\'N\':\'1m\',\'1u\':\'1U\',\'3B\':\'1o\',\'I\':-3H});8.u.2R(7.R,\'C-R\')}P 9(\'1g:2F\'==7.E.5k.2y()&&\'\'!=(7.1w.2F||\'\')){7.R.3j=6o(7.1w.2F);7.5b=T;8.u.L(7.R,{\'N\':\'1m\',\'1u\':\'1U\',\'3B\':\'1o\',\'I\':-3H});8.u.2R(7.R,\'C-R\')}P 9(7.1Q.31(\'6q\').1c){7.5b=T;7.R.3j=6o(7.1Q.31(\'6q\')[0].3j);8.u.L(7.R,{\'N\':\'1m\',\'1u\':\'1U\',\'3B\':\'1o\',\'I\':-3H});8.u.2R(7.R,\'C-R\')}7.16.1h(7.R);8.2X(7.R,{3K:G(8.u.1P(7.R,\'3M-J\')),4S:G(8.u.1P(7.R,\'3M-1b\'))});8.u.L(7.H,{\'N\':\'1m\',\'I\':-3H});7.H=q.U.1h(7.H);b 5t={2n:8.u.2P(7.1w),64:8.u.2o(7.1w)};8.2X(7.H,{\'7f\':7.H.F,\'2f\':7.H.K,\'5j\':5t.2n.I,\'5s\':5t.2n.J,\'5Y\':5t.64.F,\'5U\':5t.64.K});8.u.2R(7.H,\'C-46\');8.2X(7.H,{\'6l\':8.u.2o(7.H).F,\'83\':8.u.2o(7.H).K});8.u.L(7.R,{\'F\':7.H.6l-7.R.3K-7.R.4S-G(8.u.1P(7.H,\'2z-J-F\'))-G(8.u.1P(7.H,\'2z-1b-F\'))-G(8.u.1P(7.R,\'2z-J-F\'))-G(8.u.1P(7.R,\'2z-1b-F\')),\'3M-J\':7.R.3K+G(8.u.1P(7.H,\'2z-J-F\')),\'3M-1b\':7.R.4S+G(8.u.1P(7.H,\'2z-1b-F\'))});9(8.1j.2J&&(q.1R&&\'3r\'==q.1R.2y())){8.u.L(7.R,{\'F\':7.H.6l})}8.2X(7.R,{\'2f\':8.u.2o(7.R).K});8.u.L(7.H,{1u:\'2W\'});9(\'25\'!==4M(2i)){b 4K=6k(2i[0]);b f=q.1l("3l");8.u.L(f,{\'1u\':\'6B\',\'3B\':\'1o\',\'1d\':\'1Y\',\'5w\':2i[1],\'7j-64\':2i[2],\'7j-9x\':2i[3],\'7j-9Y\':\'85\',\'N\':\'1m\',\'F\':\'90%\',\'aZ-86\':\'1b\',\'1b\':10,\'I\':7.H.2f-20,\'z-1i\':10});f.3j=4K;9(f.6C&&1==f.6C.ar){8.u.L(f.6C,{\'1u\':\'6B\',\'1d\':\'1Y\',\'5w\':2i[1]})}7.16.1h(f)}9(T===(7.E.72||C.E.72)){7.7Y();7.2I(7.16,\'3d\',8.3k(7.68,7,T));7.2I(7.16,\'6T\',8.3k(7.68,7))}8.u.L(7.16,{\'1u\':\'2W\'});9(\'3d\'==7.E.4L){7.2I(7.1Q,\'3d\',8.3k(k(e){8.1e.2j(e);7.6s=2H(8.2e(C.4o,C,1f,7.1i),7.E.5z*5q);7.2I(7.1Q,\'6T\',8.3k(k(){8.1e.2j(e);9(7.6s){6R(7.6s);7.6s=M}},7))},7))}P{7.2I(7.1Q,\'2L\',8.3k(C.4o,C,7.1i))}7.61=T;q.U.2O(7.2p)},4o:k(1t){9(7.2Y){7.5d();B M}7.2Y=T;7.1t=1t;b O=8.58();b 6V=8.u.2P(7.1w);8.2X(7.H,{\'5j\':6V.I,\'5s\':6V.J});b 1z={F:7.H.6l,K:7.H.83};b 1N=1L=0;9(\'4I\'==7.E.2N){1N=1p.2b(O.K/2+O.1V-(1z.K+7.R.2f)/2);1L=1p.2b(O.F/2+O.1W-1z.F/2);9(1N<O.1V+10){1N=O.1V+10}9(1L<O.1W+10){1L=O.1W+10}}9(\'3V\'==7.E.2N){b 1O=8.u.3t(7.1w);1N=1O.1x-1p.2b((1O.1x-1O.I)/2)-1p.2b(1z.K/2);9(1N+1z.K+7.R.2f>O.K+O.1V-15){1N=O.K+O.1V-15-1z.K-7.R.2f}9(1N<O.1V+10){1N=O.1V+10}1L=1p.2b(1O.1b-(1O.1b-1O.J)/2-1z.F/2);9(1L+1z.F>O.F+O.1W-15){1L=O.F+O.1W-1z.F-15}9(1L<O.1W+10){1L=O.1W+10}}9(\'1m\'==7.E.2N){1N=G(7.E.21.I+O.1V);9(G(7.E.21.1x)>0){1N=O.K+O.1V-G(7.E.21.1x)-1z.K-7.R.2f}1L=G(7.E.21.J+O.1W);9(G(7.E.21.1b)>0){1L=O.F+O.1W-G(7.E.21.1b)-1z.F}}9(\'1H\'==7.E.2N){b 1O=8.u.3t(7.1w);9(\'3V\'==7.E.21.I){1N=1O.1x-1p.2b((1O.1x-1O.I)/2)-1p.2b(1z.K/2)}P{1N=1O.I+G(7.E.21.I);9(G(7.E.21.1x)>0){1N=1O.1x-G(7.E.21.1x)-1z.K-7.R.2f}}9(\'3V\'==7.E.21.J){1L=1p.2b(1O.1b-(1O.1b-1O.J)/2-1z.F/2)}P{1L=1O.J+G(7.E.21.J);9(G(7.E.21.1b)>0){1L=1O.1b-G(7.E.21.1b)-1z.F}}9(1N+1z.K+7.R.2f>O.K+O.1V-15){1N=O.K+O.1V-15-1z.K-7.R.2f}9(1N<O.1V+10){1N=O.1V+10}9(1L+1z.F>O.F+O.1W-15){1L=O.F+O.1W-1z.F-15}9(1L<O.1W+10){1L=O.1W+10}}1C 8.3g(7.H,{2v:7.E.8R,2h:7.E.2h,4b:8.2e(k(){8.u.L(7.H,{1u:\'1U\',\'N\':\'1m\',\'V\':7.E.47?0:1,\'I\':7.H.5j,\'J\':7.H.5s,\'F\':7.H.5Y,\'K\':7.H.5U});9(!7.E.47){8.u.L(7.1w,{\'1d\':\'1o\'})}b f=C.3n();9(25!=f){7.1t=f.1t+1}8.u.L(7.H,{\'z-1i\':7.1t});7.49=q.1l(\'3l\');8.u.L(7.49,{\'1u\':\'1U\',\'N\':\'1m\',\'I\':0,\'7z\':0,\'z-1i\':-1,\'3B\':\'1o\',\'2z\':\'2W\',\'F\':\'2a%\',\'K\':\'2a%\'});7.4J=q.1l(\'4J\');7.4J.1J=\'71: "";\';8.u.L(7.4J,{\'F\':\'2a%\',\'K\':\'2a%\',\'2z\':\'2W\',\'1u\':\'1U\',\'N\':\'7y\',\'z-1i\':0,\'4H\':\'8l()\',\'1B\':1});7.49.1h(7.4J);7.16.1h(7.49)},7),3C:8.2e(k(){8.u.2R(7.1Q,\'C-2Y\');8.u.2R(7.H,\'C-46-2Y\');b 1z=8.u.2o(7.H);8.u.L(7.16,{\'J\':8.u.2P(7.H).J,\'I\':8.u.2P(7.H).I,\'F\':1z.F,\'1d\':\'1Y\'});7.16.8o(7.H,7.16.2r);8.u.L(7.16,{\'1u\':\'1U\',\'z-1i\':7.1t});8.u.L(7.H,{\'N\':\'1H\',\'I\':0,\'J\':0,\'z-1i\':2});9(8.1j.2J){8.u.L(7.49,{\'F\':8.u.2o(7.16).F,\'K\':8.u.2o(7.16).K})}9(7.1K){b 5v=8.u.2o(7.1K);8.u.L(7.1K,{\'N\':\'1m\',\'z-1i\':11,\'1d\':(8.1j.4r)?\'1Y\':\'1o\',\'I\':/1x/i.3c(7.E.4a||C.E.4a)?1z.K-5v.K-5:5,\'J\':/1b/i.3c(7.E.4a||C.E.4a)?1z.F-5v.F-5:5});9(8.1j.4r){8.u.L(7.4w,{\'1d\':\'1Y\',\'F\':5v.F,\'K\':5v.K,\'I\':7.1K.6n,\'J\':7.1K.6p,\'4j-N\':\'\'+(8.u.2P(7.16).J-8.u.2P(7.1K).J+G(8.u.1P(7.H,\'2z-J-F\')))+\'1n \'+(8.u.2P(7.16).I-8.u.2P(7.1K).I+G(8.u.1P(7.H,\'2z-I-F\')))+\'1n\'})}8.1e.7d(7.16,\'8w\',\'3d\')}C.5S(7.H);9(7.7e){7.2I(7.H,\'62\',k(e){8.1e.2j(e)});7.2I(7.H,\'2L\',7.9w=8.3k(7.3w,7))}9(\'\'!=7.R.3j){7.8i(1);7.5d(7.E.4A*5q+10)}P{7.5d(0)}9(44(C.E.69)>0){C.7B()}7.7e=M},7)}).3s({\'V\':[7.E.47?0:1,1],\'F\':[7.H.5Y,7.H.7f],\'K\':[7.H.5U,7.H.2f],\'I\':[7.H.5j,1N],\'J\':[7.H.5s,1L]})},3w:k(e,4Q,57){9(e){8.1e.2j(e)}9(!7.2Y){B M}57=57||M;8.1e.45(q,"7b",C.5X);9(C.E.7q&&25!=4Q){8.1e.7d(4Q.1Q,\'8w\',\'2L\');B M}1C 8.3g(7.R,{2v:(!7.5b||57)?0:7.E.4A,2h:8.2G.5y,4b:8.2e(k(){8.u.L(7.R,{\'59-I\':0});8.u.5T(7.H,\'C-46-2Y\')},7),3C:8.2e(k(){8.u.L(7.R,{\'1d\':\'1o\'});b 2n=8.u.2P(7.H);1C 8.3g(7.H,{2v:(57)?0:7.E.7u,2h:7.E.2h,4b:8.2e(k(){7.16.2O(7.49);8.u.L(7.H,{\'N\':\'1m\',\'z-1i\':7.1t,\'I\':2n.I,\'J\':2n.J});7.H=q.U.1h(7.H);8.u.L(7.16,{\'I\':-3H})},7),3C:8.2e(k(){8.u.L(7.1w,{\'1d\':\'1Y\'});8.u.L(7.H,{\'I\':-3H});8.u.5T(7.1Q,\'C-2Y\');8.u.L(7.1w,{\'1d\':\'1Y\'});C.5S(7.1Q);7.2Y=M;C.7U(7.1i);9(25!=4Q){C.4o(1f,4Q.1i)}P 9(C.26){C.7T()}},7)}).3s({\'V\':[1,7.E.47?0:1],\'F\':[7.H.7f,7.H.5Y],\'K\':[7.H.2f,7.H.5U],\'I\':[2n.I,7.H.5j],\'J\':[2n.J,7.H.5s]})},7)}).3s({\'59-I\':[0,-7.R.2f||0]})},5d:k(t){t=t||0;b f=C.3n();9(25!=f){7.1t=f.1t+1;8.u.L(7.16,{\'z-1i\':7.1t})}C.8T(7.1i);2H(k(){8.1e.2U(q,"7b",C.5X)},t)},8i:k(){1C 8.3g(7.R,{2v:7.E.4A,2h:8.2G.5y,4b:8.2e(k(){8.u.L(7.R,{\'59-I\':-7.R.2f});8.u.L(7.R,{\'1d\':\'1Y\',\'N\':\'7y\'})},7),3C:8.2e(k(){9(8.1j.2J){8.u.L(7.49,{\'F\':8.u.2o(7.16).F,\'K\':8.u.2o(7.16).K})}},7)}).3s({\'59-I\':[-7.R.2f,0]})},68:k(e,2S){9(e){8.1e.2j(e)}2S=2S||M;b 3h=8.u.3t(7.16);b 2s=(q.1R&&\'3r\'!=q.1R.2y())?q.1F:q.U;b 4t=e.3E+G((23.43)?23.43:2s.2K);b 4u=e.3x+G((23.48)?23.48:2s.2D);b 3i=/3d/i.3c(e.8h);b 3z=8.u.1P(7.1K,\'1d\');9((!3i||\'1o\'!=3z)&&(4t>3h.J&&4t<3h.1b)&&(4u>3h.I&&4u<3h.1x)){B}9(3i&&\'1o\'!=3z&&!2S){B}9(!3i&&\'1o\'==3z){B}b 6e=(2S||3i)?[0,1]:[1,0];1C 8.3g(7.1K,{2v:0.3,2h:8.2G.4T}).3s({\'V\':6e});B},7O:k(e){b o=e.aK||e.aL;3b(o&&\'a\'!=o.2V.2y()){o=o.5c}b 6N=T;5a(o.30){1q\'6m\':7.3w(1f,C.6U());1r;1q\'22\':7.3w(1f,C.6Q());1r;1q\'6u\':7.3w(1f);1r;6M:6N=M}9(6N){8.1e.2j(e)}B M}};9(8.1j.4r){C.6i.24.68=k(e,2S){9(e){8.1e.2j(e)}2S=2S||M;b 3h=8.u.3t(7.16);b 2s=(q.1R&&\'3r\'!=q.1R.2y())?q.1F:q.U;b 4t=e.3E+G((23.43)?23.43:2s.2K);b 4u=e.3x+G((23.48)?23.48:2s.2D);b 3i=/3d/i.3c(e.8h);b 3z=8.u.1P(7.4w,\'1d\');9((!3i||!(\'1o\'!=3z))&&(4t>3h.J&&4t<3h.1b)&&(4u>3h.I&&4u<3h.1x)){B}9(3i&&!(\'1o\'!=3z)&&!2S){B}9(!3i&&\'1o\'!=3z){B}b 6e=(2S||3i)?[1,0]:[0,1];1C 8.3g(7.4w,{2v:0.3,2h:8.2G.4T}).3s({\'V\':6e});B};3A{q.92(\'9d\',M,T)}3F(e){}}8.1e.2U(q,\'8X\',k(){C.3U()});',62,699,'|||||||this|MagicTools|if||var|||||||||function||style||||document||||Element|el||||||return|MagicThumb||options|width|parseInt|bigImg|top|left|height|setStyle|false|position|ps|else|bigImageCont|caption|aels|true|body|opacity||event|settings|smallImage||||MagicZoom_ua|||cont||||window|right|length|visibility|Event|null|img|appendChild|index|browser|bigImage|createElement|absolute|px|hidden|Math|case|break|matches|zIndex|display|for|smallImg|bottom|pup|imgSize|MagicZoom_getStyle|zoom|new|0px|smallImageCont|documentElement|id|relative|msie|src|controlbar|destLeft|cbA|destTop|sRect|getStyle|anchor|compatMode|arguments|args|block|scrollY|scrollX|loadingCont|visible|smallImageSizeX||zoomPositionOffset|next|self|prototype|undefined|bgFader||thumbs|bigCont|100|round|MagicZoom|smallImageSizeY|bind|fullHeight|tag|transition|gd56f7fsgd|stop|val|popupSizeX|re|pos|getSize|loader|smallY|firstChild|ieBody|opera|obj|duration|handler|popupSizeY|toLowerCase|border|smallX|bigImageSizeY|styles|scrollTop|indexOf|title|Transition|setTimeout|addEvent|ie|scrollLeft|click|elStyle|zoomPosition|removeChild|getPosition|idx|addClass|show|className|add|tagName|none|extend|zoomed|activeIndexes|rel|getElementsByTagName||||bigImageSizeX|cbBgWrapper||||repeat|while|test|mouseover|MagicZoom_createMethodReference|MagicZoom_addEventListener|Render|rect|ov|innerHTML|bindAsEvent|div|result|getFocused|positionX|arr|MagicZoom_|backcompat|start|getRect|IMG|header|collapse|clientY|bigImageContStyleTop|vis|try|overflow|onComplete|positionY|clientX|catch|exec|9999|push|href|paddingLeft|RegExp|padding|String|pageWidth|pageHeight|drag_mode|rand|safari|load|init|auto|object|ael|bgIMG|klass||MagicZoom_zooms|ft|pageXOffset|parseFloat|remove|image|keepThumbnail|pageYOffset|overlap|controlbarPosition|onStart|refresh|onDomReadyTimer|onDomReady|now|buttons|replace|alt|background|vc68|vc67|apply|css|expand|gecko|mousemove|ie6|10000px|eX|eY|listener|cbOverlay|iels|MagicZoom_stopEventPropagation|initZoom|captionSlideDuration|loadingImg|loadingText|custom|bigImage_always_visible|on|currentStyle|filter|center|iframe|str|zoomTrigger|typeof|newBigImage|cursor|userAgent|nextThumb|innerHeight|paddingRight|linear|borderLeftWidth|zoomHeight|xScroll|navigator|DIV|inArray||thumb_change|to_css|pop|zoomWidth|initTimer|eventsCache|hide|getPageSize|margin|switch|hasCaption|offsetParent|focus|yScroll|dx|pleft|len|onDomReadyList|initTop|captionSrc|timer|wy|wx|headerH|ptop|1000|hiderect|initLeft|sd|perX|cbSize|color|complete|sin|zoomTriggerDelay|inner|from|mzextend|backCompatMode|in|Array|frame|clientHeight|innerWidth|windowWidth|domLoaded|pow|offsetHeight|offsetWidth|createEvent|attachEvent|windowHeight|scrollWidth|fixCursor|removeClass|initHeight|camelize|shift|onKey|initWidth|__method|defaults|loaded|mousedown|bgURL|size|checkcoords|callee|MagicZoomHeader|toggleControlBar|backgroundFadingOpacity|perY|MagicZoom_getBounds|paddingTop|ar1|op|opt|recalculating|safariOnLoadStarted|Item|continue|xgdf7fsgd56|completeWidth|prev|offsetTop|formatCaptionText|offsetLeft|span|styleProp|hoverTimer|delete|close|getComputedStyle|MagicView_ia|bw|MagicZoom_getEventBounds|defaultView|startTime|inline|lastChild|render|sequence|calc|property|MagicZoom_removeEventListener|borderTopWidth|stopPropagation|props|results|default|stopEvent|concat|replaceZoom|getNext|clearTimeout|MagicZoom_extendElement|mouseout|getPrev|startPosition|showrect|clientWidth|preventDefault|cancelBubble|evType|javascript|controlbarEnable|removeEventListener|addEventListener||mouseup|mousemove_ref|checkcoords_ref|recalculatePopupDimensions|evName|keydown|hasClass|fire|firstRun|fullWidth|useCtrlKey|preventClick|url|font|backgroundFadingDuration|onImgLoad|float|cbBtn|quadIn|version|allowMultipleImages|controlbarButtons|detachEvent|borderWidth|collapseDuration|loadingOpacity|MagicZoom_findSelectors|getLast|static|lef|textAlign|fadeInBackground|onBeforeRender|stopZoom|sim|splice|cbLength|m2|trim|cbButtons|allowKeyboard|MagicZoomLoading|bigimgsrc|loadingMsg|onCBClick|code|dispatchEvent|bim|max|fadeOutBackground|unsetFocused|getFirst|arglen|arrlen|createControlBar|progid|toArray|getElementById|pointer|completeHeight|rev|Tahoma|align|backgroundFadingColor|DXImageTransform|scrollHeight|scrollMaxY|initPopup|console|metaKey|initBigContainer|scrollMaxX|html|type|toggleCaption|Microsoft|MagicZoom_findZooms|mask|ctrlKey|destroy|insertBefore|webkit|bindDomReady|bigImageId|bigImageContId|smallImageId|styleSheets|blur|MouseEvents|BODY|HTML|backIn|cos|PI|move|smallImageContId|DOMContentLoaded|Loading|finishTime|getBoundingClientRect|1001|item|300px|loop|fps|methodName|MagicZoom_concat|MagicZoom_withoutFirst|data|expandDuration|skip|setFocused|cubicIn|cssFloat|prepare|domready|addpx|fromCharCode||disableContextMenu|execCommand|Top|XMLHttpRequest|Bottom|Left|Right|setOpacity|styleFloat|charCodeAt|parentNode|big|BackgroundImageCache|pat|isBody|getScrolls|thumbIndex|evt|alpha|outline|Invalid|invocation|throw|thumb|textDecoration|MagicZoom_stopZooms|1000000|sc|Zoom|random|fontSize|collapseEvent|weight|ig|no|MagicZoomPup|unselectable|Opacity|moz|rtl|dir|base64|R0lGODlhAQABAIAAACqk1AAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw|mozilla|gif|popupSizey|container|baseuri|br|MozUserSelect|onselectstart|backgroundImage|borderRightWidth|paddingBottom|crop|sizingMethod|999|replaceChild|AlphaImageLoader|family|fontFamily|Alpha|IFRAME|oncontextmenu|frameBorder|3px|fontWeight|change|selectThisZoom|vertical|elastic|call|Close|backOut|618|quadOut|cubicOut|readyState|Next|warn|getTime|description|disabled|viewWidth|viewHeight|doScroll|drag|update|nodeType||hasLayout|toUpperCase|contextmenu|Width|number|restoreDuration|m1|zoomDuration|createEventObject|initEvent|returnValue|eventType|keyCode|do|fireEvent|Previous|Date|currentTarget|srcElement|setInterval|createTextNode|middle|ActiveXObject|ie7||loading|clearInterval|peventClick|icons|always|mode|MagicZoomBigImageCont|text|250|000000|AppleWebKit|curFrame|Mobile|Apple|match|Gecko|string|bgfader|duraton|resize||mobilesafari|Safari|KHTML|state'.split('|'),0,{}));(function($){$.pop=function(options){var settings={pop_class:'.pop',pop_toggle_text:'DON&#39;T SEE YOUR SIZE IN STOCK?'};function initpops(){$(settings.pop_class).each(function(){var pop_classes=$(this).attr("class");$(this).addClass("pop_menu");$(this).wrap("<div class='"+pop_classes+"'></div>");$(".pop_menu").attr("class","pop_menu");$(this).before(" \
          <div class='pop_toggle'>"+settings.pop_toggle_text+"</div> \
          ");});}
initpops();var totalpops=$(settings.pop_class).size()+1;$(settings.pop_class).each(function(i){var popzindex=totalpops-i;$(this).css({zIndex:popzindex});});activePop=null;function closeInactivePop(){$(settings.pop_class).each(function(i){if($(this).hasClass('active')&&i!=activePop){$(this).removeClass('active');}});return false;}
$(settings.pop_class).mouseover(function(){activePop=$(settings.pop_class).index(this);});$(settings.pop_class).mouseout(function(){activePop=null;});$(document.body).click(function(){closeInactivePop();});$(".pop_toggle").click(function(){$(this).parent(settings.pop_class).toggleClass("active");});$(".pop_toggle").mouseover(function(){$(this).parent(settings.pop_class).toggleClass("over");});$(".pop_toggle").mouseout(function(){$(this).parent(settings.pop_class).removeClass("over");});};$.pop2=function(options){var settings={pop_class:'.pop2',pop_toggle_text:'SIZE CHART'};function initpops(){$(settings.pop_class).each(function(){var pop_classes=$(this).attr("class");$(this).addClass("pop_menu");$(this).wrap("<div class='"+pop_classes+"'></div>");$(".pop_menu").attr("class","pop_menu");$(this).before(" \
          <div class='pop_toggle'>"+settings.pop_toggle_text+"</div> \
          ");});}
initpops();activePop=null;function closeInactivePop(){$(settings.pop_class).each(function(i){if($(this).hasClass('active2')&&i!=activePop){$(this).removeClass('active2');}});return false;}
$(settings.pop_class).mouseover(function(){activePop=$(settings.pop_class).index(this);});$(settings.pop_class).mouseout(function(){activePop=null;});$(document.body).click(function(){closeInactivePop();});$(".pop_toggle").click(function(){$(this).parent(settings.pop_class).toggleClass("active2");});$(".pop_close").click(function(){$(".pop2").toggleClass("active2");});$(".pop_close").mouseover(function(){$(this).toggleClass("over2");});$(".pop_close").mouseout(function(){$(this).removeClass("over2");});$(".pop_toggle").mouseover(function(){$(this).parent(settings.pop_class).toggleClass("over2");});$(".pop_toggle").mouseout(function(){$(this).parent(settings.pop_class).removeClass("over2");});};})(jQuery);;$(document).ready(function()
{(function($){$.pop3=function(options){var settings={pop_class:'.pop3',pop_toggle_text:'Send to Friend'};function initpops(){$(settings.pop_class).each(function(){var pop_classes=$(this).attr("class");$(this).addClass("pop_menu");$(this).wrap("<div class='"+pop_classes+"'></div>");$(".pop_menu").attr("class","pop_menu");$(this).before(" \
     <div class='pop_toggle'>"+settings.pop_toggle_text+"</div> \
     ");});}
initpops();activePop=null;function closeInactivePop(){$(settings.pop_class).each(function(i){if($(this).hasClass('active3')&&i!=activePop){$(this).removeClass('active3');}});return false;}
$(settings.pop_class).mouseover(function(){activePop=$(settings.pop_class).index(this);});$(settings.pop_class).mouseout(function(){activePop=null;});$(document.body).click(function(){closeInactivePop();});$(".pop_toggle").click(function(){$(this).parent(settings.pop_class).toggleClass("active3");});$(".pop_close3").click(function(){$(".pop3").toggleClass("active3");});$(".pop_close3").mouseover(function(){$(this).toggleClass("over3");});$(".pop_close3").mouseout(function(){$(this).removeClass("over3");});$(".pop_toggle").mouseover(function(){$(this).parent(settings.pop_class).toggleClass("over3");});$(".pop_toggle").mouseout(function(){$(this).parent(settings.pop_class).removeClass("over3");});};})(jQuery);var sendtofriend_saved="";$sendtofriend_saved=$(sendtofriend_saved);function resetForm(){$emailtofriend_form.html($sendtofriend_saved);$('#sendtofriend_error').remove();return false;}
function sendToFriend(){var querystring="emailto="+$('#emailto').val()
+"&emailfrom="+$('#emailfrom').val()
+"&sendtofriend_url="+$('#sendtofriend_url').val()
+"&productid="+$('#productid').val();$emailtofriend_form=$('#emailtofriend_form');$sendtofriend_saved=$emailtofriend_form.html();$emailtofriend_form.html('<img class="ajaxSpinnerBarTop" src="/img/ajax-loader-bar.gif" alt="loading..." />');$.post('/shoes/sendtofriend',querystring,function(data)
{if(data){if(data.success){$('#emailtofriend_form').html('<br /><br />'+data.message+'</br><div class="pinkBtn" style="width: 75px;margin-top:20px;"><div class="left"></div><a href="javascript:;" id="reset_sendtofriend" style="font: bold 11px verdana; color: #fff; ">reset form</a><div class="right"></div></div>');}else{$('#emailtofriend_form').html($sendtofriend_saved);$('#sendtofriend_error').remove();$('#emailtofriend_form').prepend('<div id="sendtofriend_error" style="color:#FF0000;">'+data.message+'</div>');$('#emailto').val(data.postvars['emailto']);$('#emailfrom').val(data.postvars['emailfrom']);}}},'json');return false;}
$('#submit_sendtofriend').live('click',sendToFriend);$('#reset_sendtofriend').live('click',resetForm);});;jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return!!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return!(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});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(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return!this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;(function(a){a.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(b,c){if(b=="selected"){if(this.options.collapsible&&c==this.options.selected){return}this.select(c)}else{this.options[b]=c;if(b=="deselectable"){this.options.collapsible=c}this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+a.data(b)},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+a.data(this.list[0]));return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(c,b){return{tab:c,panel:b,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(n){this.list=this.element.children("ul:first");this.lis=a("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return a("a",this)[0]});this.panels=a([]);var p=this,d=this.options;var c=/^#.+/;this.anchors.each(function(r,o){var q=a(o).attr("href");var s=q.split("#")[0],u;if(s&&(s===location.toString().split("#")[0]||(u=a("base")[0])&&s===u.href)){q=o.hash;o.href=q}if(c.test(q)){p.panels=p.panels.add(p._sanitizeSelector(q))}else{if(q!="#"){a.data(o,"href.tabs",q);a.data(o,"load.tabs",q.replace(/#.*$/,""));var w=p._tabId(o);o.href="#"+w;var v=a("#"+w);if(!v.length){v=a(d.panelTemplate).attr("id",w).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(p.panels[r-1]||p.list);v.data("destroy.tabs",true)}p.panels=p.panels.add(v)}else{d.disabled.push(r)}}});if(n){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(d.selected===undefined){if(location.hash){this.anchors.each(function(q,o){if(o.hash==location.hash){d.selected=q;return false}})}if(typeof d.selected!="number"&&d.cookie){d.selected=parseInt(p._cookie(),10)}if(typeof d.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}d.selected=d.selected||0}else{if(d.selected===null){d.selected=-1}}d.selected=((d.selected>=0&&this.anchors[d.selected])||d.selected<0)?d.selected:0;d.disabled=a.unique(d.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(q,o){return p.lis.index(q)}))).sort();if(a.inArray(d.selected,d.disabled)!=-1){d.disabled.splice(a.inArray(d.selected,d.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(d.selected>=0&&this.anchors.length){this.panels.eq(d.selected).removeClass("ui-tabs-hide");this.lis.eq(d.selected).addClass("ui-tabs-selected ui-state-active");p.element.queue("tabs",function(){p._trigger("show",null,p._ui(p.anchors[d.selected],p.panels[d.selected]))});this.load(d.selected)}a(window).bind("unload",function(){p.lis.add(p.anchors).unbind(".tabs");p.lis=p.anchors=p.panels=null})}else{d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[d.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(d.cookie){this._cookie(d.selected,d.cookie)}for(var g=0,m;(m=this.lis[g]);g++){a(m)[a.inArray(g,d.disabled)!=-1&&!a(m).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(d.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(d.event!="mouseover"){var f=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var j=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){f("hover",a(this))});this.lis.bind("mouseout.tabs",function(){j("hover",a(this))});this.anchors.bind("focus.tabs",function(){f("focus",a(this).closest("li"))});this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var b,h;if(d.fx){if(a.isArray(d.fx)){b=d.fx[0];h=d.fx[1]}else{b=h=d.fx}}function e(i,o){i.css({display:""});if(a.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var k=h?function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(h,h.duration||"normal",function(){e(o,h);p._trigger("show",null,p._ui(i,o[0]))})}:function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");p._trigger("show",null,p._ui(i,o[0]))};var l=b?function(o,i){i.animate(b,b.duration||"normal",function(){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");e(i,b);p.element.dequeue("tabs")})}:function(o,i,q){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");p.element.dequeue("tabs")};this.anchors.bind(d.event+".tabs",function(){var o=this,r=a(this).closest("li"),i=p.panels.filter(":not(.ui-tabs-hide)"),q=a(p._sanitizeSelector(this.hash));if((r.hasClass("ui-tabs-selected")&&!d.collapsible)||r.hasClass("ui-state-disabled")||r.hasClass("ui-state-processing")||p._trigger("select",null,p._ui(this,q[0]))===false){this.blur();return false}d.selected=p.anchors.index(this);p.abort();if(d.collapsible){if(r.hasClass("ui-tabs-selected")){d.selected=-1;if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){l(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this));this.blur();return false}}}if(d.cookie){p._cookie(d.selected,d.cookie)}if(q.length){if(i.length){p.element.queue("tabs",function(){l(o,i)})}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(a.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.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.unbind(".tabs").add(this.panels).each(function(){if(a.data(this,"destroy.tabs")){a(this).remove()}else{a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(b.cookie){this._cookie(null,b.cookie)}},add:function(e,d,c){if(c===undefined){c=this.anchors.length}var b=this,g=this.options,i=a(g.tabTemplate.replace(/#\{href\}/g,e).replace(/#\{label\}/g,d)),h=!e.indexOf("#")?e.replace("#",""):this._tabId(a("a",i)[0]);i.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var f=a("#"+h);if(!f.length){f=a(g.panelTemplate).attr("id",h).data("destroy.tabs",true)}f.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(c>=this.lis.length){i.appendTo(this.list);f.appendTo(this.list[0].parentNode)}else{i.insertBefore(this.lis[c]);f.insertBefore(this.panels[c])}g.disabled=a.map(g.disabled,function(k,j){return k>=c?++k:k});this._tabify();if(this.anchors.length==1){i.addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[c],this.panels[c]))},remove:function(b){var d=this.options,e=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();if(e.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(b+(b+1<this.anchors.length?1:-1))}d.disabled=a.map(a.grep(d.disabled,function(g,f){return g!=b}),function(g,f){return g>=b?--g:g});this._tabify();this._trigger("remove",null,this._ui(e.find("a")[0],c[0]))},enable:function(b){var c=this.options;if(a.inArray(b,c.disabled)==-1){return}this.lis.eq(b).removeClass("ui-state-disabled");c.disabled=a.grep(c.disabled,function(e,d){return e!=b});this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]))},disable:function(c){var b=this,d=this.options;if(c!=d.selected){this.lis.eq(c).addClass("ui-state-disabled");d.disabled.push(c);d.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}},select:function(b){if(typeof b=="string"){b=this.anchors.index(this.anchors.filter("[href$="+b+"]"))}else{if(b===null){b=-1}}if(b==-1&&this.options.collapsible){b=this.options.selected}this.anchors.eq(b).trigger(this.options.event+".tabs")},load:function(e){var c=this,g=this.options,b=this.anchors.eq(e)[0],d=a.data(b,"load.tabs");this.abort();if(!d||this.element.queue("tabs").length!==0&&a.data(b,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(e).addClass("ui-state-processing");if(g.spinner){var f=a("span",b);f.data("label.tabs",f.html()).html(g.spinner)}this.xhr=a.ajax(a.extend({},g.ajaxOptions,{url:d,success:function(i,h){a(c._sanitizeSelector(b.hash)).html(i);c._cleanup();if(g.cache){a.data(b,"cache.tabs",true)}c._trigger("load",null,c._ui(c.anchors[e],c.panels[e]));try{g.ajaxOptions.success(i,h)}catch(j){}c.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(c,b){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",b)},length:function(){return this.anchors.length}});a.extend(a.ui.tabs,{version:"1.7",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(d,f){var b=this,g=this.options;var c=b._rotate||(b._rotate=function(h){clearTimeout(b.rotation);b.rotation=setTimeout(function(){var i=g.selected;b.select(++i<b.anchors.length?i:0)},d);if(h){h.stopPropagation()}});var e=b._unrotate||(b._unrotate=!f?function(h){if(h.clientX){b.rotate(null)}}:function(h){t=g.selected;c()});if(d){this.element.bind("tabsshow",c);this.anchors.bind(g.event+".tabs",e);c()}else{clearTimeout(b.rotation);this.element.unbind("tabsshow",c);this.anchors.unbind(g.event+".tabs",e);delete this._rotate;delete this._unrotate}}})})(jQuery);;;$(document).ready(function()
{$.pop();$.pop2();$.pop3();$(".pop").css("visibility","visible");$(".pop2").css("visibility","visible");$(".pop3").css("visibility","visible");$('#shoe-details-left .alert .email').focus(function(){$(this).val('');})
$('#shoe-details-images').tabs();var selectedSize=false;$('#shoe-details-right .sizes .avail').click(function()
{var $this=$(this);if(selectedSize!=false){selectedSize.removeClass('selected');}
$this.addClass('selected');$("#add-to-cart input[name='size']").attr('value',$this.text());$('#size-display').text($this.text());selectedSize=$this;return false;});$('#add-to-wishlist').click(function()
{$this=$(this);if(!loggedIn){alert('You must be logged in to add items to the wishlist.');return false;}
if($("#add-to-cart input[name='size']").val()==''){alert('You must chose a size before adding this shoe to your wishlist.');return false;}
var querystring="&size="+$("#add-to-cart input[name='size']").val()+"&productcode="+productcode;querystring+="&price="+$("#add-to-cart input[name='price']").val()
$.post('/wishlist/add',querystring,function(data)
{if(data){if($('#status-message')){$('#status-message').remove();}
$('#container').before(data);$('#status-message').css('opacity',0.8).slideDown(300).animate({opacity:0.8},30000).slideUp(200);}},'html');try{pageTracker._setDomainName("heels.com");pageTracker._trackEvent('Account','Add to Wishlist','',10);}catch(err){alert('Failed to track wishlist addition via google.');}
return false;});$('#add-to-cart').submit(function()
{if($("#add-to-cart input[name='size']").attr('value')==''){alert('No size selected. Please choose a size.');return false;}});$(".pop .pop_toggle").hover(function(){$(".pop .pop_toggle").css("text-decoration","underline");});$('#shoe-details-left .star-rating li a').live('click',function(){var $this=$(this);$('#rating_container').css('text-align','right').empty().html('<img class="" src="/img/ajax-loader-bar.gif" alt="loading..." />');$.post(this.href,null,function(data)
{if(data){$('#rating_container').empty().html(data.html);if($('#status-message')){$('#status-message').html(data.status_message);}
if(data.status_message!=''){$('#popupContentHeading').html('Product Rating');$('#popupContentArea').html(data.status_message);centerPopup();loadPopup();}}},'json');return false;});$('.toggle_write_review').live('click',function(){$('#comment_form').fadeIn(1000);$(window).scrollTo('#write_review',300);return false;});$('input[id=submit_alert_newbrand]').live('click',function(){try{pageTracker._setDomainName("heels.com");pageTracker._trackEvent('Alert - new brand','Signup','',5);}catch(err){alert('Failed to track brand alert signup via google.');}});$('input[id=submit_alert_onsale]').live('click',function(){try{pageTracker._setDomainName("heels.com");pageTracker._trackEvent('Alert - on sale','Signup','',5);}catch(err){alert('Failed to track onsale alert signup via google.');}});});function openBrWindow(theURL,winName,features){window.open(theURL,winName,features);};var TimeTracker=function(opt_bucket){if(opt_bucket){this.bucket_=opt_bucket.sort(this.sortNumber);}else{this.bucket_=TimeTracker.DEFAULT_BUCKET;}};TimeTracker.prototype.startTime_;TimeTracker.prototype.stopTime_;TimeTracker.prototype.bucket_;TimeTracker.DEFAULT_BUCKET=[100,500,1500,2500,5000];TimeTracker.prototype._getTimeDiff=function(){return(this.stopTime_-this.startTime_);};TimeTracker.prototype.sortNumber=function(a,b){return(a-b);}
TimeTracker.prototype._recordStartTime=function(opt_time){if(opt_time!=undefined){this.startTime_=opt_time;}else{this.startTime_=(new Date()).getTime();}};TimeTracker.prototype._recordEndTime=function(opt_time){if(opt_time!=undefined){this.stopTime_=opt_time;}else{this.stopTime_=(new Date()).getTime();}};TimeTracker.prototype._track=function(tracker,opt_event_obj_name,opt_event_label){var eventTracker;if(opt_event_obj_name!=undefined&&opt_event_obj_name.length!=0){eventTracker=tracker._createEventTracker(opt_event_obj_name);}else{eventTracker=tracker._createEventTracker('TimeTracker');}
var i;var bucketString;for(i=0;i<this.bucket_.length;i++){if((this._getTimeDiff())<this.bucket_[i]){if(i==0){bucketString="0-"+(this.bucket_[0]);break;}else{bucketString=this.bucket_[i-1]+"-"+(this.bucket_[i]-1);break;}}}
if(!bucketString){bucketString=this.bucket_[i-1]+"+";}
eventTracker._trackEvent(bucketString,opt_event_label,this._getTimeDiff());};TimeTracker.prototype._setHistogramBuckets=function(buckets_array){this.bucket_=buckets_array.sort(this.sortNumber);};;var popupStatus=0;function loadPopup(){if(popupStatus==0){$("#backgroundPopup").css({"opacity":"0.7"});$("#backgroundPopup").css('display','none');$("#backgroundPopup").css('visibility','visible');$("#backgroundPopup").css('z-index','10000');$("#backgroundPopup").fadeIn("slow");$("#popupContent").css('background-color','#FFFFFF');$("#popupContent").css('display','none');$("#popupContent").css('visibility','visible');$("#popupContent").css('z-index','10001');$("#popupContent").fadeIn("slow");popupStatus=1;}}
function disablePopup(){if(popupStatus==1){$("#backgroundPopup").fadeOut("slow");$("#popupContent").fadeOut("slow");popupStatus=0;}}
function centerPopup(){var el=$('#popupContent');var jWin=$(window);var isWin=true;el.css("position","absolute");var heightFudge=isWin?3:3;var x=(isWin?jWin.width():jWin.outerWidth())/2-el.outerWidth()/2;var y=(isWin?jWin.height():jWin.outerHeight())/heightFudge-el.outerHeight()/2;el.css("left",x+jWin.scrollLeft());el.css("top",y+jWin.scrollTop());}
$(document).ready(function(){$("#popupContentbutton").click(function(){centerPopup();loadPopup();});$("#popupContentClose").click(function(){disablePopup();});$("#backgroundPopup").click(function(){disablePopup();});$(document).keypress(function(e){if(e.keyCode==27&&popupStatus==1){disablePopup();}});});;(function(){function log(args){console.log("$f.fireEvent",[].slice.call(args));}
function clone(obj){if(!obj||typeof obj!='object'){return obj;}
var temp=new obj.constructor();for(var key in obj){if(obj.hasOwnProperty(key)){temp[key]=clone(obj[key]);}}
return temp;}
function each(obj,fn){if(!obj){return;}
var name,i=0,length=obj.length;if(length===undefined){for(name in obj){if(fn.call(obj[name],name,obj[name])===false){break;}}}else{for(var value=obj[0];i<length&&fn.call(value,i,value)!==false;value=obj[++i]){}}
return obj;}
function el(id){return document.getElementById(id);}
function extend(to,from,skipFuncs){if(typeof from!='object'){return to;}
if(to&&from){each(from,function(name,value){if(!skipFuncs||typeof value!='function'){to[name]=value;}});}
return to;}
function select(query){var index=query.indexOf(".");if(index!=-1){var tag=query.substring(0,index)||"*";var klass=query.substring(index+1,query.length);var els=[];each(document.getElementsByTagName(tag),function(){if(this.className&&this.className.indexOf(klass)!=-1){els.push(this);}});return els;}}
function stopEvent(e){e=e||window.event;if(e.preventDefault){e.stopPropagation();e.preventDefault();}else{e.returnValue=false;e.cancelBubble=true;}
return false;}
function bind(to,evt,fn){to[evt]=to[evt]||[];to[evt].push(fn);}
function makeId(){return"_"+(""+Math.random()).substring(2,10);}
var Clip=function(json,index,player){var self=this;var cuepoints={};var listeners={};self.index=index;if(typeof json=='string'){json={url:json};}
extend(this,json,true);each(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var evt="on"+this;if(evt.indexOf("*")!=-1){evt=evt.substring(0,evt.length-1);var before="onBefore"+evt.substring(2);self[before]=function(fn){bind(listeners,before,fn);return self;};}
self[evt]=function(fn){bind(listeners,evt,fn);return self;};if(index==-1){if(self[before]){player[before]=self[before];}
if(self[evt]){player[evt]=self[evt];}}});extend(this,{onCuepoint:function(points,fn){if(arguments.length==1){cuepoints.embedded=[null,points];return self;}
if(typeof points=='number'){points=[points];}
var fnId=makeId();cuepoints[fnId]=[points,fn];if(player.isLoaded()){player._api().fp_addCuepoints(points,index,fnId);}
return self;},update:function(json){extend(self,json);if(player.isLoaded()){player._api().fp_updateClip(json,index);}
var conf=player.getConfig();var clip=(index==-1)?conf.clip:conf.playlist[index];extend(clip,json,true);},_fireEvent:function(evt,arg1,arg2,target){if(evt=='onLoad'){each(cuepoints,function(key,val){if(val[0]){player._api().fp_addCuepoints(val[0],index,key);}});return false;}
target=target||self;if(evt=='onCuepoint'){var fn=cuepoints[arg1];if(fn){return fn[1].call(player,target,arg2);}}
if(arg1&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(evt)!=-1){extend(target,arg1);if(!target.duration){target.duration=arg1.metaData.duration;}else{target.fullDuration=arg1.metaData.duration;}}
var ret=true;each(listeners[evt],function(){ret=this.call(player,target,arg1,arg2);});return ret;}});if(json.onCuepoint){var arg=json.onCuepoint;self.onCuepoint.apply(self,typeof arg=='function'?[arg]:arg);delete json.onCuepoint;}
each(json,function(key,val){if(typeof val=='function'){bind(listeners,key,val);delete json[key];}});if(index==-1){player.onCuepoint=this.onCuepoint;}};var Plugin=function(name,json,player,fn){var listeners={};var self=this;var hasMethods=false;if(fn){extend(listeners,fn);}
each(json,function(key,val){if(typeof val=='function'){listeners[key]=val;delete json[key];}});extend(this,{animate:function(props,speed,fn){if(!props){return self;}
if(typeof speed=='function'){fn=speed;speed=500;}
if(typeof props=='string'){var key=props;props={};props[key]=speed;speed=500;}
if(fn){var fnId=makeId();listeners[fnId]=fn;}
if(speed===undefined){speed=500;}
json=player._api().fp_animate(name,props,speed,fnId);return self;},css:function(props,val){if(val!==undefined){var css={};css[props]=val;props=css;}
json=player._api().fp_css(name,props);extend(self,json);return self;},show:function(){this.display='block';player._api().fp_showPlugin(name);return self;},hide:function(){this.display='none';player._api().fp_hidePlugin(name);return self;},toggle:function(){this.display=player._api().fp_togglePlugin(name);return self;},fadeTo:function(o,speed,fn){if(typeof speed=='function'){fn=speed;speed=500;}
if(fn){var fnId=makeId();listeners[fnId]=fn;}
this.display=player._api().fp_fadeTo(name,o,speed,fnId);this.opacity=o;return self;},fadeIn:function(speed,fn){return self.fadeTo(1,speed,fn);},fadeOut:function(speed,fn){return self.fadeTo(0,speed,fn);},getName:function(){return name;},getPlayer:function(){return player;},_fireEvent:function(evt,arg,arg2){if(evt=='onUpdate'){var json=player._api().fp_getPlugin(name);if(!json){return;}
extend(self,json);delete self.methods;if(!hasMethods){each(json.methods,function(){var method=""+this;self[method]=function(){var a=[].slice.call(arguments);var ret=player._api().fp_invoke(name,method,a);return ret==='undefined'||ret===undefined?self:ret;};});hasMethods=true;}}
var fn=listeners[evt];if(fn){fn.apply(self,arg);if(evt.substring(0,1)=="_"){delete listeners[evt];}}}});};function Player(wrapper,params,conf){var
self=this,api=null,html,commonClip,playlist=[],plugins={},listeners={},playerId,apiId,playerIndex,activeIndex,swfHeight,wrapperHeight;extend(self,{id:function(){return playerId;},isLoaded:function(){return(api!==null);},getParent:function(){return wrapper;},hide:function(all){if(all){wrapper.style.height="0px";}
if(api){api.style.height="0px";}
return self;},show:function(){wrapper.style.height=wrapperHeight+"px";if(api){api.style.height=swfHeight+"px";}
return self;},isHidden:function(){return api&&parseInt(api.style.height,10)===0;},load:function(fn){if(!api&&self._fireEvent("onBeforeLoad")!==false){each(players,function(){this.unload();});html=wrapper.innerHTML;if(html&&!flashembed.isSupported(params.version)){wrapper.innerHTML="";}
flashembed(wrapper,params,{config:conf});if(fn){fn.cached=true;bind(listeners,"onLoad",fn);}}
return self;},unload:function(){try{if(!api||api.fp_isFullscreen()){return self;}}catch(error){return self;}
if(html.replace(/\s/g,'')!==''){if(self._fireEvent("onBeforeUnload")===false){return self;}
api.fp_close();api=null;wrapper.innerHTML=html;self._fireEvent("onUnload");}
return self;},getClip:function(index){if(index===undefined){index=activeIndex;}
return playlist[index];},getCommonClip:function(){return commonClip;},getPlaylist:function(){return playlist;},getPlugin:function(name){var plugin=plugins[name];if(!plugin&&self.isLoaded()){var json=self._api().fp_getPlugin(name);if(json){plugin=new Plugin(name,json,self);plugins[name]=plugin;}}
return plugin;},getScreen:function(){return self.getPlugin("screen");},getControls:function(){return self.getPlugin("controls");},getConfig:function(copy){return copy?clone(conf):conf;},getFlashParams:function(){return params;},loadPlugin:function(name,url,props,fn){if(typeof props=='function'){fn=props;props={};}
var fnId=fn?makeId():"_";self._api().fp_loadPlugin(name,url,props,fnId);var arg={};arg[fnId]=fn;var p=new Plugin(name,null,self,arg);plugins[name]=p;return p;},getState:function(){return api?api.fp_getState():-1;},play:function(clip,instream){function play(){if(clip!==undefined){self._api().fp_play(clip,instream);}else{self._api().fp_play();}}
if(api){play();}else{self.load(function(){play();});}
return self;},getVersion:function(){var js="flowplayer.js 3.1.2";if(api){var ver=api.fp_getVersion();ver.push(js);return ver;}
return js;},_api:function(){if(!api){throw"Flowplayer "+self.id()+" not loaded when calling an API method";}
return api;},setClip:function(clip){self.setPlaylist([clip]);return self;},getIndex:function(){return playerIndex;}});each(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var name="on"+this;if(name.indexOf("*")!=-1){name=name.substring(0,name.length-1);var name2="onBefore"+name.substring(2);self[name2]=function(fn){bind(listeners,name2,fn);return self;};}
self[name]=function(fn){bind(listeners,name,fn);return self;};});each(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip").split(","),function(){var name=this;self[name]=function(a1,a2){if(!api){return self;}
var ret=null;if(a1!==undefined&&a2!==undefined){ret=api["fp_"+name](a1,a2);}else{ret=(a1===undefined)?api["fp_"+name]():api["fp_"+name](a1);}
return ret==='undefined'||ret===undefined?self:ret;};});self._fireEvent=function(a){if(typeof a=='string'){a=[a];}
var evt=a[0],arg0=a[1],arg1=a[2],arg2=a[3],i=0;if(conf.debug){log(a);}
if(!api&&evt=='onLoad'&&arg0=='player'){api=api||el(apiId);swfHeight=api.clientHeight;each(playlist,function(){this._fireEvent("onLoad");});each(plugins,function(name,p){p._fireEvent("onUpdate");});commonClip._fireEvent("onLoad");}
if(evt=='onLoad'&&arg0!='player'){return;}
if(evt=='onError'){if(typeof arg0=='string'||(typeof arg0=='number'&&typeof arg1=='number')){arg0=arg1;arg1=arg2;}}
if(evt=='onContextMenu'){each(conf.contextMenu[arg0],function(key,fn){fn.call(self);});return;}
if(evt=='onPluginEvent'){var name=arg0.name||arg0;var p=plugins[name];if(p){p._fireEvent("onUpdate",arg0);p._fireEvent(arg1,a.slice(3));}
return;}
if(evt=='onPlaylistReplace'){playlist=[];var index=0;each(arg0,function(){playlist.push(new Clip(this,index++,self));});}
if(evt=='onClipAdd'){if(arg0.isInStream){return;}
arg0=new Clip(arg0,arg1,self);playlist.splice(arg1,0,arg0);for(i=arg1+1;i<playlist.length;i++){playlist[i].index++;}}
var ret=true;if(typeof arg0=='number'&&arg0<playlist.length){activeIndex=arg0;var clip=playlist[arg0];if(clip){ret=clip._fireEvent(evt,arg1,arg2);}
if(!clip||ret!==false){ret=commonClip._fireEvent(evt,arg1,arg2,clip);}}
each(listeners[evt],function(){ret=this.call(self,arg0,arg1);if(this.cached){listeners[evt].splice(i,1);}
if(ret===false){return false;}
i++;});return ret;};function init(){if($f(wrapper)){$f(wrapper).getParent().innerHTML="";playerIndex=$f(wrapper).getIndex();players[playerIndex]=self;}else{players.push(self);playerIndex=players.length-1;}
wrapperHeight=parseInt(wrapper.style.height,10)||wrapper.clientHeight;if(typeof params=='string'){params={src:params};}
playerId=wrapper.id||"fp"+makeId();apiId=params.id||playerId+"_api";params.id=apiId;conf.playerId=playerId;if(typeof conf=='string'){conf={clip:{url:conf}};}
if(typeof conf.clip=='string'){conf.clip={url:conf.clip};}
conf.clip=conf.clip||{};if(wrapper.getAttribute("href",2)&&!conf.clip.url){conf.clip.url=wrapper.getAttribute("href",2);}
commonClip=new Clip(conf.clip,-1,self);conf.playlist=conf.playlist||[conf.clip];var index=0;each(conf.playlist,function(){var clip=this;if(typeof clip=='object'&&clip.length){clip={url:""+clip};}
each(conf.clip,function(key,val){if(val!==undefined&&clip[key]===undefined&&typeof val!='function'){clip[key]=val;}});conf.playlist[index]=clip;clip=new Clip(clip,index,self);playlist.push(clip);index++;});each(conf,function(key,val){if(typeof val=='function'){if(commonClip[key]){commonClip[key](val);}else{bind(listeners,key,val);}
delete conf[key];}});each(conf.plugins,function(name,val){if(val){plugins[name]=new Plugin(name,val,self);}});if(!conf.plugins||conf.plugins.controls===undefined){plugins.controls=new Plugin("controls",null,self);}
plugins.canvas=new Plugin("canvas",null,self);params.bgcolor=params.bgcolor||"#000000";params.version=params.version||[9,0];params.expressInstall='http://www.flowplayer.org/swf/expressinstall.swf';function doClick(e){if(!self.isLoaded()&&self._fireEvent("onBeforeClick")!==false){self.load();}
return stopEvent(e);}
html=wrapper.innerHTML;if(html.replace(/\s/g,'')!==''){if(wrapper.addEventListener){wrapper.addEventListener("click",doClick,false);}else if(wrapper.attachEvent){wrapper.attachEvent("onclick",doClick);}}else{if(wrapper.addEventListener){wrapper.addEventListener("click",stopEvent,false);}
self.load();}}
if(typeof wrapper=='string'){flashembed.domReady(function(){var node=el(wrapper);if(!node){throw"Flowplayer cannot access element: "+wrapper;}else{wrapper=node;init();}});}else{init();}}
var players=[];function Iterator(arr){this.length=arr.length;this.each=function(fn){each(arr,fn);};this.size=function(){return arr.length;};}
window.flowplayer=window.$f=function(){var instance=null;var arg=arguments[0];if(!arguments.length){each(players,function(){if(this.isLoaded()){instance=this;return false;}});return instance||players[0];}
if(arguments.length==1){if(typeof arg=='number'){return players[arg];}else{if(arg=='*'){return new Iterator(players);}
each(players,function(){if(this.id()==arg.id||this.id()==arg||this.getParent()==arg){instance=this;return false;}});return instance;}}
if(arguments.length>1){var swf=arguments[1];var conf=(arguments.length==3)?arguments[2]:{};if(typeof arg=='string'){if(arg.indexOf(".")!=-1){var instances=[];each(select(arg),function(){instances.push(new Player(this,clone(swf),clone(conf)));});return new Iterator(instances);}else{var node=el(arg);return new Player(node!==null?node:arg,swf,conf);}}else if(arg){return new Player(arg,swf,conf);}}
return null;};extend(window.$f,{fireEvent:function(){var a=[].slice.call(arguments);var p=$f(a[0]);return p?p._fireEvent(a.slice(1)):null;},addPlugin:function(name,fn){Player.prototype[name]=fn;return $f;},each:each,extend:extend});if(typeof jQuery=='function'){jQuery.prototype.flowplayer=function(params,conf){if(!arguments.length||typeof arguments[0]=='number'){var arr=[];this.each(function(){var p=$f(this);if(p){arr.push(p);}});return arguments.length?arr[arguments[0]]:new Iterator(arr);}
return this.each(function(){$f(this,clone(params),conf?clone(conf):{});});};}})();(function(){var jQ=typeof jQuery=='function';function isDomReady(){if(domReady.done){return false;}
var d=document;if(d&&d.getElementsByTagName&&d.getElementById&&d.body){clearInterval(domReady.timer);domReady.timer=null;for(var i=0;i<domReady.ready.length;i++){domReady.ready[i].call();}
domReady.ready=null;domReady.done=true;}}
var domReady=jQ?jQuery:function(f){if(domReady.done){return f();}
if(domReady.timer){domReady.ready.push(f);}else{domReady.ready=[f];domReady.timer=setInterval(isDomReady,13);}};function extend(to,from){if(from){for(key in from){if(from.hasOwnProperty(key)){to[key]=from[key];}}}
return to;}
function asString(obj){switch(typeOf(obj)){case'string':obj=obj.replace(new RegExp('(["\\\\])','g'),'\\$1');obj=obj.replace(/^\s?(\d+)%/,"$1pct");return'"'+obj+'"';case'array':return'['+map(obj,function(el){return asString(el);}).join(',')+']';case'function':return'"function()"';case'object':var str=[];for(var prop in obj){if(obj.hasOwnProperty(prop)){str.push('"'+prop+'":'+asString(obj[prop]));}}
return'{'+str.join(',')+'}';}
return String(obj).replace(/\s/g," ").replace(/\'/g,"\"");}
function typeOf(obj){if(obj===null||obj===undefined){return false;}
var type=typeof obj;return(type=='object'&&obj.push)?'array':type;}
if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};});}
function map(arr,func){var newArr=[];for(var i in arr){if(arr.hasOwnProperty(i)){newArr[i]=func(arr[i]);}}
return newArr;}
function getHTML(p,c){var e=extend({},p);var ie=document.all;var html='<object width="'+e.width+'" height="'+e.height+'"';if(ie&&!e.id){e.id="_"+(""+Math.random()).substring(9);}
if(e.id){html+=' id="'+e.id+'"';}
e.src+=((e.src.indexOf("?")!=-1?"&":"?")+Math.random());if(e.w3c||!ie){html+=' data="'+e.src+'" type="application/x-shockwave-flash"';}else{html+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';}
html+='>';if(e.w3c||ie){html+='<param name="movie" value="'+e.src+'" />';}
e.width=e.height=e.id=e.w3c=e.src=null;for(var k in e){if(e[k]!==null){html+='<param name="'+k+'" value="'+e[k]+'" />';}}
var vars="";if(c){for(var key in c){if(c[key]!==null){vars+=key+'='+(typeof c[key]=='object'?asString(c[key]):c[key])+'&';}}
vars=vars.substring(0,vars.length-1);html+='<param name="flashvars" value=\''+vars+'\' />';}
html+="</object>";return html;}
function Flash(root,opts,flashvars){var version=flashembed.getVersion();extend(this,{getContainer:function(){return root;},getConf:function(){return opts;},getVersion:function(){return version;},getFlashvars:function(){return flashvars;},getApi:function(){return root.firstChild;},getHTML:function(){return getHTML(opts,flashvars);}});var required=opts.version;var express=opts.expressInstall;var ok=!required||flashembed.isSupported(required);if(ok){opts.onFail=opts.version=opts.expressInstall=null;root.innerHTML=getHTML(opts,flashvars);}else if(required&&express&&flashembed.isSupported([6,65])){extend(opts,{src:express});flashvars={MMredirectURL:location.href,MMplayerType:'PlugIn',MMdoctitle:document.title};root.innerHTML=getHTML(opts,flashvars);}else{if(root.innerHTML.replace(/\s/g,'')!==''){}else{root.innerHTML="<h2>Flash version "+required+" or greater is required</h2>"+"<h3>"+
(version[0]>0?"Your version is "+version:"You have no flash plugin installed")+"</h3>"+
(root.tagName=='A'?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(root.tagName=='A'){root.onclick=function(){location.href='http://www.adobe.com/go/getflashplayer';};}}}
if(!ok&&opts.onFail){var ret=opts.onFail.call(this);if(typeof ret=='string'){root.innerHTML=ret;}}
if(document.all){window[opts.id]=document.getElementById(opts.id);}}
window.flashembed=function(root,conf,flashvars){if(typeof root=='string'){var el=document.getElementById(root);if(el){root=el;}else{domReady(function(){flashembed(root,conf,flashvars);});return;}}
if(!root){return;}
var opts={width:'100%',height:'100%',allowfullscreen:true,allowscriptaccess:'always',quality:'high',version:null,onFail:null,expressInstall:null,w3c:false};if(typeof conf=='string'){conf={src:conf};}
extend(opts,conf);return new Flash(root,opts,flashvars);};extend(window.flashembed,{getVersion:function(){var version=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var _d=navigator.plugins["Shockwave Flash"].description;if(typeof _d!="undefined"){_d=_d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var _m=parseInt(_d.replace(/^(.*)\..*$/,"$1"),10);var _r=/r/.test(_d)?parseInt(_d.replace(/^.*r(.*)$/,"$1"),10):0;version=[_m,_r];}}else if(window.ActiveXObject){try{var _a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{_a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");version=[6,0];_a.AllowScriptAccess="always";}catch(ee){if(version[0]==6){return version;}}
try{_a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(eee){}}
if(typeof _a=="object"){_d=_a.GetVariable("$version");if(typeof _d!="undefined"){_d=_d.replace(/^\S+\s+(.*)$/,"$1").split(",");version=[parseInt(_d[0],10),parseInt(_d[2],10)];}}}
return version;},isSupported:function(version){var now=flashembed.getVersion();var ret=(now[0]>version[0])||(now[0]==version[0]&&now[1]>=version[1]);return ret;},domReady:domReady,asString:asString,getHTML:getHTML});if(jQ){jQuery.tools=jQuery.tools||{version:{}};jQuery.tools.version.flashembed='1.0.3';jQuery.fn.flashembed=function(conf,flashvars){var el=null;this.each(function(){el=flashembed(this,conf,flashvars);});return conf.api===false?this:el;};}})();;$(document).ready(function(){$('a.strands_link, a.othercolors_link').live('click',function(event){event.preventDefault();$this=$(this);location.href=$this.context.href+"?"+$this.attr('rel');});});