// JavaScript Document
/*
 * jQuery EasIng v1.1.2 - http://gsgd.co.uk/sandbox/jquery.easIng.php
 *
 * Uses the built In easIng capabilities added In jQuery 1.1
 * to offer multiple easIng options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

// t: current time, b: begInnIng value, c: change In value, d: duration

jQuery.extend( jQuery.easing,
{
	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;
	}
});

/*
    anythingSlider v1.2
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/


	To use the navigationFormatter function, you must have a function that
	accepts two paramaters, and returns a string of HTML text.
	
	index = integer index (1 based);
	panel = jQuery wrapped LI item this tab references
	@return = Must return a string of HTML/Text
	
	navigationFormatter: function(index, panel){
		return index + " Panel"; // This would have each tab with the text 'X Panel' where X = index
	}
*/

(function($){
	
    $.anythingSlider = function(el, options){
        // To avoid scope issues, use 'base' instead of 'this'
        // to reference this class from internal events and functions.
        var base = this;
        
        // Access to jQuery and DOM versions of element
        base.$el = $(el);
        base.el = el; 

		// Set up a few defaults
        base.currentPage = 1;
		base.timer = null;
		base.playing = false;

        // Add a reverse reference to the DOM object
        base.$el.data("AnythingSlider", base);
        
        base.init = function(){
            base.options = $.extend({},$.anythingSlider.defaults, options);
			
			// Cache existing DOM elements for later 
			base.$wrapper = base.$el.find('> div').css('overflow', 'hidden');
            base.$slider  = base.$wrapper.find('> ul');
            base.$items   = base.$slider.find('> li');
            base.$single  = base.$items.filter(':first');

			// Build the navigation if needed
			if(base.options.buildNavigation) base.buildNavigation();
        
        	// Get the details
            base.singleWidth = base.$single.outerWidth();
            base.pages = base.$items.length;

            // Top and tail the list with 'visible' number of items, top has the last section, and tail has the first
			// This supports the "infinite" scrolling
			base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
            base.$items.filter(':last' ).after(base.$items.filter(':first').clone().addClass('cloned'));

			// We just added two items, time to re-cache the list
            base.$items = base.$slider.find('> li'); // reselect
            
			// Setup our forward/backward navigation
			base.buildNextBackButtons();
		
			// If autoPlay functionality is included, then initialize the settings
			if(base.options.autoPlay) {
				base.playing = !base.options.startStopped; // Sets the playing variable to false if startStopped is true
				base.buildAutoPlay();
			};
			
			// If pauseOnHover then add hover effects
			if(base.options.pauseOnHover) {
				base.$el.hover(function(){
					base.clearTimer();
				}, function(){
					base.startStop(base.playing);
				});
			}
			
			// If a hash can not be used to trigger the plugin, then go to page 1
			if((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false){
				base.setCurrentPage(1);
			};
        };

		base.gotoPage = function(page, autoplay){
			// When autoplay isn't passed, we stop the timer
			if(autoplay !== true) autoplay = false;
			if(!autoplay) base.startStop(false);
			
			if(typeof(page) == "undefined" || page == null) {
				page = 1;
				base.setCurrentPage(1);
			};
			
			// Just check for bounds
			if(page > base.pages + 1) page = base.pages;
			if(page < 0 ) page = 1;

			var dir = page < base.currentPage ? -1 : 1,
                n = Math.abs(base.currentPage - page),
                left = base.singleWidth * dir * n;
			
			base.$wrapper.filter(':not(:animated)').animate({
                scrollLeft : '+=' + left
            }, base.options.animationTime, base.options.easing, function () {
                if (page == 0) {
                    base.$wrapper.scrollLeft(base.singleWidth * base.pages);
					page = base.pages;
                } else if (page > base.pages) {
                    base.$wrapper.scrollLeft(base.singleWidth);
                    // reset back to start position
                    page = 1;
                };
				base.setCurrentPage(page);
				
            });
		};
		
		base.setCurrentPage = function(page, move){
			// Set visual
			if(base.options.buildNavigation){
				base.$nav.find('.cur').removeClass('cur');
				$(base.$navLinks[page - 1]).addClass('cur');	
			};
			
			// Only change left if move does not equal false
			if(move !== false) base.$wrapper.scrollLeft(base.singleWidth * page);

			// Update local variable
			base.currentPage = page;
		};
		
		base.goForward = function(autoplay){
			if(autoplay !== true) autoplay = false;
			base.gotoPage(base.currentPage + 1, autoplay);
		};
		
		base.goBack = function(){
			base.gotoPage(base.currentPage - 1);
		};
		
		// This method tries to find a hash that matches panel-X
		// If found, it tries to find a matching item
		// If that is found as well, then that item starts visible
		base.gotoHash = function(){
			if(/^#?panel-\d+$/.test(window.location.hash)){
				var index = parseInt(window.location.hash.substr(7));
				var $item = base.$items.filter(':eq(' + index + ')');
				if($item.length != 0){
					base.setCurrentPage(index);
					return true;
				};
			};
			return false; // A item wasn't found;
		};
        
		// Creates the numbered navigation links
		base.buildNavigation = function(){
			base.$nav = $("<div id='thumbNav'></div>").appendTo(base.$el);
			base.$items.each(function(i,el){
				var index = i + 1;
				var $a = $("<a href='#'></a>");
				
				// If a formatter function is present, use it
				if( typeof(base.options.navigationFormatter) == "function"){
					$a.html(base.options.navigationFormatter(index, $(this)));
				} else {
					$a.text(index);
				}
				$a.click(function(e){
                    base.gotoPage(index);
                    
                    if (base.options.hashTags)
						base.setHash('panel-' + index);
						
                    e.preventDefault();
				});
				base.$nav.append($a);
			});
			base.$navLinks = base.$nav.find('> a');
		};
		
		
		// Creates the Forward/Backward buttons
		base.buildNextBackButtons = function(){
			var $forward = $('<a class="arrow forward">&gt;</a>'),
				$back    = $('<a class="arrow back">&lt;</a>');
				
            // Bind to the forward and back buttons
            $back.click(function(e){
                base.goBack();
				e.preventDefault();
            });

            $forward.click(function(e){
                base.goForward();
				e.preventDefault();
            });

			// Append elements to page
			base.$wrapper.after($back).after($forward);
		};
		
		// Creates the Start/Stop button
		base.buildAutoPlay = function(){

			base.$startStop = $("<a href='#' id='start-stop'></a>").html(base.playing ? base.options.stopText :  base.options.startText);
			base.$el.append(base.$startStop);            
            base.$startStop.click(function(e){
				base.startStop(!base.playing);
				e.preventDefault();
            });

			// Use the same setting, but trigger the start;
			base.startStop(base.playing);
		};
		
		// Handles stopping and playing the slideshow
		// Pass startStop(false) to stop and startStop(true) to play
		base.startStop = function(playing){
			if(playing !== true) playing = false; // Default if not supplied is false
			
			// Update variable
			base.playing = playing;
			
			// Toggle playing and text
			if(base.options.autoPlay) base.$startStop.toggleClass("playing", playing).html( playing ? base.options.stopText : base.options.startText );
			
			if(playing){
				base.clearTimer(); // Just in case this was triggered twice in a row
				base.timer = window.setInterval(function(){
					base.goForward(true);
				}, base.options.delay);
			} else {
				base.clearTimer();
			};
		};
		
		base.clearTimer = function(){
			// Clear the timer only if it is set
			if(base.timer) window.clearInterval(base.timer);
		};
		
		// Taken from AJAXY jquery.history Plugin
		base.setHash = function ( hash ) {
			// Write hash
			if ( typeof window.location.hash !== 'undefined' ) {
				if ( window.location.hash !== hash ) {
					window.location.hash = hash;
				};
			} else if ( location.hash !== hash ) {
				location.hash = hash;
			};
			
			// Done
			return hash;
		};
		// <-- End AJAXY code


		// Trigger the initialization
        base.init();
    };

	
    $.anythingSlider.defaults = {
        easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
        startStopped: false,            // If autoPlay is on, this can force it to start stopped
        delay: 3000,                    // How long between slide transitions in AutoPlay mode
        animationTime: 600,             // How long the slide transition takes
        hashTags: true,                 // Should links change the hashtag in the URL?
        buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
		startText: "Start",             // Start text
		stopText: "Stop",               // Stop text
		navigationFormatter: null       // Details at the top of the file on this use (advanced use)
    };
	

    $.fn.anythingSlider = function(options){
		if(typeof(options) == "object"){
		    return this.each(function(i){			
				(new $.anythingSlider(this, options));

	            // This plugin supports multiple instances, but only one can support hash-tag support
				// This disables hash-tags on all items but the first one
				options.hashTags = false;
	        });	
		} else if (typeof(options) == "number") {

			return this.each(function(i){
				var anySlide = $(this).data('AnythingSlider');
				if(anySlide){
					anySlide.gotoPage(options);
				}
			});
		}
    };

	
})(jQuery);

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/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}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										   
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										   /*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 * 
 * Full name:
 * LeagueGothic
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"13,-114r0,-30r65,0r0,-61r30,0r0,61r66,0r0,30r-66,0r0,61r-30,0r0,-61r-65,0","w":186},{"d":"81,-232v-19,-10,-26,18,-23,35r19,0r0,33r-19,0r0,164r-36,0r0,-164r-18,0r0,-33r18,0v0,-26,-2,-65,42,-69v30,-3,12,17,17,34","w":83,"k":{"a":1,"f":2}},{"d":"79,-65v0,-50,-66,-82,-66,-138v0,-26,8,-53,37,-60r0,-23r22,0r0,22v28,3,38,25,41,49r-33,5v-1,-12,-6,-22,-17,-22v-11,0,-14,14,-14,28v0,50,65,83,66,139v0,31,-10,61,-43,65r0,38r-22,0r0,-39v-31,-5,-43,-32,-44,-62r34,-2v1,17,7,33,23,33v12,0,16,-16,16,-33","w":121},{"d":"35,-40r0,40r38,0r0,-40r-38,0xm106,-216v-2,39,-36,54,-35,100r0,45r-34,0v-3,-51,6,-103,24,-125v6,-7,9,-15,10,-20v1,-5,-2,-16,-12,-16v-13,0,-21,18,-23,25r-32,-14v4,-11,22,-46,55,-45v41,1,47,36,47,50","w":113},{"d":"70,-51v0,-35,-57,-51,-57,-96v0,-23,9,-52,44,-53v42,-1,46,31,46,53r-34,0v0,-9,1,-23,-11,-23v-10,0,-12,13,-12,23v0,36,58,52,58,96v0,24,-12,54,-47,54v-44,0,-51,-39,-51,-60r34,0v0,10,2,30,17,30v10,0,13,-12,13,-24","w":110,"k":{"t":3}},{"d":"9,0r0,-40r38,0r0,40r-38,0","w":56},{"d":"49,-234r-3,-31r27,0r-3,31r29,-12r7,26r-30,6r20,24r-23,14r-14,-26r-13,26r-23,-14r20,-24r-30,-6r8,-26","w":119},{"d":"13,-157r0,-40r38,0r0,40r-38,0xm51,-40v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":63},{"d":"41,-265r21,88r20,-88r39,0r-40,152r0,113r-39,0r0,-113r-39,-152r38,0","w":123,"k":{"A":9,"d":9,"q":9,"c":14,"e":14,"o":14,"a":15}},{"d":"13,-228r0,-37r37,0r0,37r-37,0xm13,-197r37,0r0,202v0,21,0,63,-42,63v-31,0,-11,-19,-16,-36v16,7,24,-13,21,-27r0,-202","w":64},{"d":"13,-114r0,-28r160,-84r0,35r-123,63r123,62r0,35","w":186},{"d":"93,0v-16,-49,-24,-104,-43,-150r0,150r-36,0r0,-265r35,0v16,49,24,105,43,151r0,-151r36,0r0,265r-35,0","w":142},{"d":"30,-207r-26,0r0,-25v49,-12,25,-41,65,-33r0,265r-39,0r0,-207","w":83},{"d":"62,0r-48,0r0,-265v63,-3,108,3,106,71v0,24,-6,38,-25,54v0,0,27,12,27,65v0,39,-14,75,-60,75xm82,-79v0,-44,-22,-41,-29,-41r0,81v7,0,29,4,29,-40xm82,-191v0,-36,-22,-35,-29,-35r0,70v7,0,29,1,29,-35","w":131,"k":{"Y":4}},{"w":55},{"d":"14,-265r39,0v2,30,-4,67,2,93r34,-93r38,0r-36,88r40,177r-37,0v-11,-39,-15,-85,-30,-121v-17,27,-10,78,-11,121r-39,0r0,-265","w":135},{"d":"63,-165v-7,0,-12,10,-12,10r0,155r-37,0r0,-197r37,0r0,17v3,-2,16,-20,29,-20v19,0,28,23,28,39r0,161r-37,0r0,-156v0,-8,-4,-9,-8,-9","w":121,"k":{"t":2,"a":2,"s":2}},{"d":"6,70r0,-33v18,5,35,-15,32,-31r-34,-203r36,0v7,42,6,92,17,131v2,-46,11,-87,15,-131r35,0r-35,212v-5,32,-26,63,-66,55","w":111,"k":{"c":1,"e":1,"o":1,"a":3,"'":-4}},{"d":"70,-164v61,0,43,59,43,110v0,13,-3,57,-51,57v-48,0,-50,-44,-50,-57r0,-151v0,-19,1,-62,50,-62v57,0,51,43,51,79r-39,0v0,-36,-1,-46,-12,-46v-20,1,-9,53,-12,76v6,-4,13,-6,20,-6xm50,-43v0,3,3,12,12,12v8,0,12,-9,12,-12r0,-79v0,-3,-4,-12,-12,-12v-8,0,-12,7,-12,11r0,80","w":123},{"d":"158,-229v-33,0,-51,-30,-79,-30v-25,0,-35,31,-35,31r-24,-10v0,0,17,-54,59,-54v34,0,50,31,79,31v23,0,34,-32,34,-32r23,10v0,0,-18,54,-57,54","w":225},{"d":"22,-246r36,0r0,49r25,0r0,33r-25,0r0,98v0,12,0,32,12,32v6,0,13,-1,13,-1v-4,20,13,38,-19,38v-42,0,-42,-43,-42,-66r0,-101r-18,0r0,-33r18,0r0,-49","w":88,"k":{"a":1,"z":-2,"t":2}},{"d":"116,-170r-39,0v-4,-26,11,-49,-13,-60v-14,0,-13,20,-13,20r0,159v0,0,-1,19,13,19v26,-10,8,-40,13,-67r-16,0r0,-33r55,0r0,132r-23,0r-5,-13v-7,9,-18,16,-30,16v-49,0,-46,-57,-46,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,40","w":129},{"d":"50,-181r-39,0v-1,-46,3,-85,52,-86v40,0,51,29,51,65v0,54,-40,129,-60,163r61,0r0,39r-105,0r0,-39v0,0,66,-95,66,-160v0,-14,-1,-32,-13,-32v-16,0,-13,31,-13,50","w":128},{"d":"42,-168r-27,0r-5,-97r38,0","w":57},{"d":"48,90r-34,0r0,-387r34,0r0,387","w":62,"k":{"t":1,"c":1,"e":1,"o":1,"s":2}},{"d":"30,-297r108,329r-30,0r-107,-329r29,0","w":139},{"d":"72,-71r33,0r0,23v0,0,0,51,-47,51v-47,0,-46,-52,-46,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51r0,57r-60,0v4,26,-11,52,14,63v21,-8,10,-23,13,-42xm59,-168v-22,9,-11,27,-14,48r27,0v-3,-22,9,-39,-13,-48","w":115,"k":{"t":2,"f":2,"v":2,"w":2,"y":2,"a":2,"n":1,"m":1,"p":1,"r":1,"l":1,"I":1,"i":1,"|":1,"s":1}},{"d":"132,-156v-1,-19,-24,-3,-24,1r0,155r-34,0r0,-156v-1,-18,-23,-3,-23,1r0,155r-37,0r0,-197r37,0r0,17v3,-2,17,-20,30,-20v13,0,20,10,24,22v6,-4,21,-22,34,-22v19,0,27,23,27,39r0,161r-34,0r0,-156","w":179,"k":{"t":2,"a":2,"s":2}},{"d":"87,-200r0,41v0,0,-16,-6,-28,4v-6,6,-8,12,-8,18r0,137r-37,0r0,-197r37,0r0,22v1,-5,9,-25,36,-25","w":88,"k":{"s":2,"a":3,"o":1,"e":1,"c":1}},{"d":"143,-210r0,140r-29,0v-4,-19,-2,2,-23,2v-45,0,-16,-76,-25,-116v-7,-29,39,-35,45,-18v1,-18,-3,-35,-34,-35v-27,0,-33,19,-33,27r0,157v0,9,6,27,33,27v15,0,24,-4,30,-11r27,15v-10,13,-27,25,-57,25v-53,0,-65,-39,-65,-56r0,-157v0,-17,12,-57,65,-57v53,0,66,40,66,57xm111,-101r0,-80v0,-6,-4,-9,-9,-9v-5,0,-8,3,-8,9r0,80v0,6,3,10,8,10v5,0,9,-4,9,-10","w":153},{"d":"2,0r0,-30r50,-134r-42,0r0,-33r81,0r0,30r-50,134r50,0r0,33r-89,0","w":93},{"d":"64,0r0,-58r-60,0r0,-34r57,-173r39,0r0,173r18,0r0,34r-18,0r0,58r-36,0xm62,-183r-25,91r27,0v-2,-29,4,-66,-2,-91","k":{"9":-1,"3":-2,"8":-3}},{"d":"51,-262r38,0r19,33r-28,0","w":180},{"d":"34,-203v0,-54,21,-65,77,-64r0,30v-84,-12,-9,111,-65,143v32,15,22,66,22,109v0,28,12,34,43,34r0,31v-56,1,-77,-11,-77,-65v0,-39,18,-85,-23,-95r0,-28v41,-9,23,-56,23,-95"},{"d":"9,-77r4,-34r35,0r7,-46r-35,0r5,-34r34,0r10,-74r35,0r-10,74r46,0r10,-74r34,0r-10,74r34,0r-5,34r-33,0r-7,46r34,0r-5,34r-34,0r-10,77r-35,0r11,-77r-46,0r-10,77r-35,0r11,-77r-35,0xm89,-157r-6,46r46,0r6,-46r-46,0","w":216},{"d":"13,-84r0,-30r160,0r0,30r-160,0xm13,-152r0,-30r160,0r0,30r-160,0","w":186},{"d":"106,-197r0,265r-36,0r0,-81v0,0,-16,16,-29,16v-20,0,-28,-23,-28,-39r0,-125v0,-16,8,-39,28,-39v19,0,34,32,29,3r36,0xm70,-154v0,-15,-21,-16,-21,0r0,111v0,16,21,14,21,0r0,-111"},{"d":"14,0r0,-265r89,0r0,40r-50,0r0,70r36,0r0,42r-36,0r0,73r50,0r0,40r-89,0","w":110,"k":{"A":-1}},{"d":"1,26r96,-291r28,0r-94,291r-30,0","w":126},{"d":"79,-62v0,-43,-67,-95,-67,-144v0,-29,14,-60,51,-61v47,-1,54,40,54,70r-38,3v0,-18,-3,-38,-16,-38v-10,0,-13,11,-13,26v0,43,67,94,67,142v0,35,-12,67,-54,67v-50,0,-57,-38,-57,-77r39,-4v0,22,2,45,18,45v12,0,16,-12,16,-29","w":123},{"d":"13,0r0,-40r38,0r0,40r-38,0xm13,-157r0,-40r38,0r0,40r-38,0","w":63},{"d":"46,-40v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":54},{"d":"93,-140v20,20,21,47,20,83v0,7,-1,60,-52,60v-51,0,-52,-53,-52,-60v-1,-36,1,-63,21,-83v-17,-17,-19,-40,-18,-71v0,-7,0,-56,49,-56v49,0,50,49,50,56v1,31,-1,54,-18,71xm75,-72v0,-32,-1,-47,-14,-47v-13,0,-14,15,-14,47v0,28,3,39,14,39v13,0,14,-15,14,-39xm73,-197v0,-24,-2,-36,-12,-36v-9,0,-11,9,-11,36v0,28,1,40,11,40v10,0,12,-12,12,-40","w":122,"k":{"2":1}},{"d":"13,-80r0,-34r52,0r0,34r-52,0","w":78,"k":{"7":7}},{"d":"46,-265v4,40,-9,62,-20,87r-18,0r13,-47r-13,0r0,-40r38,0","w":54},{"d":"71,0r-36,0r-32,-197r35,0r13,127v6,0,3,-9,5,-13r12,-114r35,0","w":105,"k":{"c":1,"e":1,"o":1,"a":3,"'":-4}},{"d":"14,0r0,-265v65,-3,108,1,108,80v0,61,-35,79,-69,79r0,106r-39,0xm53,-225r0,80v24,0,29,-9,29,-39v0,-30,-5,-41,-29,-41","w":126,"k":{"o":4,"e":4,"c":4}},{"d":"63,-165v-7,0,-12,10,-12,10r0,155r-37,0r0,-265r37,0r0,85v3,-2,16,-20,29,-20v19,0,28,23,28,39r0,161r-37,0r0,-156v0,-8,-4,-9,-8,-9","w":121,"k":{"t":2,"a":2,"s":2}},{"d":"123,0r-39,0r-20,-112r-11,0r0,112r-39,0r0,-265v67,-6,108,10,106,77v0,26,-7,50,-22,60xm82,-187v0,-38,-18,-39,-29,-39r0,78v11,0,29,-1,29,-39","w":129},{"d":"107,-265r0,40r-54,0r0,70r36,0r0,40r-36,0r0,115r-39,0r0,-265r93,0","w":108,"k":{"a":4,"o":4,"e":4,"c":4}},{"d":"14,0r0,-265r39,0r0,265r-39,0","w":67,"k":{"t":1,"c":1,"e":1,"o":1,"s":2}},{"d":"95,0r-16,0r-26,-177v-6,-1,-2,7,-3,11r0,166r-36,0r0,-265r48,0r25,135r25,-135r48,0r0,265r-36,0r0,-177v-14,49,-18,120,-29,177","w":174},{"d":"62,3v-69,-3,-60,-99,-23,-135v-12,-26,-19,-50,-19,-78v0,0,-2,-57,47,-57v49,0,47,57,47,57v0,23,-15,49,-36,76v12,26,20,40,26,50v5,-13,7,-31,8,-37r31,6v-1,10,-4,40,-16,63v8,9,14,12,16,13r0,42v-4,0,-21,-8,-37,-25v-13,15,-28,25,-44,25xm86,-46v-10,-15,-20,-31,-31,-52v0,0,-9,15,-9,41v0,30,29,33,40,11xm81,-211v0,0,1,-26,-14,-26v-15,0,-13,27,-13,27v0,15,3,27,9,43v9,-13,18,-30,18,-44","w":150},{"d":"52,0r-24,0r97,-265r23,0xm44,-237v0,0,0,-10,-6,-10v-7,0,-7,10,-7,10r0,77v0,0,0,10,7,10v6,0,6,-10,6,-10r0,-77xm145,-104v0,0,0,-10,-6,-10v-7,0,-7,10,-7,10r0,76v0,0,0,10,7,10v6,0,6,-10,6,-10r0,-76xm66,-160v0,0,0,31,-28,31v-28,0,-28,-31,-28,-31r0,-77v0,0,0,-30,28,-30v28,0,28,30,28,30r0,77xm167,-28v0,0,0,31,-28,31v-28,0,-28,-31,-28,-31r0,-76v0,0,0,-31,28,-31v28,0,28,31,28,31r0,76","w":176},{"d":"122,-132v0,119,-14,136,-108,132r0,-265v93,-4,108,12,108,133xm53,-226r0,187v27,0,29,-6,29,-93v0,-86,-2,-94,-29,-94","w":133},{"d":"14,0r0,-265r37,0r0,81v0,0,16,-16,29,-16v20,0,28,23,28,39r0,125v0,16,-8,39,-28,39v-19,0,-34,-32,-29,-3r-37,0xm51,-43v0,15,20,17,20,0r0,-111v0,-7,-4,-12,-9,-12v-5,0,-11,6,-11,12r0,111","k":{"t":2,"a":2,"s":2}},{"d":"4,0r0,-42r60,-184r-52,0r0,-39r95,0r0,39r-62,187r62,0r0,39r-103,0","w":110},{"d":"116,-210v-4,66,10,133,-8,188v3,4,7,8,15,9r0,33v-22,0,-34,-9,-40,-20v-5,2,-11,3,-19,3v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156","w":128},{"d":"64,-108r21,-157r38,0r-41,265r-38,0r-41,-265r38,0v9,51,10,110,23,157","w":126,"k":{"A":8,"c":5,"e":5,"o":5,"a":6,"n":4,"m":4,"p":4,"r":4}},{"w":55},{"d":"10,-230r0,-35r70,0r0,302r-70,0r0,-34r36,0r0,-233r-36,0","w":94},{"d":"7,-265r29,-14v0,0,51,76,51,166v0,90,-51,165,-51,165r-29,-15v0,0,46,-61,46,-150v0,-89,-46,-152,-46,-152","w":98},{"d":"63,-279r28,14v0,0,-45,63,-45,152v0,89,45,150,45,150r-28,15v0,0,-51,-75,-51,-165v0,-90,51,-166,51,-166","w":98},{"d":"85,-265r0,35r-36,0r0,233r36,0r0,34r-71,0r0,-302r71,0","w":94},{"d":"15,0r0,-40r38,0r0,40r-38,0xm23,-71r-10,-194r42,0r-10,194r-22,0","w":68},{"d":"37,-225r-36,0r0,-40r112,0r0,40r-37,0r0,225r-39,0r0,-225","w":113,"k":{"y":2,"w":2,"v":2,"r":9,"p":9,"a":12,"o":10,"m":9,"e":10,"c":10,"A":8,"n":9,"x":7,"T":-3}},{"d":"13,57r0,-30r187,0r0,30r-187,0","w":212},{"d":"64,-82r-23,82r-38,0r43,-139r-42,-126r38,0v9,23,12,51,24,71r22,-71r38,0r-42,126r43,139r-38,0v-9,-26,-12,-59,-25,-82","w":129},{"d":"79,-91r37,0r0,37v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,36r-37,0v-4,-25,12,-46,-15,-56v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v28,-9,10,-31,15,-56","w":124},{"d":"87,-203v0,39,-18,86,23,95r0,28v-41,10,-23,56,-23,95v0,54,-21,66,-77,65r0,-31v84,12,9,-111,65,-143v-32,-15,-22,-66,-22,-109v0,-28,-12,-34,-43,-34r0,-30v56,-1,77,10,77,64"},{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156","w":127,"k":{"T":4}},{"d":"73,-65v1,-34,4,-55,-33,-55r0,-32v32,-2,30,-14,30,-47v0,-15,0,-34,-12,-34v-10,0,-12,9,-12,45r-38,0v0,-30,1,-79,50,-79v49,0,50,49,50,56v0,40,-8,57,-19,71v19,15,22,41,22,72v0,7,-1,71,-50,71v-49,0,-52,-49,-52,-79r39,0v0,36,3,45,13,45v12,0,12,-19,12,-34","k":{"7":1}},{"d":"126,0r-30,0r-17,-105r-16,105r-30,0r-29,-197r33,0v6,37,5,81,15,114r17,-114r21,0v8,37,8,81,19,114r13,-114r34,0","w":159,"k":{"c":1,"e":1,"o":1,"a":3,"'":-4}},{"d":"79,-265r39,0r0,211v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-211r39,0r0,211v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-211","w":131},{"d":"53,-103v-60,0,-39,-57,-43,-107v0,-13,3,-57,51,-57v48,0,51,44,51,57r0,150v0,19,-2,63,-51,63v-56,0,-51,-45,-51,-79r39,0v0,36,1,45,12,45v20,-1,9,-55,12,-78v-6,4,-13,6,-20,6xm73,-144r0,-78v0,-3,-3,-12,-12,-12v-8,0,-12,9,-12,12r0,77v0,3,4,12,12,12v8,0,12,-7,12,-11","w":123},{"d":"14,68r0,-265r37,0r0,13v0,0,16,-16,29,-16v20,0,28,23,28,39r0,125v0,16,-8,39,-28,39v-13,0,-29,-16,-29,-16r0,81r-37,0xm51,-154r0,111v0,13,20,17,20,0r0,-111v0,-7,-4,-12,-9,-12v-5,0,-11,5,-11,12","k":{"t":2,"a":2,"s":2}},{"d":"104,-149r0,101v0,0,1,51,-46,51v-47,0,-47,-52,-47,-52r0,-99v0,0,0,-52,47,-52v47,0,46,51,46,51xm70,-148v0,0,2,-20,-12,-20v-13,0,-13,20,-13,20r0,99v0,0,0,20,13,20v14,0,12,-20,12,-20r0,-99","w":115,"k":{"t":2,"f":2,"v":2,"w":2,"y":2,"a":2,"n":1,"m":1,"p":1,"r":1,"l":1,"I":1,"i":1,"|":1,"s":1}},{"d":"44,-51v0,5,1,18,10,18v26,-1,12,-39,15,-62v-18,8,-25,25,-25,44xm9,-46v1,-85,60,-50,60,-104v0,-7,0,-18,-10,-18v-12,0,-10,18,-10,29r-36,0v-3,-35,18,-61,49,-61v74,0,33,126,46,200r-35,0v-5,-4,-1,-17,-6,-16v-16,25,-58,34,-58,-30","w":119,"k":{"t":3,"f":2,"v":1,"w":1,"y":1,"n":1,"m":1,"p":1,"r":1,"l":1,"I":1,"i":1,"|":1,"s":1}},{"d":"52,-77v-1,22,1,50,12,46v19,-1,10,-68,12,-94v0,-11,-5,-20,-13,-20v-9,0,-15,14,-15,20r-33,0r0,-140r94,0r0,39r-60,0r0,55v0,0,12,-9,22,-9v40,0,43,46,43,55v-4,59,20,128,-50,128v-48,0,-51,-45,-51,-80r39,0","w":123},{"d":"14,0r0,-265r39,0r0,229r52,0r0,36r-91,0","w":106,"k":{"A":-4,"Y":7}},{"d":"3,0r34,-102r-31,-95r34,0v6,17,8,37,15,52r14,-52r34,0r-31,95r34,102r-35,0v-6,-18,-9,-39,-17,-55r-16,55r-35,0","w":108},{"d":"14,-265r37,0v2,41,-4,90,2,126r19,-58r33,0r-26,64r33,133r-35,0r-20,-82v-12,17,-4,55,-6,82r-37,0r0,-265","w":112,"k":{"o":2,"e":2,"c":2}},{"d":"51,0r-37,0r0,-197r37,0r0,197xm14,-228r0,-37r37,0r0,37r-37,0","w":65,"k":{"t":1,"c":1,"e":1,"o":1,"s":2}},{"d":"48,-152r0,107v0,7,0,15,10,15v16,2,8,-29,10,-43r37,0v3,47,-9,76,-47,76v-26,0,-46,-14,-46,-58r0,-86v0,-44,20,-59,46,-59v36,0,50,25,47,72r-37,0v-1,-14,5,-39,-10,-39v-10,0,-10,8,-10,15","w":113,"k":{"t":2,"f":2,"v":2,"w":2,"y":2,"a":2,"n":1,"m":1,"p":1,"r":1,"l":1,"I":1,"i":1,"|":1,"s":1}},{"d":"102,-163v3,23,0,43,1,68v0,0,0,49,-46,49v-8,-3,-12,3,-12,8v0,8,14,10,27,12v23,3,51,12,51,46v0,39,-33,51,-63,51v-58,0,-78,-52,-29,-68v-29,-6,-26,-46,0,-56v-35,-35,-16,-50,-21,-97v0,0,2,-50,47,-50v18,0,29,8,36,18v5,-5,18,-18,30,-18r0,33v-10,0,-17,2,-21,4xm68,-148v0,0,1,-18,-11,-18v-12,0,-11,18,-11,18r0,54v0,0,-1,17,11,17v12,0,11,-17,11,-17r0,-54xm61,40v25,0,45,-22,8,-27v-14,-6,-32,-2,-32,13v0,8,7,14,24,14","w":123,"k":{",":-4,"s":1,"o":2,"e":2,"c":2}},{"d":"76,-265r41,0r67,123r-35,0r-52,-96r-53,96r-35,0","w":193},{"d":"2,3r0,-39v0,0,21,5,21,-19r0,-210r39,0r0,216v0,28,-14,55,-60,52","w":74},{"d":"51,0r-37,0r0,-265r37,0r0,265","w":65,"k":{"t":1,"c":1,"e":1,"o":1,"s":2}},{"d":"41,0r-37,0r40,-265r47,0r40,265r-38,0r-7,-54r-37,0xm81,-95v-6,-29,-5,-65,-15,-90r-12,90r27,0","w":134,"k":{"T":8}},{"d":"106,-265r0,265r-36,0r0,-13v0,0,-16,16,-29,16v-20,0,-28,-23,-28,-39r0,-125v0,-16,8,-39,28,-39v13,0,29,16,29,16r0,-81r36,0xm70,-43r0,-111v0,-14,-21,-17,-21,0r0,111v0,16,21,15,21,0"},{"d":"173,-142r0,28r-160,83r0,-35r123,-62r-123,-63r0,-35","w":186},{"d":"59,-32v7,0,12,-10,12,-10r0,-155r36,0r0,197r-36,0r0,-17v-3,2,-17,20,-30,20v-19,0,-27,-23,-27,-39r0,-161r36,0r0,156v0,8,5,9,9,9","w":121,"k":{"t":2,"v":2,"w":2,"y":2,"c":1,"e":1,"o":1,"s":1}},{"d":"116,-54v0,0,0,57,-52,57v-52,0,-52,-57,-52,-57r0,-156v0,0,0,-57,52,-57v52,0,52,57,52,57r0,156xm77,-210v0,0,1,-20,-13,-20v-14,0,-13,20,-13,20r0,156v0,0,-1,19,13,19v14,0,13,-19,13,-19r0,-156","w":127},{"d":"90,-141r-20,141r-30,0r-36,-265r36,0v8,48,8,103,19,147r18,-147r28,0r18,147v5,1,2,-6,3,-9r16,-138r36,0r-36,265r-30,0v-9,-46,-10,-99,-22,-141","w":182,"k":{"A":8,"c":5,"e":5,"o":5,"a":6,"n":4,"m":4,"p":4,"r":4}},{"d":"20,0r40,-226r-59,0r0,-39r98,0v-1,100,-28,175,-39,265r-40,0","w":103,"k":{"4":4,"1":-2}},{"d":"84,0r0,-115r-31,0r0,115r-39,0r0,-265r39,0r0,110r31,0r0,-110r38,0r0,265r-38,0","w":136}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+440-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("-qMf5,%#D2>@-~hOG,gBYqY>+L%fM,>@+LaBD2^pMP_:?A#$-L?Uy&H@-3mMD3}*HxY]cLEE%pE#^Aa4Yp}4+qPm4UeK%qeOYAf}^P`;xAi:*~#pGheixUMaNc?h^qaDxPM4GN8`?NeG-cn5YP^S2w%>NA%&PNh`5LwfNTnXD2%p+Ub:=2=WGNe+%#]$jp%`5qh#-~Y$-c}byN8:4uf$jp8:5uf`j,}h5,G#D~}py2Y@M$Ep5Th`DTH>C&#OD2?i?$E;DA#;+$]l*pG&Gf`@-N_iyAbAG+a,?,PB?,PBMP`@?L>m-c=;DcE#M+%#-q};?Lg#D2>@j,n;4&^@?2fh-ch,5&Yi*LU_5u:X-LUbMfm32LhG+Nf8e~uwgqTYa-jH%*y=^cNxP2+?MD54GCS]n$3Uh,pibtX:m@;`}BA#fL&|EKO_>Wl`2LhGScUi-c8]")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":120,"face":{"font-family":"league","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"265","descent":"-95","x-height":"3","bbox":"-9.80397 -297 215 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"}}));


Cufon.replace('h1, h2, h3, h4');

var $j = jQuery.noConflict();


        function formatText(index, panel) {
		  return index + "";
	    }
    
        $j(function () {
        
            $j('.anythingSlider').anythingSlider({
                easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
                autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
                delay: 6000,                    // How long between slide transitions in AutoPlay mode
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                animationTime: 1000,             // How long the slide transition takes
                hashTags: false,                 // Should links change the hashtag in the URL?
                buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        		pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
        		startText: "Go",             // Start text
		        stopText: "Stop",               // Stop text
		        navigationFormatter: null       // Details at the top of the file on this use (advanced use)
            });
            
            $j("#slide-jump").click(function(){
                $j('.anythingSlider').anythingSlider(6);
            });
            
        });
        	$j(document).ready(function(){
		$j('#nav ul li').hover(
			function() { $j('ul', this).css('display', 'block'); },
			function() { $j('ul', this).css('display', 'none'); });
$j.getJSON("http://twitter.com/statuses/user_timeline/surfberbere.json?callback=?", function(data) {
     $j("span#twitter").html(data[0].text);
});
	});
	