
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/100;return{'ultra-condensed':0.5,'extra-condensed':0.625,condensed:0.75,'semi-condensed':0.875,'semi-expanded':1.125,expanded:1.25,'extra-expanded':1.5,'ultra-expanded':2}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),hasClass:function(el,className){return RegExp('(?:^|\\s)'+className+'(?=\\s|$)').test(el.className);},quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false;}
if(foundAll)break;style=this.getStyle(search=search.parentNode);}
return types;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/\b./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};return function(text,style,node){if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(/^\s+/,'');if(!node.nextSibling)text=text.replace(/\s+$/,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this);}
function onEnterLeave(e){trigger(this);}
function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key))merged[key]=args[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,anchor),style,options,node,el),anchor);anchor=null;}
if(type==1&&node.firstChild){if(CSS.hasClass(node,'cufon')){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/[^\S\u00a0]+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(typeof options.textShadow=='string')
options.textShadow=CSS.textShadow(options.textShadow);if(typeof options.color=='string'&&/^-/.test(options.color))
options.textGradient=CSS.gradient(options.color);if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('.cufon-canvas{text-indent:0;}'+'@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'.cufon-canvas canvas{position:relative;}':'.cufon-canvas canvas{position:absolute;}')+'}'+'@media print{'+'.cufon-canvas{padding:0;}'+'.cufon-canvas canvas{display:none;}'+'.cufon-canvas .cufon-alt{display:inline;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,advance,jumps=[];for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;expandRight+=viewBox.width-advance;expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(stretchedWidth))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke();}
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);function renderText(){g.scale(stretchFactor,1);for(var i=0,j=0,l=chars.length;i<l;++i){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[j++],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper;};})());Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(document.documentMode||0)<8;document.write(('<style type="text/css">'+'.cufon-vml-canvas{text-indent:0;}'+'@media screen{'+'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}'+'.cufon-vml-canvas{position:absolute;text-align:left;}'+'.cufon-vml{display:inline-block;position:relative;vertical-align:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}'+'a .cufon-vml{cursor:pointer}'+'}'+'@media print{'+'.cufon-vml *{display:none;}'+'.cufon-vml .cufon-alt{display:inline;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing));}
var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('span');canvas.className='cufon-vml-canvas';wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,jumps=[],offsetX=0,advance;var shape,shadows=options.textShadow;for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0,j=0;i<l;++i){glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());

Cufon.registerFont({"w":369,"face":{"font-family":"Kentuckyfried","font-weight":500,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"24","cap-height":"34","bbox":"-40.0855 -1034 794 275","underline-thickness":"20","underline-position":"-133","stemh":"164.816","stemv":"168.269","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":393},"\u00d7":{"d":"364,-304r-91,91r-87,-87r-84,88r-90,-91r84,-86r-85,-84r84,-86r88,84r88,-90r86,84r-86,90","w":363},"!":{"d":"202,-810r-10,608r-172,0r16,-608v73,-5,121,0,166,0xm193,-70v0,73,-49,97,-99,97v-72,0,-95,-55,-95,-97v0,-65,50,-96,100,-96v64,0,94,45,94,96","w":214},"\"":{"d":"254,-684v0,35,-22,138,-71,138r-27,0v22,-22,30,-47,26,-72v-68,-36,-43,-166,16,-166v43,0,56,54,56,100xm120,-684v0,35,-23,138,-72,138r-26,0v22,-22,30,-47,25,-72v-66,-37,-42,-166,17,-166v43,0,56,54,56,100","w":270},"#":{"d":"370,-476r-15,108r-65,-2r-10,76r62,0r-14,101r-62,1r-13,99r-72,-1r14,-96r-55,1r-14,95r-67,-2r13,-91r-62,2r17,-108r61,0r12,-82r-61,-1r16,-101r60,1r13,-91r72,-2r-14,93r51,0r13,-90r67,-1r-17,96xm221,-371r-51,-2r-13,80r53,0","w":366},"$":{"d":"240,-404v55,57,137,163,137,203v0,65,-71,91,-137,101r0,72r-120,-4r1,-62r-67,-1r0,-133v8,0,41,17,69,30r3,-196v-55,-56,-129,-160,-129,-191v0,-53,65,-83,133,-97r1,-77r109,0r0,68r97,1r0,127v-24,1,-60,-6,-97,-14r0,173xm129,-596v-39,5,-22,44,-1,76xm240,-197v40,-13,36,-43,0,-92r0,92"},"%":{"d":"146,-532v0,98,-24,119,-82,119v-60,0,-58,-76,-58,-114v0,-38,14,-205,75,-205v50,0,65,177,65,200xm377,-681r-267,668r-100,-69r276,-665xm379,-168v0,98,-24,119,-82,119v-60,0,-59,-76,-59,-114v0,-38,14,-205,75,-205v50,0,66,177,66,200xm102,-555v0,-5,-8,-75,-25,-74v-16,1,-30,50,-29,75v0,15,3,57,26,57v21,0,28,-40,28,-58xm334,-191v0,-5,-7,-75,-24,-74v-16,1,-31,50,-30,75v0,15,4,57,26,57v21,0,28,-40,28,-58","w":382},"&":{"d":"423,-312v0,81,-65,181,-65,193v0,12,16,55,22,82v-26,15,-64,51,-91,73v-5,-17,-16,-39,-27,-60v-110,73,-247,13,-247,-133v0,-101,49,-260,109,-300v-26,-63,-38,-68,-38,-160v0,-55,27,-196,131,-196v85,0,103,117,103,160v0,64,-6,144,-71,218r64,172v29,-21,22,-66,31,-88v21,13,52,29,79,39xm227,-639v0,-15,-1,-52,-25,-60v-22,26,-23,45,-23,93v0,22,-1,32,18,59v24,-25,30,-66,30,-92xm222,-151v-16,-66,-34,-123,-45,-172v-16,11,-47,51,-47,100v0,-9,4,85,57,85v12,0,30,-7,35,-13","w":418},"'":{"d":"187,-664v0,34,-34,137,-109,137r-40,0v33,-22,45,-46,39,-72v-51,-25,-61,-54,-61,-84v0,-56,43,-82,86,-82v66,0,85,54,85,101","w":201},"(":{"d":"248,-2r-91,0v-88,0,-133,-186,-133,-333v0,-98,37,-433,224,-464r0,162v-66,44,-111,143,-111,282v0,103,23,246,111,226r0,127","w":253},")":{"d":"247,-335v0,147,-46,333,-134,333r-90,0r0,-127v87,20,111,-123,111,-226v0,-139,-45,-238,-111,-282r0,-162v186,31,224,366,224,464","w":253},"*":{"d":"328,-360r-82,2r61,58r-48,47r-54,-53r2,75r-67,0r-1,-76r-51,55r-48,-48r53,-54r-75,2r1,-68r72,0r-51,-51r42,-43r57,54r0,-80r60,-1r2,79r57,-58r43,43r-54,57r81,-1r0,61","w":332},"+":{"d":"372,-334r-124,3r4,127r-129,0r0,-123r-121,3r1,-128r120,-1r-1,-120r120,-1r3,121r126,-1","w":363},",":{"d":"204,-144v0,35,-35,138,-110,138r-40,0v34,-22,45,-47,39,-72v-51,-25,-60,-54,-60,-84v0,-56,42,-82,85,-82v66,0,86,54,86,100","w":213},"-":{"d":"393,-167r-370,10r1,-129r368,-1","w":407},".":{"d":"226,-90v0,67,-46,90,-93,90v-67,0,-88,-52,-88,-90v0,-56,42,-91,93,-91v66,0,88,52,88,91","w":241},"\/":{"d":"518,-698r-371,694r-160,-83r384,-692","w":500},"0":{"d":"426,-658r-13,538v-2,96,-94,173,-196,170v-112,-3,-204,-94,-202,-197r11,-508v2,-102,106,-188,219,-185v114,4,183,102,181,182xm248,-605v0,-29,-5,-35,-20,-35v-22,-1,-20,8,-28,21r-8,430v5,13,10,23,26,24v15,0,15,-12,23,-30","w":437},"1":{"d":"354,7r-290,14r-9,-177r71,-6r-14,-414r-49,32r-85,-153r141,-95r166,5r21,616r39,-3","w":356},"2":{"d":"378,-27r-354,64v-6,-47,-19,-138,-19,-158v0,-71,155,-399,167,-439v-30,-47,-85,-25,-114,-29r-20,-185v30,7,121,-22,136,-22v76,0,192,32,192,171v1,104,-127,324,-155,422v17,0,107,-20,148,-20v7,47,13,109,19,196","w":378},"3":{"d":"358,-181v0,107,-66,183,-192,183v-22,0,-103,-3,-153,-27v6,-40,28,-133,26,-163v56,8,127,15,127,-53v0,-41,-8,-67,-99,-79r0,-159v54,-3,88,-42,88,-93v0,-37,-26,-48,-101,-48v-13,0,-23,5,-35,5v-5,-21,-6,-99,-12,-159v53,-15,77,-26,138,-26v162,0,184,126,184,210v0,116,-42,142,-42,186v0,9,71,81,71,223","w":358},"4":{"d":"412,-246v-17,3,-40,7,-41,7r2,238r-155,0r0,-223v-27,-22,-156,19,-201,10r-17,-187v-1,-6,146,-263,224,-386v42,-23,90,-1,153,-9r0,354v3,4,13,3,18,3v6,59,12,125,17,193xm227,-427v0,-45,-1,-99,-1,-144r-84,144r85,0","w":413},"5":{"d":"372,-201v5,103,-11,215,-139,226v-115,9,-172,0,-177,6r-8,-155v80,-1,134,-50,130,-116v-3,-61,-67,-126,-145,-149v-12,-142,-3,-215,-4,-400r295,-13v7,150,10,195,12,236r-99,6v-4,6,-2,35,-2,45v0,16,127,133,137,314","w":368},"6":{"d":"413,-225v0,89,-26,228,-168,228v-140,0,-228,-147,-228,-272r0,-133v0,-224,155,-344,332,-366r-9,156v0,0,-151,30,-148,142v174,-27,221,166,221,245xm274,-246v0,-19,-12,-91,-70,-91v-35,10,-32,54,-32,73v0,12,17,97,55,97v36,0,47,-57,47,-79","w":417},"7":{"d":"445,-773r-155,787r-190,-37r119,-608r-175,47r-61,-161r311,-102v35,9,151,74,151,74","w":436},"8":{"d":"371,-210v0,102,-16,189,-185,189v-160,0,-173,-125,-173,-191v0,-37,-13,-208,50,-241v-14,-10,-41,-55,-41,-98r0,-120v0,-72,68,-148,180,-148v43,0,154,33,155,100v2,106,26,202,-45,262v74,15,59,213,59,247xm219,-555v0,-10,-5,36,-5,-117v-4,-4,-1,-13,-12,-13v-42,13,-22,91,-22,138v0,8,11,30,22,30v16,0,17,-21,17,-38xm214,-153v0,-10,-4,-64,-4,-218v-5,-3,-2,-13,-13,-13v-11,0,-18,14,-22,22r0,216v0,9,12,30,22,30v17,0,17,-24,17,-37","w":384},"9":{"d":"411,-377v0,224,-155,344,-332,366r9,-156v0,0,151,-30,148,-142v-174,27,-221,-166,-221,-245v0,-89,26,-228,168,-228v140,0,228,147,228,272r0,133xm256,-515v0,-12,-17,-97,-55,-97v-35,0,-47,57,-47,79v0,19,12,91,70,91v35,-10,32,-54,32,-73","w":425},":":{"d":"219,-476v0,67,-46,90,-93,90v-67,0,-88,-52,-88,-90v0,-56,42,-91,93,-91v66,0,88,52,88,91xm228,-170v0,67,-46,90,-93,90v-67,0,-88,-52,-88,-90v0,-56,42,-91,93,-91v66,0,88,52,88,91","w":226},";":{"d":"218,-476v0,67,-46,90,-93,90v-67,0,-88,-52,-88,-90v0,-56,42,-91,93,-91v66,0,88,52,88,91xm204,-144v0,35,-35,138,-109,138r-40,0v33,-22,45,-47,38,-72v-50,-25,-60,-54,-60,-84v0,-56,43,-82,86,-82v65,0,85,54,85,100","w":216},"<":{"d":"369,-241r-28,147r-349,-171r0,-141r347,-149v9,44,16,97,23,141r-183,81"},"=":{"d":"377,-349r-371,-10r1,-120r369,2xm375,-167r-370,10r1,-129r368,-1","w":385},">":{"d":"376,-265r-349,171r-28,-147r190,-92r-183,-81v7,-44,14,-97,23,-141r347,149r0,141"},"?":{"d":"285,-634v0,79,-49,203,-121,257r0,173r-139,0v0,0,-5,-130,-5,-142r0,-126v56,-13,125,-69,125,-125v0,-48,-51,-95,-119,-81v-7,-43,-13,-84,5,-121v155,-8,254,13,254,165xm194,-75v0,68,-48,90,-97,90v-70,0,-91,-51,-91,-90v0,-62,48,-91,96,-91v63,0,92,42,92,91","w":287},"@":{"d":"430,-240v0,129,-92,238,-212,238v-119,0,-211,-109,-211,-238v0,-129,92,-238,211,-238v120,0,212,109,212,238xm392,-240v0,-78,-38,-143,-92,-176v14,24,21,56,18,92r-19,261v55,-33,93,-99,93,-177xm231,-205v0,-14,-7,-40,-26,-40v-27,0,-33,49,-33,58v0,13,9,40,29,40v19,0,30,-26,30,-58xm230,-40v-4,-23,-22,-21,-43,-16v-77,0,-99,-102,-99,-133v0,-40,24,-105,60,-128v15,-9,44,-4,55,-20v-3,-15,-34,-43,-48,-45r0,-44v-64,29,-110,100,-110,186v0,117,79,205,185,200","w":430},"A":{"d":"289,-35v-46,45,-51,45,-111,45v-126,0,-141,-152,-141,-223v0,-135,43,-218,88,-270v64,-75,161,-106,161,-151v-12,-10,-26,-15,-107,13v-44,15,-82,56,-123,74r-20,0v-7,-39,-8,-110,-15,-149v82,-54,175,-113,264,-113v66,0,142,20,168,130r-18,684v-26,7,-80,23,-118,20v-17,-5,-10,-7,-28,-60xm298,-313v0,-18,-2,-69,-36,-86v-59,-7,-78,80,-78,107v0,24,-25,127,45,130v72,3,69,-125,69,-151","w":475},"B":{"d":"425,-194v0,129,-38,202,-163,202r-232,0r-18,-811v94,1,186,-7,276,-7v52,0,103,19,121,86r5,217v1,29,-17,87,-53,116v70,28,64,122,64,197xm235,-675v-4,-17,-45,-2,-53,10r0,183v0,5,23,26,34,26v16,0,18,-21,18,-34v0,-10,-6,-25,-6,-183xm252,-319v-3,-18,-45,-4,-53,10r0,182v0,6,23,27,33,27v17,0,18,-21,18,-34v0,-10,-5,-25,-5,-183","w":438},"C":{"d":"426,-629v-122,46,-210,150,-210,296v0,109,49,219,209,198r0,153r-166,0v-162,0,-246,-154,-246,-309v0,-103,70,-495,413,-528r0,190","w":422},"D":{"d":"385,-149v1,96,-117,180,-223,180v-45,0,-101,-1,-152,-1r4,-833v0,0,60,-2,117,-2v104,0,245,60,247,172xm220,-583v0,-18,5,-32,-15,-32v-12,0,-24,-2,-28,11v0,0,1,340,-1,440v9,4,4,12,16,12v16,0,29,-19,29,-32v0,-126,-1,-274,-1,-399","w":389},"E":{"d":"358,-160r-2,164r-338,7r-20,-813r345,0r0,161r-148,0v-6,43,4,118,4,180r90,1r0,132r-76,0v-6,54,4,109,4,168r141,0","w":358},"F":{"d":"371,-818r-12,183r-153,-11v0,0,6,122,3,184r84,-4r-10,131r-79,-1r-12,357r-193,-10r19,-841","w":362},"G":{"d":"424,-511r-175,-7v0,0,10,-133,-28,-130v-43,3,-20,11,-26,24r0,393v0,25,0,56,33,56v44,0,29,-99,31,-113r-33,0r0,-175r191,6r0,508r-169,0r-1,-35v-28,15,-40,22,-58,22v-199,0,-171,-397,-171,-503v0,-73,-23,-383,220,-383v89,0,169,87,175,175","w":431},"H":{"d":"500,-801r-37,855r-191,0r8,-418v-21,1,-59,-12,-60,-6r-19,355r-204,0r27,-822r210,0r-11,288r74,0r0,-252r203,0","w":510},"I":{"d":"368,-621r-79,0r0,465v9,5,34,4,54,4r0,186r-321,-16v-3,-80,-2,-132,0,-180r74,0r10,-472r-81,0v7,-146,0,-188,0,-188r343,16r0,185","w":367},"J":{"d":"373,-95v-13,107,-147,140,-237,141v-35,1,-73,-3,-121,-29v6,-47,4,-150,2,-185v72,6,160,25,156,-52r-30,-622v32,5,80,-1,192,-2","w":383},"K":{"d":"434,-781r-150,365r135,405r-148,41r-100,-284r0,283v-52,-3,-111,-15,-165,-25r1,-855r161,12r0,261v50,-76,72,-166,113,-250","w":428},"L":{"d":"345,-207r-10,232r-309,0r8,-853r212,0r-10,622v30,3,75,2,109,-1","w":341},"M":{"d":"564,-798r68,808v0,0,-113,1,-164,0v-6,-67,-11,-140,-23,-220r-86,293r-71,0r-52,-262v-21,44,-34,110,-46,164r-213,0r160,-763r149,-6r67,255v20,-86,55,-260,55,-260","w":694},"N":{"d":"504,-816r-11,857r-164,0r-107,-365r4,337r-188,8r-6,-850v28,-5,187,-5,187,-5r109,361r7,-344","w":516},"O":{"d":"426,-658r-13,538v-2,96,-94,173,-196,170v-112,-3,-204,-94,-202,-197r11,-508v2,-102,106,-188,219,-185v114,4,183,102,181,182xm248,-605v0,-29,-5,-35,-20,-35v-22,-1,-20,8,-28,21r-8,430v5,13,10,23,26,24v15,0,15,-12,23,-30","w":437},"P":{"d":"429,-435v1,66,-25,172,-120,172v-13,0,-72,-7,-107,-23r14,332r-174,4r-26,-888v104,-8,190,-9,287,-9v52,0,118,35,120,123xm225,-689v-46,-11,-39,81,-37,101v0,11,8,137,8,137v7,15,25,30,41,30v14,0,17,-21,22,-21v6,-43,-2,-70,-2,-229v-12,-10,-20,-18,-32,-18","w":426},"Q":{"d":"495,-41v-22,21,-57,60,-92,96v-13,2,-25,-12,-40,-25v-62,40,-64,37,-115,40v-111,5,-213,-79,-219,-184r-31,-546v-6,-103,86,-199,197,-204v114,-6,192,88,197,170r33,576v2,36,24,32,70,77xm231,-635v-14,-43,-68,-28,-78,0r28,481v13,29,70,34,76,-10","w":489},"R":{"d":"444,-19v-46,8,-119,23,-165,31r-95,-284r0,296r-172,-1v-6,-619,-5,-469,-5,-828r263,0v153,0,129,194,129,222v0,64,12,159,-71,214xm233,-486v0,-10,-5,-26,-5,-191v-9,-22,-55,-12,-55,9r0,190v0,11,17,32,30,32v18,0,30,-21,30,-40","w":425},"S":{"d":"427,-156v0,146,-158,167,-231,167r-172,-1r0,-169v45,-3,150,30,188,-44v16,-30,-13,-58,-33,-92v-48,-84,-183,-277,-183,-354v0,-134,178,-169,256,-168r124,2r0,148v-68,-4,-143,-27,-167,26v-24,55,38,113,56,146v45,80,162,252,162,339","w":418},"T":{"d":"417,-597r-95,0r-18,621r-197,-10r15,-623v-30,0,-65,-1,-99,5r0,-231r394,18r0,220","w":416},"U":{"d":"459,-152v0,93,-106,171,-208,171v-125,0,-241,-94,-241,-199r0,-649r203,0r1,615v25,55,51,35,51,8r0,-578r194,0r0,632","w":494},"V":{"d":"539,-774r-174,783r-196,0r-177,-796r182,-31r95,447r84,-432","w":529},"W":{"d":"623,-710r-152,726r-144,0r-62,-237r-51,256v-29,0,-129,5,-154,-6v-19,-234,-61,-700,-61,-714r0,-48v0,0,108,-1,157,-1v6,65,10,134,21,210r86,-309r68,0r45,280v20,-43,33,-105,44,-157r203,0","w":617},"X":{"d":"547,-788r-161,383r136,304v-38,35,-120,75,-183,119v-23,-42,-50,-100,-75,-146r-74,161v-77,-16,-150,-48,-209,-71r152,-363r-144,-301v51,-31,124,-57,209,-88v16,31,41,77,58,116v25,-47,48,-100,74,-154v67,16,149,32,217,40","w":533},"Y":{"d":"500,-789r-170,541r-1,268r-186,0r-3,-274r-157,-525v0,0,115,-36,163,-46r96,294r79,-284v43,11,136,12,179,26","w":477},"Z":{"d":"482,-800v0,34,-1,147,-1,175v0,49,-226,403,-239,421v66,11,135,1,203,9r0,168r-432,1r0,-167r257,-428v-23,-10,-151,-2,-215,-12r0,-174","w":483},"[":{"d":"232,-655r-78,0r-11,522r85,0v-5,86,-3,134,-2,157r-208,-11r-3,-832r217,13v2,64,2,110,0,151","w":237},"\\":{"d":"515,-87r-160,83r-371,-694r148,-81","w":494},"]":{"d":"239,-819r-3,832r-209,11v2,-23,3,-71,-1,-157r84,0r-11,-522r-78,0v-1,-41,-1,-87,1,-151","w":253},"^":{"d":"357,-531r-113,22r-71,-147r-63,142v-34,-6,-75,-11,-108,-18r115,-268r108,0","w":355},"_":{"d":"794,-13r-787,12r-5,-180r792,0r0,168","w":810},"`":{"d":"191,-723r-70,36r-123,-177r65,-36","w":191},"a":{"d":"383,-465r-35,464r-105,0v-5,-12,-12,-39,-26,-39v-14,0,-31,6,-45,6v-126,0,-161,-163,-161,-214v0,-64,39,-169,97,-206v25,-15,71,-7,89,-33v-4,-24,-55,-68,-78,-72r0,-127v22,0,57,-2,72,-2v163,0,202,95,192,223xm242,-273v0,-23,-11,-65,-42,-65v-43,0,-54,79,-54,93v0,22,16,64,48,64v30,0,48,-42,48,-92","w":399},"b":{"d":"391,-465r-5,337v-17,100,-64,143,-113,143v-41,0,-62,-22,-109,-57v-6,12,-10,24,-10,31r-143,0r27,-1023r148,0v0,51,-4,98,-4,143v0,248,-2,257,3,263v32,-19,81,-38,93,-38v89,0,114,124,113,201xm206,-482v-57,0,-40,151,-40,195v0,17,-9,118,35,118v11,0,18,-9,29,-21v3,-15,5,-196,5,-212v0,-16,6,-80,-29,-80","w":392},"c":{"d":"348,-483v-92,33,-179,108,-179,197v0,79,62,144,174,139v5,44,6,88,-1,147r-160,0v-142,0,-183,-130,-183,-230v0,-126,108,-426,317,-426v11,0,22,4,32,7r0,166","w":348},"d":{"d":"416,-9r-147,0v0,-7,-5,-18,-10,-31v-48,35,-70,57,-112,57v-50,0,-113,-42,-115,-141r-6,-331v-1,-75,24,-197,115,-197v13,0,63,19,96,38v6,-7,3,-16,3,-259v0,-44,-4,-90,-4,-140r152,0xm257,-280v0,-44,16,-191,-41,-191v-36,0,-31,63,-31,78v0,16,3,193,6,208v11,12,19,20,30,20v45,0,36,-99,36,-115","w":427},"e":{"d":"428,-74v-74,45,-170,87,-254,87v-142,0,-165,-94,-165,-189v0,-98,55,-483,261,-483v123,0,135,136,135,187v0,226,-161,263,-161,279v0,36,-19,45,35,45v66,0,81,-43,125,-34v6,35,18,73,24,108xm255,-409v0,-15,-6,-61,-36,-61v-52,0,-78,44,-78,98v0,26,20,58,45,58v34,0,69,-65,69,-95","w":426},"f":{"d":"332,-960v-7,49,-7,98,-7,138v-51,-17,-166,1,-162,118r5,166v0,0,68,-1,101,-8r7,176r-110,19v0,0,23,229,23,327r0,35r-148,0r-47,-674r0,-175v0,-121,110,-158,192,-158v37,0,114,8,146,36","w":310},"g":{"d":"272,-571v18,-38,15,-35,21,-60v31,-8,95,1,136,-1r16,767v-17,105,-104,138,-179,138v-76,0,-134,-23,-214,-67r0,-142v30,12,129,38,145,38v45,0,59,-31,61,-59v1,-11,5,-46,-32,-54v-150,-34,-227,-127,-227,-367v1,-118,37,-254,175,-241v41,4,31,8,98,48xm287,-268v0,-14,-20,-124,-76,-124v-43,0,-61,71,-61,101v0,51,32,133,92,124v33,-13,45,-79,45,-101","w":454},"h":{"d":"390,-453r-12,535r-155,0r10,-385v1,-34,10,-145,-25,-146v-72,-2,-36,79,-52,119r-11,325v0,0,-89,4,-145,8r22,-979r154,4r-4,378v43,-25,87,-31,101,-31v88,0,118,109,117,172","w":389},"i":{"d":"247,-623v0,75,-47,99,-96,99v-70,0,-91,-56,-91,-99v0,-61,43,-99,96,-99v68,0,91,56,91,99xm193,-444v3,130,-1,283,-13,444v-5,5,-19,6,-158,1r29,-445r142,0","w":251},"j":{"d":"334,-641v7,83,-41,117,-92,123v-68,9,-101,-41,-106,-99v-6,-68,36,-116,92,-123v73,-9,102,56,106,99xm302,-309v7,209,68,553,-172,566v-33,2,-96,-1,-170,-32v-1,-38,7,-102,12,-154v37,2,53,-1,66,-3v106,-13,106,-105,104,-222v-2,-86,0,-180,2,-263r154,-11","w":336},"k":{"d":"467,-17v-51,20,-102,27,-155,35r-109,-334v-40,-48,-15,328,-15,387v3,-10,0,10,0,0r-160,-18r-44,-979r170,10v11,123,5,308,22,369v13,45,85,-226,101,-277v54,9,107,25,161,36r-127,351","w":446},"l":{"d":"199,29r-163,-6r11,-953r152,1r0,958","w":226},"m":{"d":"247,-600v55,2,37,10,89,62v57,-55,70,-45,98,-45v139,0,148,138,145,201r-18,390v-40,5,-93,5,-144,0r11,-303v1,-17,8,-76,-31,-76v-11,0,-25,14,-28,81r-12,242r-141,0r0,-291v0,-23,5,-65,-29,-65v-29,9,-20,54,-21,81r-7,314v-44,11,-99,12,-143,17r0,-673v44,-1,100,-1,150,-1r2,76v28,-6,67,-10,79,-10","w":582},"n":{"d":"255,-323v0,-25,19,-120,-15,-140v-74,5,-37,74,-53,111r-12,312v-40,-5,-155,-3,-155,-3r15,-605r168,0v0,17,-1,39,5,56v34,-17,84,-35,98,-35v88,0,120,102,118,161r-15,501r-154,-2r0,-356","w":424},"o":{"d":"413,-226v0,208,-68,252,-232,252v-170,0,-166,-162,-166,-242v0,-79,40,-434,212,-434v142,0,186,375,186,424xm287,-276v0,-9,-22,-157,-70,-155v-46,1,-84,105,-83,159v1,30,9,119,73,119v60,0,80,-84,80,-123","w":433},"p":{"d":"422,-194v1,63,-25,165,-120,165v-13,0,-66,-15,-100,-31v-6,5,-3,13,-3,217v0,37,4,76,4,118r-158,0r-29,-843r153,0v-1,5,5,15,10,25v100,-73,200,-68,237,71xm181,-341v0,40,-15,160,43,160v38,0,32,-52,32,-65v0,-14,-3,-162,-6,-175v-12,-10,-19,-17,-31,-17v-47,0,-38,83,-38,97","w":418},"q":{"d":"430,-573r-29,844r-158,0v0,-42,5,-81,5,-118v0,-205,2,-212,-4,-217v-34,15,-87,31,-100,31v-95,0,-121,-102,-120,-165r6,-279v35,-139,140,-143,237,-70v6,-11,11,-20,10,-26r153,0xm222,-185v59,0,43,-118,43,-160v0,-14,9,-97,-38,-97v-12,0,-19,7,-31,17v-3,12,-6,161,-6,174v0,13,-6,66,32,66","w":446},"r":{"d":"382,-410v0,13,-1,132,-1,132r-156,0v-10,-126,24,-107,-21,-148v-71,5,-35,81,-51,122r-11,339v-38,-4,-146,-6,-146,-6r11,-657r162,0v0,18,-1,42,5,61v32,-19,80,-37,94,-37v99,0,114,142,114,194","w":361},"s":{"d":"355,-130v0,115,-140,131,-195,131r-126,-1r0,-131v28,-5,141,19,174,-22v18,-23,-188,-289,-188,-367v0,-106,139,-132,198,-131r106,1r0,124v-50,0,-132,-17,-141,24v-36,33,172,282,172,372","w":348},"t":{"d":"368,0v-28,26,-96,30,-125,30v-43,0,-165,-27,-165,-121v0,-146,9,-212,15,-401v-14,-20,-51,-6,-76,-10r7,-108v104,-41,111,-81,121,-199r94,1r1,178r43,1v0,39,1,78,1,121v-8,6,-28,7,-45,7v0,0,-16,127,-16,193v0,81,-24,204,139,193v-1,34,0,66,6,115","w":368},"u":{"d":"428,-582r-8,606r-169,0v0,0,1,-44,-5,-55v-33,16,-83,33,-97,33v-102,0,-117,-133,-117,-177r0,-478r167,0r0,345v0,40,-20,117,15,148v71,-4,37,-72,53,-110r12,-309","w":434},"v":{"d":"455,-609r-149,616r-140,0r-171,-619r147,-49r91,337r81,-325v44,12,98,25,141,40","w":452},"w":{"d":"621,-619r-153,619v-21,-3,-41,-3,-143,0r-62,-202r-51,218v-63,-1,-106,6,-155,-5v-19,-199,-60,-596,-60,-609r0,-40v27,-22,108,-1,157,-1v5,55,10,114,21,179r86,-263r68,0r45,238v20,-36,33,-89,44,-134r203,0","w":600},"x":{"d":"475,-649r-140,309r121,251v-39,27,-99,57,-143,83v-19,-33,-40,-76,-74,-133r-75,150v-55,-12,-108,-32,-161,-52r134,-297r-127,-246v46,-23,109,-42,163,-61v14,25,33,58,58,110v35,-59,56,-101,77,-143v53,11,113,22,167,29","w":467},"y":{"d":"468,-668r-167,626v-28,106,15,127,143,111v-1,33,0,65,7,113v-39,25,-96,26,-130,30v-133,14,-199,-36,-199,-152v0,-13,31,-167,43,-225r-175,-488r0,-24v40,-10,90,-28,142,-39r103,309r85,-298v46,11,102,23,148,37","w":464},"z":{"d":"500,-521v0,44,-248,354,-263,371v73,10,225,19,225,19r10,147r-432,-31r-10,-125r271,-359v-25,-9,-70,-8,-225,2r0,-138r424,-19r0,133","w":501},"{":{"d":"293,-655r-77,0r-12,522r85,0v-4,86,-3,134,-1,157r-209,-11r-1,-380r-84,0r0,-167r83,0r-1,-285r217,13v2,64,2,110,0,151","w":298},"|":{"d":"193,-3r-180,-5r12,-787r168,0r0,792","w":213},"}":{"d":"292,-364r-84,6r-1,371r-209,11v2,-23,3,-71,-1,-157r85,0r-12,-522r-77,0v-2,-41,-2,-87,0,-151r217,-13r-1,297r83,0r0,158","w":290},"~":{"d":"526,-549v0,43,-12,156,-105,156v-71,0,-271,-167,-297,-138v-33,7,-19,73,-19,113r-99,0r-1,-85v-1,-47,20,-159,104,-159v63,0,276,165,294,151v33,-27,14,-117,18,-140r105,0r0,102","w":535},"\u2122":{"d":"187,-729v35,-7,38,-8,57,17v19,-18,24,-15,33,-15v47,0,50,47,49,68r-6,132v-13,2,-31,2,-48,0r3,-102v0,-6,3,-26,-10,-26v-16,12,-10,79,-14,109r-48,1r0,-99v0,-8,2,-22,-10,-22v-10,3,-7,18,-7,27r-2,107v-15,4,-34,4,-49,6r0,-229r51,0xm118,-527v-10,9,-33,11,-42,11v-15,0,-56,-10,-56,-41v-1,-49,2,-72,5,-136v-5,-7,-17,-2,-26,-4r2,-36v33,-26,30,-29,41,-68r32,0r1,61r14,0v0,13,1,27,1,41v-3,2,-10,2,-16,2v4,40,-37,139,42,132v0,11,0,22,2,38","w":332},"\u2013":{"d":"393,-267r-370,10r1,-129r368,-1","w":407},"\u2014":{"d":"675,-267r-652,10r1,-129r650,-1","w":696},"\u201c":{"d":"216,-712v68,36,43,166,-16,166v-43,0,-56,-54,-56,-101v0,-34,23,-137,72,-137r26,0v-22,22,-30,46,-26,72xm122,-628v0,56,-28,82,-57,82v-43,0,-56,-54,-56,-101v0,-34,23,-137,72,-137r27,0v-23,22,-30,46,-26,72v33,25,40,54,40,84","w":271},"\u201d":{"d":"254,-684v0,35,-22,138,-71,138r-27,0v22,-22,30,-47,26,-72v-68,-36,-43,-166,16,-166v43,0,56,54,56,100xm120,-684v0,35,-23,138,-72,138r-26,0v22,-22,30,-47,25,-72v-66,-37,-42,-166,17,-166v43,0,56,54,56,100","w":270},"\u2018":{"d":"188,-609v0,56,-43,82,-86,82v-65,0,-85,-54,-85,-100v0,-35,35,-138,109,-138r40,0v-33,22,-45,47,-38,72v50,25,60,54,60,84","w":200},"\u2019":{"d":"187,-664v0,34,-34,137,-109,137r-40,0v33,-22,45,-46,39,-72v-51,-25,-61,-54,-61,-84v0,-56,43,-82,86,-82v66,0,85,54,85,101","w":201},"\u00a0":{"w":393}}});

jQuery.fn.extend({everyTime:function(interval,label,fn,times,belay){return this.each(function(){jQuery.timer.add(this,interval,label,fn,times,belay);});},oneTime:function(interval,label,fn){return this.each(function(){jQuery.timer.add(this,interval,label,fn,1);});},stopTime:function(label,fn){return this.each(function(){jQuery.timer.remove(this,label,fn);});}});jQuery.extend({timer:{global:[],guid:1,dataKey:"jQuery.timer",regex:/^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,powers:{'ms':1,'cs':10,'ds':100,'s':1000,'das':10000,'hs':100000,'ks':1000000},timeParse:function(value){if(value==undefined||value==null)
return null;var result=this.regex.exec(jQuery.trim(value.toString()));if(result[2]){var num=parseFloat(result[1]);var mult=this.powers[result[2]]||1;return num*mult;}else{return value;}},add:function(element,interval,label,fn,times,belay){var counter=0;if(jQuery.isFunction(label)){if(!times)
times=fn;fn=label;label=interval;}
interval=jQuery.timer.timeParse(interval);if(typeof interval!='number'||isNaN(interval)||interval<=0)
return;if(times&&times.constructor!=Number){belay=!!times;times=0;}
times=times||0;belay=belay||false;var timers=jQuery.data(element,this.dataKey)||jQuery.data(element,this.dataKey,{});if(!timers[label])
timers[label]={};fn.timerID=fn.timerID||this.guid++;var handler=function(){if(belay&&this.inProgress)
return;this.inProgress=true;if((++counter>times&&times!==0)||fn.call(element,counter)===false)
jQuery.timer.remove(element,label,fn);this.inProgress=false;};handler.timerID=fn.timerID;if(!timers[label][fn.timerID])
timers[label][fn.timerID]=window.setInterval(handler,interval);this.global.push(element);},remove:function(element,label,fn){var timers=jQuery.data(element,this.dataKey),ret;if(timers){if(!label){for(label in timers)
this.remove(element,label,fn);}else if(timers[label]){if(fn){if(fn.timerID){window.clearInterval(timers[label][fn.timerID]);delete timers[label][fn.timerID];}}else{for(var fn in timers[label]){window.clearInterval(timers[label][fn]);delete timers[label][fn];}}
for(ret in timers[label])break;if(!ret){ret=null;delete timers[label];}}
for(ret in timers)break;if(!ret)
jQuery.removeData(element,this.dataKey);}}}});jQuery(window).bind("unload",function(){jQuery.each(jQuery.timer.global,function(index,item){jQuery.timer.remove(item);});});

jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});

(function($){var fxQueue=function(queueName){return{name:queueName,isFxQueue:true,paused:false,playing:null,shouldStart:function(){return(this.playing==null||!this.paused);},pause:function(){if(!this.playing){return false;}
((this.playing.isScope)?this.playing:this.playing.elem).stop();this.paused=true;return true;},stop:function(){if(!this.playing){return false;}
((this.playing.isScope)?this.playing:this.playing.elem).stop();this.playing=null;this.paused=false;this.length=0;return true;},start:function(){if(this.playing&&this.paused){this.playing();this.paused=false;return true;}else if(this.length&&!this.playing){this.playing=this[0];$(document).dequeue(this.name);return true;}
return false;},getScope:function(scopeName){if(this.playing&&this.playing.isScope&&this.playing.called==scopeName){return this.playing;}
for(var i=0;i<this.length;i++){if(this[i].isScope&&this[i].called==scopeName){return this[i];}}
return false;},dequeue:function(caller){if(!this.playing){return false;}
if(this.playing.isScope){var queueItems=this.playing.items;for(var i=0;i<queueItems.length;i++){if(caller==queueItems[i].elem[0]&&!queueItems[i].finished){queueItems[i].finished=true;this.playing.finishedItems++;}}
if(this.playing.finishedItems<queueItems.length){return false;}}else if(this.playing.elem&&this.playing.elem[0]!=caller){return false;}
var queue=this;setTimeout(function(){queue.playing=queue[0];$(document).dequeue(queue.name);},this.playing.postDelay);return true;}};};var fxScope=function(scopeName){var newScope=function(){for(var i=0;i<newScope.items.length;i++){newScope.items[i]();}};newScope.called=scopeName;newScope.isScope=true;newScope.finishedItems=0;newScope.stop=function(){for(var i=0;i<newScope.items.length;i++){newScope.items[i].elem.stop();}};newScope.items=[];return newScope;};var _animate=$.fn.animate;$.fn.animate=function(props,speed,easing,callback){if(!this.length){return this;}
var options=(typeof speed=="object")?speed:$.speed(speed,easing,callback);var opts=$.extend({queue:"fx",position:"end",limit:-1,preDelay:0,postDelay:0,complete:null},options);if(!opts.queue||opts.queue=="fx"){return _animate.apply(this,arguments);}
var queueName=opts.queue;var queue=$(document).queue(opts.queue);if(!queue.isFxQueue){$.extend(queue,fxQueue(queueName));}
opts.queue=false;var fn=function(){opts.complete=function(){queue.dequeue(this);if($.isFunction(fn.users_complete)){return fn.users_complete.apply(this,arguments);}};setTimeout(function(){fn.elem.animate(props,opts);},fn.preDelay);};fn.elem=this;fn.preDelay=opts.preDelay||0;fn.postDelay=opts.postDelay||0;fn.users_complete=speed.complete||callback;var scope=queue.getScope(opts.scope);if(scope){scope.items.push(fn);if(queue.playing==scope){fn();}
return this;}
if(opts.limit<0||queue.length<opts.limit){var add=null;if(opts.scope){add=fxScope(opts.scope);add.items.push(fn);}else{add=fn;}
if(opts.position=="end"){queue.push(add);}else if(opts.position=="front"){queue.splice(1,0,add);}
if(queue.shouldStart()){queue.start();}
return this;}};$.extend({fxqueue:function(queueName){return $(document).queue(queueName);}});})(jQuery);

﻿
$(document).ready(function(){$('#elements ul.exp li h3 + *').hide();$('ul.exp li h3').live('click',function(){var $this=$(this).parent();var $name=($this.hasClass('active'))?'main':$this.attr('id');$('ul.exp li.active').not($this).removeClass('active').children(':not(h3)').slideToggle();$this.toggleClass('active');$this.children(':not(h3)').slideToggle();$('#secondary img[class!='+$name+']').css('z-index','1');$('#secondary img[class='+$name+']').css('z-index','100');});});Cufon.replace('body:not(#get-started) h2');Cufon.replace('body#get-started h2:first');
