(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[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.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;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);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);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){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);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)||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&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.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;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();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:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="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&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(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.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();;jQuery(document).ready(function(){jQuery("#dropmenu ul").css({display:"none"});jQuery("#dropmenu li").hover(function(){jQuery(this).find('ul:first').css({visibility:"visible",display:"none"}).show(400);},function(){jQuery(this).find('ul:first').css({visibility:"hidden"});});});;function convertEntities(b){var d,a;d=function(c){if(/&[^;]+;/.test(c)){var f=document.createElement("div");f.innerHTML=c;return!f.firstChild?c:f.firstChild.nodeValue}return c};if(typeof b==="string"){return d(b)}else{if(typeof b==="object"){for(a in b){if(typeof b[a]==="string"){b[a]=d(b[a])}}}}return b};;typeof SHR4P=="undefined"&&(SHR4P={});typeof SHRSB_Globals=="undefined"&&(window.SHRSB_Globals={});if(typeof SHRSB_Globals.perfoption=="undefined")SHRSB_Globals.perfoption="1";if(typeof SHRSB_Globals.minJQueryVersion=="undefined")SHRSB_Globals.minJQueryVersion="1.5.2";var SHR4P_init=function(){SHR4P.debug("SHR4P_init called");if(SHR4P.init)SHR4P.debug("SHR4P_init returning because already loaded");else if(SHR4P.init=!0,SHR4P.jQuery=typeof sb_dont_noConflict!="undefined"&&sb_dont_noConflict?jQuery:jQuery.noConflict(!0),SHR4P.debug("jquery version: "+SHR4P.jQuery().jquery),function(a){SHR4P.debug("initializing shareaholic_publishers plugin");a.fn.shareaholic_publishers=function(d){var b=a.extend({v:1,src:"http://www.shareaholic.com",mode:"inject",service:"",apikey:"",link:"",title:"",notes:"",expand:!0,duration:400,rel:"nofollow",target:"_blank",twitter_template:"${title} - ${short_link} via @Shareaholic",dontShowShareCount:!1,fbLikeButton:!1,fbButtonPos:"bottom-right",tags:"",allowExternalTags:!0,designer_toolTips:!1,tip_bg_color:"black",tip_text_color:"white",category:"",ctype:"",short_link:"",shortener:"google",shortener_key:"",custom_link:{},bgimg:"",bgimg_padding:"0 0 0 0",center:!1,spaced:!1,iframe_src:"/publishers",spriteimg:"",share_src:"http://www.shareaholic.com",localize:!1,li_margin:0,"margin-top":20,"margin-bottom":20,"margin-left":0,"bgimg-padding-top":0,"bgimg-padding-left":0,"icon-width":60,"icon-height":29,"icon-margin-top":3,"promo-height":d.shrlink?18:0,shrlink:!1,twitter_overlay:!0},d);SHR4P.debug("$.fn.shareaholic_publishers called");SHR4P.debug(b);a.browser.msie&&a.browser.version<"7.0"&&(b["icon-height"]+=4);if(!b.link)b.link=document.location.href;b.bgimg!=null&&(d=a.trim(b.bgimg_padding).split(" "),b["bgimg-padding-top"]=d[0]?Number(d[0].replace(/[a-zA-Z]+/,"")):0,b["bgimg-padding-left"]=d[3]?Number(d[3].replace(/[a-zA-Z]+/,"")):0,b["margin-left"]=10);if(b.localize)b.iframe_src="/publishers.html";var c=function(){var d=0;if(!a.isEmptyObject(b.custom_link))d=a(b.custom_link).length;return b.service.split(",").length+d},g=function(){return b["margin-left"]+b["bgimg-padding-left"]},h=function(a){return Math.ceil(c()/Math.floor((a-g())/b["icon-width"]))},f=function(a){return b.expand?b["margin-top"]+b["bgimg-padding-top"]+b["icon-height"]+b["icon-margin-top"]+
(h(a)==1?b["promo-height"]:0):i(a)},i=function(a){return b["margin-top"]+b["bgimg-padding-top"]+(b["icon-height"]+b["icon-margin-top"])*h(a)+b["promo-height"]},k=function(a){SHR4P.debug("centering");var d=0;h(a)==1&&(SHR4P.debug("one row! do centering"),d=(a-g()-c()*b["icon-width"])/2,SHR4P.debug("returning "+d+" margin"));return d},l=function(a){SHR4P.debug("spacing");SHR4P.debug("rows: "+h(a));var d=0;h(a)==1&&(SHR4P.debug("one row! spacing icons"),d=Math.floor((a-g()-b["icon-width"]*c())/c()),SHR4P.debug("returning "+d+" margin"));return d};this.each(function(){if(b.spaced)b.li_margin=l(a(this).width());var d={src:b.src,service:b.service,apikey:b.apikey,link:b.link,title:b.title,notes:b.notes,bgimg:b.bgimg,bgimg_padding:b.bgimg_padding,rel:b.rel,target:b.target,twitter_template:b.twitter_template,localize:b.localize,share_src:b.share_src,spriteimg:b.spriteimg,tags:b.tags,allowExternalTags:b.allowExternalTags,designer_toolTips:b.designer_toolTips,tip_bg_color:b.tip_bg_color,tip_text_color:b.tip_text_color,category:b.category,ctype:b.ctype,custom_link:b.custom_link,li_margin:b.li_margin,short_link:b.short_link,shortener:b.shortener,shortener_key:b.shortener_key,shrlink:b.shrlink,expand:b.expand,dontShowShareCount:b.dontShowShareCount,fbLikeButton:b.fbLikeButton,fbButtonPos:b.fbButtonPos,twitter_overlay:b.twitter_overlay};b.center&&a(this).css({"margin-left":k(a(this).width())});b.mode=="inject"?a(this).shareaholic(d):a(this).append(a('<iframe frameborder="0"/>').attr({src:[b.src+b.iframe_src,a.param(d)].join("?"),height:f(a(this).width()),width:a(this).width(),scrolling:"no","class":"share-iframe"}).css({height:i(a(this).width())}));b.expand&&(a(this).css({overflow:"hidden",height:f(a(this).width())}),a(this).hover(function(){a(this).animate({height:i(a(this).width())},{duration:b.duration,queue:!1})},function(){a(this).animate({height:f(a(this).width())},{duration:b.duration,queue:!1})}))});return this};var c=function(a,b){var c=function(){SHR4P.debug("bitly javascript loaded");var c=a.link;BitlyCB.mycallback=function(a){SHR4P.debug("bit.ly calls back with");SHR4P.debug(a);if(a.errorCode==0)SHR4P.debug("successfully shortened, calling callback with: "),a=a.results[c].shortUrl,SHR4P.debug("short_link: "+a),SHR4P.debug("type: "+typeof a),b(a)};BitlyClient.call("shorten",{longUrl:c},"BitlyCB.mycallback")};if(typeof BitlyClient=="undefined"){SHR4P.debug("loading bit.ly");var g=document.getElementsByTagName("head")[0];if(typeof g!="undefined"){var h=a.shortener_key.split("|"),f=document.createElement("script");f.src="http://bit.ly/javascript-api.js?version=latest&login="+h[0]+"&apiKey="+h[1];f.type="text/javascript";f.charset="utf-8";g.appendChild(f);f.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded")SHR4P.debug("bit.ly loaded with onreadystatechange, init'ing"),c()};f.onload=c}}else SHR4P.debug("bit.ly already loaded.  init'ing"),c()};SHR4P.debug("initializing shareaholic plugin");a.fn.shareaholic=function(d){var b=a.extend({service:"",rel:"nofollow",target:"_blank",poller_timeout:200,link:"",title:"",notes:"",bgimg:"",bgimg_padding:"",twitter_template:"${title} - ${short_link}",tags:"",category:"",ctype:"",localize:!1,custom_link:{},li_margin:0,share_src:"http://www.shareaholic.com",src:"http://www.shareaholic.com",api:{share:{v:"1",url:"/api/share/",apitype:"1",source:"Shareaholic-Publishers"},sprite:{v:"2",url:"/api/sprite/"}},short_link:"",shortener:"google",shortener_key:"",shortener_services:{"bit.ly":function(a,b){c(a,b)}}},d);SHR4P.debug("$.fn.shareaholic called");SHR4P.debug(b);a(this).addClass("shareaholic-show-on-load");if(b.localize==!0||b.localize=="true")b.localize=!0;var e=function(b,d){return[b,a.param(d)].join("?")},g=function(a){for(var b=[],d=a.length,c=0;c<d;c++){for(var e=c+1;e<d;e++)a[c]===a[e]&&(e=++c);b.push(a[c])}return b},h=function(b,d,c){var e=c.designer_toolTips?"orig_title":"title",j=c.custom_link[b+"_"+d];SHR4P.debug("adding link "+b+" "+d);return a("<li/>").addClass(j.li_class).append(a("<a/>").attr({href:j.link,rel:c.rel,target:c.target,"class":"external"}).attr(e,j.tooltip)).attr("style",j.style+";margin-left:"+c.li_margin+"px !important;")},d=b.localize?b.src+"/sprite.css":e(b.src+b.api.sprite.url,{v:b.api.sprite.v,apikey:b.apikey,service:g(b.service.split(",")).sort().join(",")});a("#shareaholic-publisher-css").length==0&&a("head").append(a('<link rel="stylesheet" media="screen" id="shareaholic-publisher-css" href="'+d+'"/>'));var f=a("<div/>").addClass("shr-bookmarks").append(a("<ul/>").addClass("shr-socials"));b.shrlink&&(d=a.getBrowser(),d!=""&&(f.append(a('<div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div>')),f.find(".shr-getshr a").text("Get Shareaholic for "+d),a(this).hover(function(){f.find(".shr-getshr").css("visibility","visible")},function(){f.find(".shr-getshr").css("visibility","hidden")})));b.bgimg!="undefined"&&b.bgimg!=""&&f.addClass("shr-bookmarks-bg-shr").css({"margin-left":"10px",height:"100%","overflow-x":"hidden","overflow-y":"hidden",display:"block",padding:b.bgimg_padding,background:"transparent url("+b.bgimg+") no-repeat"});var i=f.find(".shr-socials");if(b.fbLikeButton){setTimeout("SHR4P.fbUtil.addFBConnect()",0);var d=a('<div class="shareaholic-like-buttons"><br/></div>'),k=a('<a class="shareaholic-fb-like" style="margin-top:5px; margin-bottom:5px;"></a>');SHR4P.fbUtil.addLikeButton(k,b.link);d.prepend(k);b.fbButtonPos.indexOf("bottom")!=-1?d.insertAfter(this):d.insertBefore(this);b.fbButtonPos.indexOf("right")!=-1&&k.css("float","right")}a(b.service.split(",")).each(function(d,c){var f="";if(c=="7")f=b.twitter_template;b.custom_link["before_"+d]&&h("before",d,b).appendTo(i);var g=b.designer_toolTips?"orig_title":"title",j=SHR4P.utils.getBrowserLocale(),j=j.split("-")[0];if(typeof SHR4P.locales!=="undefined"&&(typeof SHR4P.locales[j]=="undefined"||!SHR4P.locales[j]))j="en";j=typeof SHR4P.locales!=="undefined"?SHR4P.locales[j][SHR4P.tooltips_prefix_map[c]]+" "+SHR4P.tooltips_suffix[c]:"";c=="7"&&b.twitter_overlay&&!SHR4P.utils.isMobileBrowser()?a("<li/>").addClass("shr-"+c).addClass("shareaholic").append(a("<a/>").attr({rel:b.rel,target:b.target,"class":"external"}).attr(g,j).click(function(a){SHR4P.utils.showServiceLet(b,"twitter");a.preventDefault()})).attr("style","margin-left:"+b.li_margin+"px !important;").appendTo(i):a("<li/>").addClass("shr-"+c).addClass("shareaholic").append(a("<a/>").attr({href:e(b.share_src+b.api.share.url,{title:b.title,link:b.link,notes:b.notes,short_link:b.short_link,shortener:b.shortener,shortener_key:b.shortener_key,v:b.api.share.v,apitype:b.api.share.apitype,apikey:b.apikey,source:b.api.share.source,template:f,service:c,ctype:b.ctype}),rel:b.rel,target:b.target,"class":"external"}).attr(g,j)).attr("style","margin-left:"+b.li_margin+"px !important;").appendTo(i);if(!b.dontShowShareCount&&(c==5||c==7||c==2||c==257))f=function(b){b=b.count;if(b>0){for(var d=a("<div/>").addClass("shr-count").appendTo(i.find(".shr-"+c)),e=0;e<9;e+=1)e!=4&&d.append(a("<div>"+b+"</div>").addClass("shr-count-outline").css({left:10+
e%3-1+"px",top:"-"+(11+parseInt(e/3)-1)+"px"}));d.append(a("<div>"+b+"</div>").addClass("shr-count-center").css({left:"10px",top:"-11px"}))}},c==5?SHR4P.utils.getFbShrCnt(b.link,f):c==7?SHR4P.utils.getTwitShrCnt(b.link,f):c==2?SHR4P.utils.getDeliciousShrCnt(b.link,f):c==257&&SHR4P.utils.getGoogBuzzShrCnt(b.link,f);b.custom_link["after_"+d]&&h("after",d,b).appendTo(i)});var l=function(){var b=a("<div style='position:absolute !important; background: transparent !important; z-index:101 !important;'/>"),d=a("<div class = 'shareaholic-tip-text'></div>"),c=a("<div class = 'shareaholic-arrow-down'/>");b.append(d);b.append(c);return{show:function(c){if(!a("body").find(".shareaholic-tip-text").length){var e=a(c).find("a").attr("orig_title");d.text(e);e=a(c).offset();b.appendTo(document.body);var f=b.width(),c=a(c).width();b.css({left:e.left-f/2+c/2,top:e.top-32});b.css({opacity:0.9})}},hide:function(){b.remove()}}}();b.designer_toolTips&&(a("<style type='text/css'>.shareaholic-arrow-down{ position: absolute !important; left:45% !important; width: 0 !important; height: 0 !important; border-left: 6px solid transparent !important; border-right: 6px solid transparent !important; border-top: 6px solid "+
b.tip_bg_color+" !important; }.shareaholic-tip-text{font-size:12px !important; line-height:120% !important; background: "+b.tip_bg_color+" !important; color: "+b.tip_text_color+" !important; padding: 5px !important; border-radius: 5px !important; -webkit-border-radius:5px; !important; -moz-border-radius:5px; !important}</style>").appendTo("head"),i.find("li").mouseenter(function(a){l.show(a.currentTarget)}).mouseleave(function(a){l.hide(a.currentTarget)}));d=function(b){a(i).find("li a").each(function(){this.href=this.href+"&tags="+b})};b.allowExternalTags?SHR4P.utils.getTags(b.link,b.tags,d):d(b.tags);d=function(b){if(b.spriteimg!="")return b.spriteimg;else if(b.localize)return b.src+"/sprite.png";else{var d=function(a,b){return a-b},c=g(b.service.split(",")).sort(d);SHR4P.debug("checking services: ");SHR4P.debug(c);var f=[];a(SHR4P.img_group).each(function(){var b=this;SHR4P.debug("checking img_group: ");SHR4P.debug(b);a(c).each(function(){SHR4P.debug("checking service: "+this);if(a.inArray(Number(this),b)>-1)return SHR4P.debug("found! adding img_group"),a.merge(f,b),!1});SHR4P.debug("req_services so far: ");SHR4P.debug(f)});SHR4P.debug("final req_services: ");f=f.sort(d);SHR4P.debug(f.join(","));return e(b.src+b.api.sprite.url,{v:b.api.sprite.v,apikey:b.apikey,apitype:"png",service:f.join(",")})}}(b);f.append(a('<style type="text/css">ul.shr-socials li.shareaholic{background-image:url('+d+") !important;}</style>"));f.appendTo(this);return this};a.extend({getBrowser:function(){var a=navigator.userAgent,b="";a.indexOf("MSIE")!=-1?b="Internet Explorer":a.indexOf("Firefox")!=-1?b="Firefox":a.indexOf("Flock")!=-1?b="Flock":a.indexOf("Chrome")!=-1?b="Google Chrome":a.indexOf("Safari")!=-1?b="Safari":a.indexOf("Opera")!=-1?b="Opera":a.indexOf("Songbird")!=-1&&(b="Songbird");return b}})}(SHR4P.jQuery),SHR4P.ready=!0,typeof SHR4P.onready!="undefined")SHR4P.onready()};typeof SHR4P=="undefined"&&(SHR4P={});SHR4P.ready=!1;SHR4P.init=!1;SHR4P.params=function(){var a={},c=document.location.href.split("?");if(c.length==2)for(var c=c[1].split("&"),d=0;d<c.length;d++){var b=c[d].split("=");b.length==2&&(a[unescape(b[0])]=unescape(b[1]))}return a};SHR4P.debug=function(a){SHR4P.debug_enabled&&(typeof console!="undefined"&&console?console.log(a):alert(a))};SHR4P.load=function(){setTimeout("SHR4P.ga()",0);setTimeout("SHR4P.media6()",0);setTimeout("SHR4P.prefetch()",0);if(typeof jQuery!="undefined"&&jQuery){var a=jQuery().jquery;if(SHRSB_Globals.minJQueryVersion<=a){window.sb_dont_noConflict=!0;SHR4P_init();return}}SHR4P.debug("loading jquery");a=document.getElementsByTagName("head")[0];if(typeof a!="undefined"){SHR4P.params();var c=document.createElement("script");c.src=SHR4P.debug_enabled?"//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.js":"//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js";c.type="text/javascript";a.appendChild(c);c.onreadystatechange=function(){if(this.readyState=="complete"||this.readyState=="loaded")SHR4P.debug("jQuery loaded with onreadystatechange, init'ing"),SHR4P_init()};c.onload=SHR4P_init}};SHR4P.onready=function(){/(loaded|complete)/.test(document.readyState)?SHR4P.readyHandler():SHR4P.jQuery(document).ready(function(){SHR4P.readyHandler()})};SHR4P.readyHandler=function(){SHR4P.renderLikeButtons();SHR4P.jQuery.each(SHRSB_Settings,function(a){this.expand=="false"&&(this.expand=!1);SHR4P.jQuery("."+a).shareaholic_publishers(this)})};SHR4P.img_group=[];SHR4P.img_group[0]=[2,3,4,5,6,7,10,24,38,39,40,52,54,74,88,201,219,257];SHR4P.img_group[1]=[27,33,41,43,45,46,53,73,78,195,196,205,207,210,236,247,264];SHR4P.img_group[2]=[44,48,61,77,80,100,105,140,191,202,218,238,240,266,269,280,289];SHR4P.img_group[3]=[1,14,21,89,98,102,106,243,267,268,277,278,283,284,285,286,288];SHR4P.img_group[4]=[20,59,92,188,190,192,204,246,263,265,279,281,282,287,290,291,292,293,294];SHR4P.wants_shortlink=[7];SHR4P.utils={getGoogBuzzShrCnt:function(a,c){a="http://www.google.com/buzz/api/buzzThis/buzzCounter?url="+encodeURIComponent(a);SHR4P.jQuery.getJSON(a+"&callback=?",function(a){var b=0;if(typeof a!="undefined"&&a)for(var e in a){b=a[e];break}c({count:b})})},getFbShrCnt:function(a,c){a="http://api.ak.facebook.com/restserver.php?v=1.0&method=links.getStats&format=json&urls="+encodeURIComponent(a);SHR4P.jQuery.getJSON(a+"&callback=?",function(a){var b=0;if(a.length>0)b=a[0].total_count,b!=0&&b>1E3&&(b=Math.floor(b/1E3)+"K");c({count:b})})},getTwitShrCnt:function(a,c){a="http://urls.api.twitter.com/1/urls/count.json?url="+encodeURIComponent(a);SHR4P.jQuery.getJSON(a+"&callback=?",function(a){a=a.count;a!=0&&a>1E3&&(a=Math.floor(a/1E3)+"K");c({count:a})})},getDeliciousShrCnt:function(a,c){a="http://feeds.delicious.com/v2/json/urlinfo/data?url="+encodeURIComponent(a);SHR4P.jQuery.getJSON(a+"&callback=?",function(a){var b=0;if(a.length>0)b=a[0].total_posts,b!=0&&b>1E3&&(b=Math.floor(b/1E3)+"K");c({count:b})})},getTags:function(a,c,d){var b=1;SHR4P.utils.getDeliciousTag(a,function(a){c+=a;--b==0&&d(c)})},getDeliciousTag:function(a,c){a="http://feeds.delicious.com/v2/json/urlinfo/data?url="+encodeURIComponent(a);SHR4P.jQuery.getJSON(a+"&callback=?",function(a){if(a.length>0)top_tags=a[0].top_tags,del_tags="",SHR4P.jQuery.each(top_tags,function(a,c){del_tags+=encodeURIComponent(a)+"|"+c+"|delicious,"}),del_tags!=""&&(del_tags=del_tags.substr(0,del_tags.length-1)),c(del_tags)})},showServiceLet:function(a,c){if(typeof c!="undefined"&&c){if(typeof SHR_config=="undefined"||!SHR_config)window.SHR_config={};window.__shr_service=c;window.__shr_log=!0;window.__shr_center=!0;SHR_config.shortener=a.shortener?a.shortener:"google";SHR_config.shortener_key=a.shortener_key?a.shortener_key:"";SHR_config.apikey=a.apikey?a.apikey:"8afa39428933be41f8afdb8ea21a495c";SHR_config.twitter_template=a.twitter_template?a.twitter_template:"${title} - ${short_link}";SHR_config.link=a.link?a.link:document.location.href;SHR_config.title=a.title?a.title:a.link?"":document.title;SHR_config.short_link=a.short_link?a.short_link:"";if(window.SHR&&window.SHR.Servicelet)SHR.Servicelet.show();else{var d=document,b=d.createElement("script");b.setAttribute("language","javascript");b.id="shr-servicelet";b.setAttribute("src",(a.share_src?a.share_src:"http://www.shareaholic.com")+"/media/js/servicelet.min.js");d.body.appendChild(b)}}},isMobileBrowser:function(){var a=navigator.userAgent||navigator.vendor||window.opera;return/android|avantgo|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge|maemo|midp|mmp|opera m(ob|in)i|palm(os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows(ce|phone)|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|e\-|e\/|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(di|rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|xda(\-|2|g)|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))},getBrowserLocale:function(){var a="en-us";if(navigator)if(navigator.language)a=navigator.language;else if(navigator.browserLanguage)a=navigator.browserLanguage;else if(navigator.systemLanguage)a=navigator.systemLanguage;else if(navigator.userLanguage)a=navigator.userLanguage;return a.toLowerCase()}};SHR4P.ga=function(){if(typeof SHRSB_Globals!="undefined"&&SHRSB_Globals.perfoption=="1"){if(typeof _gaq=="undefined"||!_gaq)window._gaq=[];_gaq.push(["_setAccount","UA-12964573-5"]);_gaq.push(["_trackPageview"]);(function(){var a=document.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"==document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";var c=document.getElementsByTagName("script")[0];c.parentNode.insertBefore(a,c)})()}};SHR4P.media6=function(){if(typeof SHRSB_Globals!="undefined"&&SHRSB_Globals.perfoption=="1"&&"https:"!=document.location.protocol)(new Image(0,0)).src="http://map.media6degrees.com/orbserv/hbpix?pixId=6237&pcv=43&curl="+encodeURIComponent(location.href)+"&cb="+Math.floor(Math.random()*9999999999)};SHR4P.prefetch=function(){if(typeof SHRSB_Globals!="undefined"&&typeof SHRSB_Globals.src!="undefined")(new Image).src=SHRSB_Globals.src+"/sprite.png"};SHR4P.renderLikeButtons=function(){SHR4P.jQuery(".shareaholic-fblike,.shareaholic-fbsend",".shareaholic-like-buttonset").length>0&&setTimeout("SHR4P.fbUtil.addFBConnect()",0);SHR4P.jQuery(".shareaholic-googleplusone",".shareaholic-like-buttonset").length>0&&setTimeout("SHR4P.googPlusOneUtil.addGoogScript()",0)};SHR4P.googPlusOneUtil={addGoogScript:function(){if(SHR4P.jQuery("#googplusonescript").length==0){var a=document.createElement("script");a.async=!0;a.src="https://apis.google.com/js/plusone.js";a.id="googplusonescript";a.text='{"parsetags": "explicit"}';document.getElementsByTagName("head")[0].appendChild(a);a.onreadystatechange=function(){(this.readyState=="complete"||this.readyState=="loaded")&&SHR4P.googPlusOneUtil.renderPlusOnes()};a.onload=SHR4P.googPlusOneUtil.renderPlusOnes}},renderPlusOnes:function(){SHR4P.jQuery(".shareaholic-googleplusone",".shareaholic-like-buttonset").each(function(){var a=SHR4P.jQuery(this),c=a.attr("data-shr_href"),d=a.attr("data-shr_title"),b=a.attr("data-shr_size"),e=a.attr("data-shr_count"),g=a.attr("data-shr_annotation"),h=a.attr("data-shr_width"),f=a.attr("data-shr_expandto"),i=a.attr("data-shr_onstartinteraction"),k=a.attr("data-shr_onendinteraction");if(typeof e=="undefined"||!e)e="true";if((typeof c=="undefined"||!c)&&(typeof d=="undefined"||!d))c=encodeURIComponent(document.location.href),d=document.title;else{if(typeof c=="undefined"||!c)c=encodeURIComponent(document.location.href);if(typeof d=="undefined"||!d)d=""}if(typeof b=="undefined"||!b)b="standard";if(typeof g=="undefined"||!g)g="inline",g=typeof e!=="undefined"&&e&&e!=="false"?"inline":"none";if(typeof h=="undefined"||!h)h="450px";if(typeof f=="undefined"||!f)f="";if(typeof i=="undefined"||!i)i="";if(typeof k=="undefined"||!k)k="";e="";b=="medium"&&(e="padding-top:1px !important;");e=SHR4P.jQuery("<div style='float:left; "+e+" margin:0px 0px 0px 10px !important;'/>").get(0);a.replaceWith(e);SHR4P.jQuery(e).append("<div/>");e=SHR4P.jQuery(e).find(":first-child").get(0);gapi.plusone.render(e,{size:b,annotation:g,width:h,expandto:f,onstartinteraction:i,onendinteraction:k,href:decodeURIComponent(c),callback:function(a){SHR4P.googPlusOneUtil.trackPlusOneClick(a,d)}})})},trackPlusOneClick:function(a,c){a.state=="on"&&SHR4P.jQuery("<img/>").attr({src:"http://www.shareaholic.com/api/share/?v=1&apikey=172809fde4d12743cc4a1ec894142b97f&apitype=3&service=304&link="+encodeURIComponent(a.href)+
(c!==""?"&title="+c:""),width:"1",height:"1"}).appendTo("body")}};SHR4P.fbUtil={fbConnectAdd:0,renderFBWidgetCalled:!1,likeButtonsToRender:[],hasFB:function(){return typeof window.FB=="object"&&FB.Event&&typeof FB.Event.subscribe=="function"},addLikeButton:function(a,c){if(SHR4P.fbUtil.hasFBNameSpace()){var d=SHR4P.jQuery('<fb:like href="'+c+'"layout="button_count" show_faces="true" width="60" font=""></fb:like>').appendTo(a);typeof window.FB!="undefined"&&FB.XFBML&&FB.XFBML.parse?FB.XFBML.parse(d.get(0)):SHR4P.fbUtil.likeButtonsToRender.push(d.get(0))}else SHR4P.jQuery('<iframe src="http://www.facebook.com/plugins/like.php?app_id=207766518608&amp;href='+
c+'&amp;send=false&amp;layout=button_count&amp;width=90&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px;" allowTransparency="true"></iframe>').appendTo(a)},renderFBWidgets:function(){if(!SHR4P.fbUtil.renderFBWidgetCalled){setTimeout("SHR4P.fbUtil.renderFBLikeButtons()",0);setTimeout("SHR4P.fbUtil.renderFBSendButtons()",0);for(var a=0;a<SHR4P.fbUtil.likeButtonsToRender.length;++a)typeof window.FB!="undefined"&&FB.XFBML&&FB.XFBML.parse&&FB.XFBML.parse(SHR4P.fbUtil.likeButtonsToRender[a]);SHR4P.fbUtil.renderFBWidgetCalled=!0}},renderFBSendButtons:function(){SHR4P.jQuery(".shareaholic-fbsend",".shareaholic-like-buttonset").each(function(){if(SHR4P.fbUtil.hasFBNameSpace()){var a=SHR4P.jQuery(this),c=a.attr("data-shr_href");if(typeof c=="undefined"||!c)c=encodeURIComponent(document.location.href);var d=SHR4P.jQuery("<div style='float:left;padding-top:0px !important; margin:0px 5px !important;'/>").get(0);a.replaceWith(d);a=SHR4P.jQuery('<fb:send href="'+c+'" width="60" font=""></fb:send>').appendTo(d);typeof window.FB!="undefined"&&FB.XFBML&&FB.XFBML.parse&&FB.XFBML.parse(a.get(0))}})},renderFBLikeButtons:function(){SHR4P.jQuery(".shareaholic-fblike",".shareaholic-like-buttonset").each(function(){var a=SHR4P.jQuery(this),c=a.attr("data-shr_href");if(typeof c=="undefined"||!c)c=encodeURIComponent(document.location.href);var d=a.attr("data-shr_layout");if(typeof d=="undefined"||!d)d="button_count";var b=a.attr("data-shr_showfaces");if(typeof b=="undefined"||!b)b="true";var e=a.attr("data-shr_send");if(typeof e=="undefined"||!e)e="false";var g=a.attr("data-shr_action");if(typeof g=="undefined"||!g||g.toLowerCase()!="recommend"&&g.toLowerCase()!="like")g="like";var h=SHR4P.jQuery("<div style='float:left;padding-top:0px !important; margin:0px 5px !important;'/>").get(0);a.replaceWith(h);if(SHR4P.fbUtil.hasFBNameSpace())c=SHR4P.jQuery('<fb:like action="'+g+'" send = "'+e+'" href="'+c+'"layout="'+
d+'" show_faces="'+b+'" width="60" font=""></fb:like>').appendTo(h),typeof window.FB!="undefined"&&FB.XFBML&&FB.XFBML.parse&&FB.XFBML.parse(c.get(0));else{a="30";e="60";switch(d){case"button_count":e="90";a="21";break;case"box_count":e="60";a="90";break;default:e="60",a="80"}SHR4P.jQuery('<iframe src="http://www.facebook.com/plugins/like.php?app_id=207766518608&amp;href='+c+"&amp;send=false&amp;layout="+d+"&amp;width="+e+"&amp;show_faces="+b+"&amp;action="+g+"&amp;colorscheme=light&amp;font&amp;height="+
a+'" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:'+e+"px; height:"+a+'px;" allowTransparency="true"></iframe>').appendTo(h)}})},addFBConnect:function(){SHR4P.fbUtil.addFBNameSpace();if(!SHR4P.fbUtil.fbConnectAdd)SHR4P.jQuery('<div id="fb-root"></div>').appendTo("body"),window.fbAsyncInit=function(){FB.init({appId:"207766518608",status:!0,cookie:!0,xfbml:!0});SHR4P.fbUtil.tryAddFBSubscription()},SHR4P.fbUtil.renderFBWidgetHandlerAttached=!0,function(){var a=document.createElement("script");a.async=!0;a.src=document.location.protocol+"//connect.facebook.net/en_US/all.js";a.onload=SHR4P.fbUtil.renderFBWidgets;a.onreadystatechange=function(){(this.readyState=="complete"||this.readyState=="loaded")&&SHR4P.fbUtil.renderFBWidgets()};document.getElementById("fb-root").appendChild(a)}(),SHR4P.fbUtil.fbConnectAdd=1},tryAddFBSubscription:function(){SHR4P.fbUtil.hasFB()&&FB.XFBML&&FB.XFBML.parse?SHR4P.fbUtil.addFBSubscription():setTimeout(SHR4P.fbUtil.tryAddFBSubscription,500)},addFBSubscription:function(){FB.Event.subscribe("edge.create",function(a){SHR4P.jQuery("<img/>").attr({src:"http://www.shareaholic.com/api/share/?v=1&apikey=172809fde4d12743cc4a1ec894142b97f&apitype=3&service=303&link="+encodeURIComponent(a),width:"1",height:"1"}).appendTo("body")});FB.Event.subscribe("message.send",function(a){SHR4P.jQuery("<img/>").attr({src:"http://www.shareaholic.com/api/share/?v=1&apikey=172809fde4d12743cc4a1ec894142b97f&apitype=3&service=305&link="+encodeURIComponent(a),width:"1",height:"1"}).appendTo("body")})},addFBNameSpace:function(){var a=SHR4P.jQuery(SHR4P.jQuery("html").get(0));if(typeof a.attr("xmlns:fb")=="undefined"&&(!SHR4P.jQuery.browser.msie||SHR4P.jQuery.browser.version>="9.0"))a.attr("xmlns:fb","http://www.facebook.com/2008/fbml"),a.attr("xmlns:og","http://opengraphprotocol.org/schema/")},hasFBNameSpace:function(){return typeof SHR4P.jQuery(SHR4P.jQuery("html").get(0)).attr("xmlns:fb")!="undefined"}};SHR4P.tooltips_prefix_map={1:10,2:0,3:0,4:0,5:0,6:1,7:0,8:1,9:1,10:1,11:1,12:1,13:1,14:0,15:1,16:1,17:1,18:1,19:1,20:1,21:1,22:1,23:1,24:1,25:1,26:1,27:0,28:1,29:1,30:1,31:1,32:1,33:1,34:1,35:1,36:1,37:1,38:0,39:1,40:1,41:1,42:1,43:1,44:1,45:1,46:1,47:1,48:1,49:1,50:1,51:10,52:10,53:10,54:10,55:10,56:1,57:1,58:1,59:1,60:1,61:0,62:1,63:1,64:1,65:1,66:1,67:1,68:1,69:1,70:1,71:1,72:1,73:1,74:1,75:1,76:1,77:1,78:1,79:1,80:1,81:1,82:1,83:1,84:1,85:1,86:1,87:1,88:1,89:1,90:1,91:1,92:1,93:1,94:1,95:1,96:1,97:1,98:1,99:1,100:1,101:1,102:1,103:1,104:1,105:1,106:1,107:1,108:1,109:1,110:1,111:1,112:1,113:1,114:1,115:1,116:1,117:1,118:1,119:1,120:1,121:1,122:1,123:1,124:1,125:1,126:1,127:1,128:1,129:1,130:1,131:1,132:1,133:1,134:1,135:1,136:1,137:1,138:1,139:1,140:1,141:1,142:1,143:1,144:1,145:1,146:1,147:1,148:1,149:1,150:1,151:1,152:1,153:1,154:1,155:1,156:1,157:1,158:1,159:1,160:1,161:1,162:1,163:1,164:1,165:1,166:1,167:1,168:1,169:1,170:1,171:1,172:1,173:1,174:1,175:1,176:1,177:1,178:1,179:1,180:1,181:1,182:1,183:1,184:9,185:9,186:9,187:0,188:2,189:1,190:1,191:1,192:1,193:0,194:1,195:3,196:1,197:1,198:1,199:1,200:1,201:10,202:0,203:0,204:2,205:0,206:0,207:3,208:7,209:0,210:0,211:0,212:0,213:0,214:7,215:0,216:0,217:0,218:0,219:0,220:0,221:0,222:0,223:7,224:7,225:0,226:0,227:0,228:7,229:0,230:0,231:0,232:7,233:0,234:7,235:0,236:4,237:2,238:2,239:1,240:1,241:1,242:1,243:1,244:1,245:1,246:0,247:3,248:7,249:7,250:6,251:9,252:2,253:0,254:1,255:1,256:1,257:5,258:0,259:0,260:1,261:0,262:1,263:0,264:0,265:0,266:0,267:0,268:0,269:0,270:1,271:1,272:1,273:1,274:1,275:1,276:1,277:0,278:0,279:0,280:0,281:0,282:3,283:0,284:2,285:0,286:0,287:0,288:0,289:0,290:0,291:0,292:0,293:0,294:6,295:11,296:11,297:11,298:1,299:1,300:1,301:1,302:1,303:11,304:11,305:11,306:11,307:11};SHR4P.tooltips_suffix={1:"Buzzster!",2:"Delicious",3:"Digg",4:"Mixx",5:"Facebook",6:"Mister-Wong",7:"Twitter",8:"Netlog",9:"Pownce",10:"Technorati Favorites",11:"Furl",12:"Shoutwire",13:"CiteULike",14:"Jumptags",15:"Windows Live Spaces",16:"Hemidemi",17:"FunP",18:"Instapaper",19:"PhoneFavs",20:"Xerpi",21:"Netvouz",22:"Wink",23:"Ma.gnolia",24:"Diigo",25:"BibSonomy",26:"Taggly",27:"BlogMarks",28:"Tailrank",29:"StartAid",30:"Kledy",31:"Khabbr",32:"Yahoo My Web",33:"Meneame",34:"Yoolink",35:"Bookmarks.fr",36:"Technotizie",37:"Windows Live Favorites",38:"StumbleUpon",39:"MySpace",40:"Reddit",41:"NewsVine",42:"Multiply",43:"FriendFeed",44:"Plaxo Pulse",45:"Ping",46:"Squidoo",47:"Protopage Bookmarks",48:"Blinklist",49:"Faves",50:"AIM",51:"E-mail program",52:"Gmail",53:"Hotmail",54:"Yahoo Mail",55:"AOL Mail",56:"YiGG",57:"Webnews",58:"Segnalo",59:"Pusha",60:"YouMob",61:"Slashdot",62:"Fark",63:"Allvoices",64:"Jamespot",65:"Imera Brazil",66:"Twiddla",67:"LinkaGoGo",68:"MindBodyGreen",69:"Feedmarker Bookmarks",70:"unalog",71:"Hugg",72:"Diglog",73:"Yahoo Buzz",74:"Google Bookmarks",75:"NowPublic",76:"Yahoo Bookmarks",77:"Propeller",78:"Tumblr",79:"LiveJournal",80:"Current",81:"HelloTxt",82:"Spurl",83:"Yample",84:"Oneview",85:"Linkatopia",86:"Simpy",87:"Yahoo Messenger",88:"LinkedIn",89:"Global Grind",90:"BuddyMarks",91:"Ask.com MyStuff",92:"Viadeo",93:"Maple",94:"Wists",95:"Gravee",96:"Connotea",97:"Backflip",98:"MyLinkVault",99:"SiteJot",100:"Sphinn",101:"Health Ranker",102:"DZone",103:"Symbaloo Feeds",104:"Care2 News",105:"Hyves",106:"Design Float",107:"Sphere",108:"Bitty Browser",109:"My Yahoo",110:"Google",111:"Excite MIX",112:"iTunes",113:"Zune",114:"FeedM8",115:"PodNova",116:"WINKsite",117:"NewsGator",118:"Hubdog",119:"BUZmob",120:"NewsIsFree",121:"KlipFolio",122:"NETime Channel",123:"Feed Mailer",124:"Symbaloo Bookmarks",125:"Rocket RSS Reader",126:"Blogger",127:"Flurry",128:"FireAnt",129:"Sofomo",130:"Netomat HUB",131:"FeedMarker",132:"FeedBucket",133:"SendMeRSS",134:"Bloglines",135:"Windows Live",136:"Protopage News Feeds",137:"My AOL",138:"The Free Library",139:"The Free Dictionary",140:"Wikio",141:"BlogRovR",142:"Webwag",143:"Daily Rotation",144:"Outlook",145:"Google Toolbar",146:"Bitty Browser Preview",147:"RSS 2 PDF",148:"LiteFeeds",149:"Gritwire",150:"FeedLounge",151:"FeedReader",152:"FeedOnSite",153:"i metaRSS",154:"RssFwd",155:"SimplyHeadlines",156:"Zhua Xia",157:"Xian Guo",158:"mobilerss",159:"Netvibes",160:"Pageflakes",161:"My MSN",162:"Odeo",163:"AideRSS",164:"Fwicki",165:"RapidFeeds",166:"Miro",167:"Shyftr",168:"ZapTXT",169:"Newgie",170:"NewsAlloy",171:"Plusmo",172:"Yourminis",173:"Eskobo",174:"Alesti",175:"Rasasa",176:"AvantGo",177:"FeedShow",178:"Xanga",179:"MySpace Profile",180:"Friendster",181:"Hi5",182:"FeedBlitz",183:"Gabbr",184:"MSDN",185:"Microsoft TechNet",186:"Microsoft Expression",187:"Tagza",188:"Tipd",189:"Agregator",190:"Strands",191:"Evernote",192:"Stumpedia",193:"Foxiewire",194:"Arto",195:"Netvibes",196:"Bebo",197:"Folkd",198:"VodPod",199:"NewsTrust",200:"Amazon (US) Wish List",201:"E-mail program",202:"YC Hacker News",203:"Truemors",204:"Techmeme Tip",205:"Identi.ca",206:"SmakNews",207:"Google Reader",208:"Bit.ly",209:"Kaboodle",210:"Posterous",211:"TipJoy",212:"I Heart It",213:"Google Notebook",214:"Tr.im",215:"Streakr",216:"Twine",217:"Soup",218:"Plurk",219:"Blogger",220:"TypePad",221:"AttentionMeter",222:"Smush.it",223:"TinyURL",224:"Digg",225:"BzzScapes",226:"Tweetie",227:"Diigo",228:"Is.gd",229:"vi.sualize.us",230:"WordPress Blog",231:"Mozillaca",232:"Su.pr",233:"TBUZZ",234:"Hub.tm",235:"Followup.cc",236:"PrintFriendly",237:"DailyMe",238:"NUjij",239:"Read It Later",240:"Box.net",241:"Balatarin",242:"Favoriten",243:"Oknotizie",244:"diHITT",245:"Svejo",246:"Hatena",247:"Orkut",248:"Clicky",249:"j.mp",250:"ReadWriteWeb",251:"Dwellicious",252:"Google Translate",253:"Yammer",254:"Yahoo Buzz India",255:"Boxee",256:"Pinboard",257:"Google Buzz",258:"Readability",259:"Social.com",260:"Google Apps Email",261:"HootSuite",262:"Google Wave",263:"iZeby",264:"Ning",265:"SpringPad",266:"BobrDobr",267:"Yandex",268:"Moemesto",269:"Memori.ru",270:"Amazon (UK) Wish List",271:"Amazon (CA) Wish List",272:"Amazon (DE) Wish List",273:"Amazon (FR) Wish List",274:"Amazon (JP) Wish List",275:"Google Sidewiki",276:"Marginize",277:"Twittley",278:"Script & Style",279:"PFBuzz",280:"Fwisp",281:"100 bookmarks",282:"Design Bump",283:"eKudos",284:"Web Blend",285:"Wykop",286:"BlogEngage",287:"FAQpal",288:"Bitacoras",289:"N4G",290:"Kaevur",291:"Virb",292:"BonzoBox",293:"Zabox",294:"ToMuse",295:"BuzzFeed",296:"Amazon Universal Registry",297:"TwitThat",298:"Mister-Wong DE",299:"Mister-Wong CN",300:"Mister-Wong ES",301:"Mister-Wong FR",302:"Mister-Wong RU",303:"Facebook Like",304:"Facebook Send",305:"Google +1",306:"Shareaholic More",307:"Shareaholic All"};SHR4P.locales={en:{0:"Post to",1:"Add to",2:"Submit to",3:"Share on",4:"Print with",5:"Post on",6:"Suggest this article to",7:"Shorten URL with",8:"Push this on",9:"Bookmark on",10:"Send via",11:""},es:{0:"Publicarlo a",1:"A\u00f1adirlo a",2:"Enviar a",3:"Compartir con",4:"Imprimir con",5:"Publicarlo en",6:"Sugiere este art\u00edculo a",7:"Acortar URL con",8:"Pulse este en",9:"Agregar a marcador en",10:"Enviar via",11:""},fr:{0:"Publiez-le sur",1:"Ajoutez ce lien \u00e0",2:"Soumettez ce lien \u00e0",3:"Partagez-le sur",4:"Imprimez-le avec",5:"Publiez-le sur",6:"Sugg\u00e9rer cet article \u00e0",7:"Raccourcir l'URL avec",8:"Poussez cet article sur",9:"Ajoutez-le \u00e0 vos favoris sur",10:"Envoyez-le avec",11:""},de:{0:"Senden an",1:"Hinzuf\u00fcgen zu",2:"\u00dcbertragen zu",3:"Teilen bei",4:"Drucken mit",5:"Ver\u00f6ffentlichen bei",6:"Empfehlen bei",7:"URL k\u00fcrzen mit",8:"Schiebe dies auf",9:"Lesezeichen speichern auf",10:"Senden mit",11:""},tr:{0:"Bunu postala:",1:"Bunu ekle:",2:"Bu makaleyi payla\u015f:",3:"Bunu payla\u015f:",4:"Bask\u0131 ile",5:"Bunu postala:",6:"Bu makaleyi \u00f6ner:",7:"K\u0131saltmak Url ile",8:"Bunu payla\u015f:",9:"Bookmark on",10:"Send via",11:""},it:{0:"Pubblicalo su",1:"Aggiungilo a",2:"Invia questa storia a",3:"Condividi su",4:"Stampa con",5:"Pubblicalo su",6:"Suggerisci questo articolo a",7:"Accorciare URL con",8:"Sparalo in",9:"Bookmark on",10:"Send via",11:""},pt:{0:"Publicar no",1:"Adicionar ao",2:"Enviar hist\u00f3ria para o",3:"Compartilhar no",4:"Imprima com",5:"Publicar no",6:"Sugerir este artigo para",7:"Encurtar url com",8:"Publicar no",9:"Favoritar no",10:"Enviar via",11:""},pt_BR:{0:"Postar no",1:"Adicionar ao",2:"Enviar para",3:"Compartilhar com",4:"Imprimir com",5:"Postar no",6:"Sugerir este artigo para",7:"Encurtar a URL com",8:"Enviar no",9:"Favoritar no",10:"Enviar via",11:""},et:{0:"Postita",1:"Lisa",2:"Saada",3:"Jaga",4:"Prindi",5:"Postita",6:"Soovita seda artiklit",7:"L\u00fchenda URL",8:"Sparalo in",9:"Bookmark on",10:"Send via",11:""},hu:{0:"Elk\u00fcld\u00e9s:",1:"Hozz\u00e1ad\u00e1s:",2:"Tov\u00e1bbk\u00fcld\u00e9s:",3:"Megoszt\u00e1s:",4:"Nyomtat\u00e1s:",5:"Publik\u00e1l\u00e1s:",6:"Aj\u00e1nl\u00e1s valakinek:",7:"C\u00edm (URL) r\u00f6vid\u00edt\u00e9se:",8:"Kik\u00fcld\u00e9s:",9:"K\u00f6nyvjelz\u0151 felv\u00e9tele:",10:"K\u00fcld\u00e9s:",11:""},bg:{0:"\u041f\u0443\u0431\u043b\u0438\u043a\u0443\u0432\u0430\u0439 \u0432",1:"\u041f\u0440\u0438\u0431\u0430\u0432\u0438 \u043a\u044a\u043c",2:"\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438 \u043a\u044a\u043c",3:"\u0421\u043f\u043e\u0434\u0435\u043b\u0438 \u043f\u043e",4:"\u041f\u0440\u0438\u043d\u0442\u0438\u0440\u0430\u0439 \u0441",5:"\u041f\u0443\u0431\u043b\u0438\u043a\u0443\u0432\u0430\u0439 \u043d\u0430",6:"\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0438 \u0442\u0430\u0437\u0438 \u0441\u0442\u0430\u0442\u0438\u044f \u043d\u0430",7:"\u0421\u044a\u043a\u0440\u0430\u0442\u0435\u043d URL \u0441",8:"\u0411\u0443\u0442\u043d\u0438 \u0442\u043e\u0432\u0430 \u043a\u044a\u043c",9:"\u041e\u0442\u0431\u0435\u043b\u0435\u0436\u0438 \u0432",10:"\u0418\u0437\u043f\u0440\u0430\u0442\u0438 \u0447\u0440\u0435\u0437",11:""},el:{0:"\u0391\u03bd\u03b1\u03c1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf",1:"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf",2:"\u03a5\u03c0\u03bf\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf",3:"\u039c\u03bf\u03b9\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf",4:"\u0395\u03ba\u03c4\u03c5\u03c0\u03ce\u03c3\u03c4\u03b5 \u03bc\u03b5",5:"\u0391\u03bd\u03b1\u03c1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf",6:"\u03a0\u03c1\u03bf\u03c4\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03c3\u03b5",7:"\u03a3\u03c5\u03bd\u03c4\u03bf\u03bc\u03b5\u03cd\u03c3\u03c4\u03b5 \u03c4\u03bf URL \u03bc\u03b5",8:"\u03a0\u03c1\u03bf\u03c9\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf",9:"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7 \u03c3\u03c4\u03bf",10:"\u0391\u03c0\u03bf\u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03c4\u03b5 \u03bc\u03ad\u03c3\u03c9",11:""},lt:{0:"Paskelbti",1:"Prid\u0117ti \u012f",2:"Pateikti",3:"Dalintis",4:"Spausdinti per",5:"\u012era\u0161yti",6:"Pasi\u016blyti \u0161\u012f straipsn\u012f \u012f",7:"Trumpinti URL su",8:"Kilstel\u0117ti",9:"Pasi\u017eym\u0117ti per",10:"Si\u0173sti per",11:""},nl:{0:"Publiceer op",1:"Voeg toe aan",2:"Stuur in op",3:"Deel op",4:"Print met",5:"Publiceer op",6:"Suggereer dit artikel op",7:"Verkort de URL met",8:"Push dit op",9:"Maak een bladwijzer op",10:"Verzend met",11:""}};SHR4P.load();
