(function(a){a.fn.hoverIntent=function(k,j){var l={sensitivity:7,interval:100,timeout:0};l=a.extend(l,j?{over:k,out:j}:k);var n,m,h,d;var e=function(f){n=f.pageX;m=f.pageY};var c=function(g,f){f.hoverIntent_t=clearTimeout(f.hoverIntent_t);if((Math.abs(h-n)+Math.abs(d-m))<l.sensitivity){a(f).unbind("mousemove",e);f.hoverIntent_s=1;return l.over.apply(f,[g])}else{h=n;d=m;f.hoverIntent_t=setTimeout(function(){c(g,f)},l.interval)}};var i=function(g,f){f.hoverIntent_t=clearTimeout(f.hoverIntent_t);f.hoverIntent_s=0;return l.out.apply(f,[g])};var b=function(o){var g=jQuery.extend({},o);var f=this;if(f.hoverIntent_t){f.hoverIntent_t=clearTimeout(f.hoverIntent_t)}if(o.type=="mouseenter"){h=g.pageX;d=g.pageY;a(f).bind("mousemove",e);if(f.hoverIntent_s!=1){f.hoverIntent_t=setTimeout(function(){c(g,f)},l.interval)}}else{a(f).unbind("mousemove",e);if(f.hoverIntent_s==1){f.hoverIntent_t=setTimeout(function(){i(g,f)},l.timeout)}}};return this.bind("mouseenter",b).bind("mouseleave",b)}})(jQuery);(function(g){var c=g.browser.msie&&parseInt(g.browser.version)===6&&typeof window.XMLHttpRequest!=="object",a=g.browser.msie&&parseInt(g.browser.version)===7,b=null,e=[];g.modal=function(f,d){return g.modal.impl.init(f,d)};g.modal.close=function(){g.modal.impl.close()};g.modal.focus=function(d){g.modal.impl.focus(d)};g.modal.setContainerDimensions=function(){g.modal.impl.setContainerDimensions()};g.modal.setPosition=function(){g.modal.impl.setPosition()};g.modal.update=function(f,d){g.modal.impl.update(f,d)};g.fn.modal=function(d){return g.modal.impl.init(this,d)};g.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:1000,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};g.modal.impl={d:{},init:function(f,d){var h=this;if(h.d.data){return false}b=g.browser.msie&&!g.boxModel;h.o=g.extend({},g.modal.defaults,d);h.zIndex=h.o.zIndex;h.occb=false;if(typeof f==="object"){f=f instanceof jQuery?f:g(f);h.d.placeholder=false;if(f.parent().parent().size()>0){f.before(g("<span></span>").attr("id","simplemodal-placeholder").css({display:"none"}));h.d.placeholder=true;h.display=f.css("display");if(!h.o.persist){h.d.orig=f.clone(true)}}}else{if(typeof f==="string"||typeof f==="number"){f=g("<div></div>").html(f)}else{alert("SimpleModal Error: Unsupported data type: "+typeof f);return h}}h.create(f);h.open();g.isFunction(h.o.onShow)&&h.o.onShow.apply(h,[h.d]);return h},create:function(f){var d=this;e=d.getDimensions();if(d.o.modal&&c){d.d.iframe=g('<iframe src="javascript:false;"></iframe>').css(g.extend(d.o.iframeCss,{display:"none",opacity:0,position:"fixed",height:e[0],width:e[1],zIndex:d.o.zIndex,top:0,left:0})).appendTo(d.o.appendTo)}d.d.overlay=g("<div></div>").attr("id",d.o.overlayId).addClass("simplemodal-overlay").css(g.extend(d.o.overlayCss,{display:"none",opacity:d.o.opacity/100,height:d.o.modal?e[0]:0,width:d.o.modal?e[1]:0,position:"fixed",left:0,top:0,zIndex:d.o.zIndex+1})).appendTo(d.o.appendTo);d.d.container=g("<div></div>").attr("id",d.o.containerId).addClass("simplemodal-container").css(g.extend(d.o.containerCss,{display:"none",position:"fixed",zIndex:d.o.zIndex+2})).append(d.o.close&&d.o.closeHTML?g(d.o.closeHTML).addClass(d.o.closeClass):"").appendTo(d.o.appendTo);d.d.wrap=g("<div></div>").attr("tabIndex",-1).addClass("simplemodal-wrap").css({height:"100%",outline:0,width:"100%"}).appendTo(d.d.container);d.d.data=f.attr("id",f.attr("id")||d.o.dataId).addClass("simplemodal-data").css(g.extend(d.o.dataCss,{display:"none"})).appendTo("body");d.setContainerDimensions();d.d.data.appendTo(d.d.wrap);if(c||b){d.fixIE()}},bindEvents:function(){var d=this;g("."+d.o.closeClass).bind("click.simplemodal",function(f){f.preventDefault();d.close()});d.o.modal&&d.o.close&&d.o.overlayClose&&d.d.overlay.bind("click.simplemodal",function(f){f.preventDefault();d.close()});g(document).bind("keydown.simplemodal",function(f){if(d.o.modal&&f.keyCode===9){d.watchTab(f)}else{if(d.o.close&&d.o.escClose&&f.keyCode===27){f.preventDefault();d.close()}}});g(window).bind("resize.simplemodal",function(){e=d.getDimensions();d.o.autoResize?d.setContainerDimensions():d.o.autoPosition&&d.setPosition();if(c||b){d.fixIE()}else{if(d.o.modal){d.d.iframe&&d.d.iframe.css({height:e[0],width:e[1]});d.d.overlay.css({height:e[0],width:e[1]})}}})},unbindEvents:function(){g("."+this.o.closeClass).unbind("click.simplemodal");g(document).unbind("keydown.simplemodal");g(window).unbind("resize.simplemodal");this.d.overlay.unbind("click.simplemodal")},fixIE:function(){var f=this,d=f.o.position;g.each([f.d.iframe||null,!f.o.modal?null:f.d.overlay,f.d.container],function(l,i){if(i){var j=i[0].style;j.position="absolute";if(l<2){j.removeExpression("height");j.removeExpression("width");j.setExpression("height",'document.body.scrollHeight > document.body.clientHeight ? document.body.scrollHeight : document.body.clientHeight + "px"');j.setExpression("width",'document.body.scrollWidth > document.body.clientWidth ? document.body.scrollWidth : document.body.clientWidth + "px"')}else{var k;if(d&&d.constructor===Array){l=d[0]?typeof d[0]==="number"?d[0].toString():d[0].replace(/px/,""):i.css("top").replace(/px/,"");l=l.indexOf("%")===-1?l+' + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"':parseInt(l.replace(/%/,""))+' * ((document.documentElement.clientHeight || document.body.clientHeight) / 100) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';if(d[1]){k=typeof d[1]==="number"?d[1].toString():d[1].replace(/px/,"");k=k.indexOf("%")===-1?k+' + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"':parseInt(k.replace(/%/,""))+' * ((document.documentElement.clientWidth || document.body.clientWidth) / 100) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}}else{l='(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';k='(document.documentElement.clientWidth || document.body.clientWidth) / 2 - (this.offsetWidth / 2) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}j.removeExpression("top");j.removeExpression("left");j.setExpression("top",l);j.setExpression("left",k)}}})},focus:function(f){var d=this;f=f&&g.inArray(f,["first","last"])!==-1?f:"first";var h=g(":input:enabled:visible:"+f,d.d.wrap);setTimeout(function(){h.length>0?h.focus():d.d.wrap.focus()},10)},getDimensions:function(){var d=g(window);return[g.browser.opera&&g.browser.version>"9.5"&&g.fn.jquery<"1.3"||g.browser.opera&&g.browser.version<"9.5"&&g.fn.jquery>"1.2.6"?d[0].innerHeight:d.height(),d.width()]},getVal:function(f,d){return f?typeof f==="number"?f:f==="auto"?0:f.indexOf("%")>0?parseInt(f.replace(/%/,""))/100*(d==="h"?e[0]:e[1]):parseInt(f.replace(/px/,"")):null},update:function(f,d){var h=this;if(!h.d.data){return false}h.d.origHeight=h.getVal(f,"h");h.d.origWidth=h.getVal(d,"w");h.d.data.hide();f&&h.d.container.css("height",f);d&&h.d.container.css("width",d);h.setContainerDimensions();h.d.data.show();h.o.focus&&h.focus();h.unbindEvents();h.bindEvents()},setContainerDimensions:function(){var f=this,d=c||a,p=f.d.origHeight?f.d.origHeight:g.browser.opera?f.d.container.height():f.getVal(d?f.d.container[0].currentStyle.height:f.d.container.css("height"),"h");d=f.d.origWidth?f.d.origWidth:g.browser.opera?f.d.container.width():f.getVal(d?f.d.container[0].currentStyle.width:f.d.container.css("width"),"w");var m=f.d.data.outerHeight(true),n=f.d.data.outerWidth(true);f.d.origHeight=f.d.origHeight||p;f.d.origWidth=f.d.origWidth||d;var o=f.o.maxHeight?f.getVal(f.o.maxHeight,"h"):null,l=f.o.maxWidth?f.getVal(f.o.maxWidth,"w"):null;o=o&&o<e[0]?o:e[0];l=l&&l<e[1]?l:e[1];var k=f.o.minHeight?f.getVal(f.o.minHeight,"h"):"auto";p=p?f.o.autoResize&&p>o?o:p<k?k:p:m?m>o?o:f.o.minHeight&&k!=="auto"&&m<k?k:m:k;o=f.o.minWidth?f.getVal(f.o.minWidth,"w"):"auto";d=d?f.o.autoResize&&d>l?l:d<o?o:d:n?n>l?l:f.o.minWidth&&o!=="auto"&&n<o?o:n:o;f.d.container.css({height:p,width:d});f.d.wrap.css({overflow:m>p||n>d?"auto":"visible"});f.o.autoPosition&&f.setPosition()},setPosition:function(){var f=this,d,h;d=e[0]/2-f.d.container.outerHeight(true)/2;h=e[1]/2-f.d.container.outerWidth(true)/2;if(f.o.position&&Object.prototype.toString.call(f.o.position)==="[object Array]"){d=f.o.position[0]||d;h=f.o.position[1]||h}else{d=d;h=h}f.d.container.css({left:h,top:d})},watchTab:function(f){var d=this;if(g(f.target).parents(".simplemodal-container").length>0){d.inputs=g(":input:enabled:visible:first, :input:enabled:visible:last",d.d.data[0]);if(!f.shiftKey&&f.target===d.inputs[d.inputs.length-1]||f.shiftKey&&f.target===d.inputs[0]||d.inputs.length===0){f.preventDefault();d.focus(f.shiftKey?"last":"first")}}else{f.preventDefault();d.focus()}},open:function(){var d=this;d.d.iframe&&d.d.iframe.show();if(g.isFunction(d.o.onOpen)){d.o.onOpen.apply(d,[d.d])}else{d.d.overlay.show();d.d.container.show();d.d.data.show()}d.o.focus&&d.focus();d.bindEvents()},close:function(){var f=this;if(!f.d.data){return false}f.unbindEvents();if(g.isFunction(f.o.onClose)&&!f.occb){f.occb=true;f.o.onClose.apply(f,[f.d])}else{if(f.d.placeholder){var d=g("#simplemodal-placeholder");if(f.o.persist){d.replaceWith(f.d.data.removeClass("simplemodal-data").css("display",f.display))}else{f.d.data.hide().remove();d.replaceWith(f.d.orig)}}else{f.d.data.hide().remove()}f.d.container.hide().remove();f.d.overlay.hide();f.d.iframe&&f.d.iframe.hide().remove();setTimeout(function(){f.d.overlay.remove();f.d={}},10)}}}})(jQuery);(function(j,o,r){var q="hashchange",l=document,n,m=j.event.special,k=l.documentMode,p="on"+q in o&&(k===r||k>7);function s(a){a=a||location.href;return"#"+a.replace(/^[^#]*#?(.*)$/,"$1")}j.fn[q]=function(a){return a?this.bind(q,a):this.trigger(q)};j.fn[q].delay=50;m[q]=j.extend(m[q],{setup:function(){if(p){return false}j(n.start)},teardown:function(){if(p){return false}j(n.stop)}});n=(function(){var d={},e,a=s(),c=function(h){return h},b=c,f=c;d.start=function(){e||g()};d.stop=function(){e&&clearTimeout(e);e=r};function g(){var h=s(),i=f(a);if(h!==a){b(a=h,i);j(o).trigger(q)}else{if(i!==a){location.href=location.href.replace(/#.*/,"")+i}}e=setTimeout(g,j.fn[q].delay)}j.browser.msie&&!p&&(function(){var i,h;d.start=function(){if(!i){h=j.fn[q].src;h=h&&h+s();i=j('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){h||b(s());g()}).attr("src",h||"javascript:0").insertAfter("body")[0].contentWindow;l.onpropertychange=function(){try{if(event.propertyName==="title"){i.document.title=l.title}}catch(t){}}}};d.stop=c;f=function(){return s(i.location.href)};b=function(w,z){var x=i.document,y=j.fn[q].domain;if(w!==z){x.title=l.title;x.open();y&&x.write('<script>document.domain="'+y+'"<\/script>');x.close();i.location.hash=w}}})();return d})()})(jQuery,this);(function(c){function d(a,h,b){var g=c.Event(h);a.trigger(g,b);return g.result!==false}c.fn.easyTabs=function(){c.error("easyTabs() is no longer used. Now use easytabs() -- no capitalization.")};c.fn.easytabs=function(a){var b=arguments;return this.each(function(){var g=c(this),h=g.data("easytabs");if(!h){c.fn.easytabs.methods.init.apply(g,[a]);c.fn.easytabs.methods.initHashChange.apply(g);c.fn.easytabs.methods.initCycle.apply(g)}if(c.fn.easytabs.publicMethods[a]){return c.fn.easytabs.publicMethods[a].apply(g,Array.prototype.slice.call(b,1))}})};c.fn.easytabs.defaults={animate:true,panelActiveClass:"active",tabActiveClass:"active",defaultTab:"li:first-child",animationSpeed:"normal",tabs:"> ul > li",updateHash:true,cycle:false,collapsible:false,collapsedClass:"collapsed",collapsedByDefault:true,uiTabs:false,transitionIn:"fadeIn",transitionOut:"fadeOut",transitionCollapse:"slideUp",transitionUncollapse:"slideDown"};c.fn.easytabs.methods={init:function(o){var b=this,k,p,l=c(),m,a,n={fast:200,normal:400,slow:600};if(o&&o.uiTabs){b.addClass("ui-tabs");c.extend(c.fn.easytabs.defaults,{tabActiveClass:"ui-tabs-selected"})}if(o&&o.collapsible&&o.defaultTab){c.fn.easytabs.defaults.collapsedByDefault=false}k=c.extend({},c.fn.easytabs.defaults,o);if(typeof(k.animationSpeed)=="string"){k.animationSpeed=n[k.animationSpeed]}p=b.find(k.tabs);p.each(function(){targetId=c(this).children("a").attr("href").match(/#([^\?]+)/)[0].substr(1);$matchingPanel=b.find("div[id="+targetId+"]");if($matchingPanel.size()>0){$matchingPanel.data("easytabs",{position:$matchingPanel.css("position"),visibility:$matchingPanel.css("visibility")});l=l.add($matchingPanel.hide())}else{p=p.not(c(this))}});c("a.anchor").remove().prependTo("body");b.data("easytabs",{opts:k,skipUpdateToHash:false,tabs:p,panels:l});c.fn.easytabs.methods.setDefaultTab.apply(b);p.children("a").bind("click.easytabs",function(e){b.data("easytabs").opts.cycle=false;b.data("easytabs").skipUpdateToHash=false;$clicked=c(this);c.fn.easytabs.methods.selectTab.apply($clicked,[b]);e.preventDefault()})},loadFromData:function(){return this.data("easytabs")},setDefaultTab:function(){var a=this,m=c.fn.easytabs.methods.loadFromData.apply(a),r=m.opts,b=m.tabs,q=m.panels,n=window.location.hash.match(/^[^\?]*/)[0],l=b.find("a[href='"+n+"']").parent(),p,o;if(l.size()==1){p=l;a.data("easytabs").opts.cycle=false}else{p=b.parent().find(r.defaultTab);if(p.size()==0){c.error("The specified default tab ('"+r.defaultTab+"') could not be found in the tab set.")}}o=p.children("a").first();a.data("easytabs").defaultTab=p;a.data("easytabs").defaultTabLink=o;if(r.collapsible&&l.size()==0&&r.collapsedByDefault){p.addClass(r.collapsedClass).children().addClass(r.collapsedClass)}else{q.filter("#"+o.attr("href").match(/#([^\?]+)/)[0].substr(1)).show().addClass(r.panelActiveClass);p.addClass(r.tabActiveClass).children().addClass(r.tabActiveClass)}},getHeightForHidden:function(){if(this.data("easytabs")&&this.data("easytabs").lastHeight){return this.data("easytabs").lastHeight}var a=this.css("display"),b=this.wrap(c("<div>",{position:"absolute",visibility:"hidden",overflow:"hidden"})).css({position:"relative",visibility:"hidden",display:"block"}).outerHeight();this.unwrap();this.css({position:this.data("easytabs").position,visibility:this.data("easytabs").visibility,display:a});c.extend(this.data("easytabs"),{lastHeight:b});return b},setAndReturnHeight:function(){var b=this.outerHeight(),a={lastHeight:b};if(this.data("easytabs")){c.extend(this.data("easytabs"),a)}else{this.data("easytabs",a)}return b},selectTab:function(x,F){var w=this,G=window.location,J=G.hash.match(/^[^\?]*/)[0],a=c.fn.easytabs.methods.loadFromData.apply(x),A=a.opts,H=a.skipUpdateToHash,K=a.tabs,D=a.panels,I=D.filter(w.attr("href").match(/#([^\?]+)/)[0]),y=a.defaultTabLink,b=(A.animate)?{show:A.transitionIn,hide:A.transitionOut,speed:A.animationSpeed,collapse:A.transitionCollapse,uncollapse:A.transitionUncollapse,halfSpeed:A.animationSpeed/2}:{show:"show",hide:"hide",speed:0,collapse:"hide",uncollapse:"show",halfSpeed:0};if(A.collapsible&&!H&&(w.hasClass(A.tabActiveClass)||w.hasClass(A.collapsedClass))){D.stop(true,true);if(d(x,"easytabs:before",[w,I,a])){K.filter("."+A.tabActiveClass).removeClass(A.tabActiveClass).children().removeClass(A.tabActiveClass);if(w.hasClass(A.collapsedClass)){w.parent().removeClass(A.collapsedClass).addClass(A.tabActiveClass).children().removeClass(A.collapsedClass).addClass(A.tabActiveClass);I.addClass(A.panelActiveClass)[b.uncollapse](b.speed,function(){x.trigger("easytabs:midTransition",[w,I,a]);if(typeof F=="function"){F()}})}else{w.parent().addClass(A.collapsedClass).children().addClass(A.collapsedClass);I.removeClass(A.panelActiveClass)[b.collapse](b.speed,function(){x.trigger("easytabs:midTransition",[w,I,a]);if(typeof F=="function"){F()}})}}}else{if(!w.hasClass(A.tabActiveClass)||!I.hasClass(A.panelActiveClass)){D.stop(true,true);if(d(x,"easytabs:before",[w,I,a])){var C=D.filter(":visible"),z=I.parent(),E=c.fn.easytabs.methods.getHeightForHidden.apply(I),B=C.length?c.fn.easytabs.methods.setAndReturnHeight.apply(C):0,L=E-B,v=function(){x.trigger("easytabs:midTransition",[w,I,a]);if(A.animate&&A.transitionIn=="fadeIn"&&L<0){z.animate({height:z.height()+L},b.halfSpeed).css({"min-height":""})}if(A.updateHash&&!H){window.location.hash=w.attr("href")}else{x.data("easytabs").skipUpdateToHash=false}I[b.show](b.speed,function(){x.data("easytabs").tabs=K;x.data("easytabs").panels=D;z.css({height:"","min-height":""});x.trigger("easytabs:after",[w,I,a]);if(typeof F=="function"){F()}})};if(A.animate&&A.transitionOut=="fadeOut"){if(L>0){z.animate({height:(z.height()+L)},b.halfSpeed)}else{z.css({"min-height":z.height()})}}K.filter("."+A.tabActiveClass).removeClass(A.tabActiveClass).children().removeClass(A.tabActiveClass);K.filter("."+A.collapsedClass).removeClass(A.collapsedClass).children().removeClass(A.collapsedClass);w.parent().addClass(A.tabActiveClass).children().addClass(A.tabActiveClass);D.filter("."+A.panelActiveClass).removeClass(A.panelActiveClass);I.addClass(A.panelActiveClass);if(C.size()>0){C[b.hide](b.speed,v)}else{I[b.uncollapse](b.speed,v)}}}}},selectTabFromHashChange:function(){var b=this,l=c.fn.easytabs.methods.loadFromData.apply(b),n=l.opts,p=l.tabs,o=l.defaultTab,a=l.defaultTabLink,k=window.location.hash.match(/^[^\?]*/)[0],m=p.find("a[href='"+k+"']");if(n.updateHash){if(m.size()>0){b.data("easytabs").skipUpdateToHash=true;c.fn.easytabs.methods.selectTab.apply(m,[b])}else{if(k==""&&!o.hasClass(n.tabActiveClass)&&!n.cycle){b.data("easytabs").skipUpdateToHash=true;c.fn.easytabs.methods.selectTab.apply(a,[b])}}}},cycleTabs:function(i){var a=this,b=c.fn.easytabs.methods.loadFromData.apply(a),h=b.opts,j=b.tabs;if(h.cycle){i=i%j.size();$tab=c(j[i]).children("a").first();a.data("easytabs").skipUpdateToHash=true;c.fn.easytabs.methods.selectTab.apply($tab,[a,function(){setTimeout(function(){c.fn.easytabs.methods.cycleTabs.apply(a,[i+1])},h.cycle)}])}},initHashChange:function(){var a=this;if(typeof c(window).hashchange=="function"){c(window).hashchange(function(){c.fn.easytabs.methods.selectTabFromHashChange.apply(a)})}else{if(c.address&&typeof c.address.change=="function"){c.address.change(function(){c.fn.easytabs.methods.selectTabFromHashChange.apply(a)})}}},initCycle:function(){var a=this,b=c.fn.easytabs.methods.loadFromData.apply(a),i=b.opts,k=b.tabs,j=b.defaultTab,l;if(i.cycle){l=k.index(j);setTimeout(function(){c.fn.easytabs.methods.cycleTabs.apply(a,[l+1])},i.cycle)}}};c.fn.easytabs.publicMethods={select:function(i){var a=this,b=c.fn.easytabs.methods.loadFromData.apply(a),j=b.tabs,h;if((h=j.filter(i)).size()==0){if((h=j.find("a[href='"+i+"']")).size()==0){if((h=j.find("a"+i)).size()==0){c.error("Tab '"+i+"' does not exist in tab set")}}}else{h=h.children("a").first()}c.fn.easytabs.methods.selectTab.apply(h,[a])}}})(jQuery);(function(z){z.fn.carousel=function(a){var a=z.extend({direction:"horizontal",loop:false,dispItems:1,pagination:false,paginationPosition:"inside",nextBtn:'<input type="button" value="Next" />',prevBtn:'<input type="button" value="Previous" />',btnsPosition:"inside",nextBtnInsert:"insertAfter",prevBtnInsert:"insertBefore",nextBtnInsertFn:false,prevBtnInsertFn:false,autoSlide:false,autoSlideInterval:3000,delayAutoSlide:false,combinedClasses:false,effect:"slide",slideEasing:"swing",animSpeed:300,equalWidths:"true",verticalMargin:0,callback:function(){},useAddress:false,adressIdentifier:"carousel",tabLabel:function(b){return b},showEmptyItems:true,ajaxMode:false,ajaxUrl:"",stopSlideBtn:false,stopSlideTextPause:"Pause",stopSlideTextPlay:"Play"},a);if(a.btnsPosition=="outside"){a.prevBtnInsert="insertBefore";a.nextBtnInsert="insertAfter"}a.delayAutoSlide=0+a.delayAutoSlide;return this.each(function(){var b={$elts:{},params:a,launchOnLoad:[]};b.$elts.carousel=z(this).addClass("js");b.$elts.content=z(this).children().css({position:"absolute",top:0});b.$elts.wrap=b.$elts.content.wrap('<div class="carousel-wrap"></div>').parent().css({overflow:"hidden",position:"relative"});b.steps={first:0,count:b.$elts.content.children().length};b.$elts.loader=z('<div class="loader"></div>').css({position:"absolute"});b.steps.last=b.steps.count-1;if(b.params.pagination){r(b)}if(z.isFunction(b.params.prevBtnInsertFn)){b.$elts.prevBtn=b.params.prevBtnInsertFn(b.$elts)}else{if(a.btnsPosition=="outside"){b.$elts.prevBtn=z(a.prevBtn)[a.prevBtnInsert](b.$elts.carousel)}else{b.$elts.prevBtn=z(a.prevBtn)[a.prevBtnInsert](b.$elts.wrap)}}if(z.isFunction(b.params.nextBtnInsertFn)){b.$elts.nextBtn=b.params.nextBtnInsertFn(b.$elts)}else{if(a.btnsPosition=="outside"){b.$elts.nextBtn=z(a.nextBtn)[a.nextBtnInsert](b.$elts.carousel)}else{b.$elts.nextBtn=z(a.nextBtn)[a.nextBtnInsert](b.$elts.wrap)}}b.$elts.nextBtn.addClass("carousel-control next carousel-next");b.$elts.prevBtn.addClass("carousel-control previous carousel-previous");b.lastItemsToLoad;C(b);b.$elts.carousel.attr("tabindex",0).add(b.$elts.carousel.children()).bind({focus:function(c){z(document).bind("keypress",function(d){switch(d.keyCode){case 39:b.$elts.nextBtn.click();break;case 37:b.$elts.prevBtn.click();break}switch(d.charCode){case 110:b.$elts.nextBtn.click();break;case 112:b.$elts.prevBtn.click();break}})},blur:function(){z(document).unbind("keypress")}});s(b);z(function(){D(b);z.each(b.launchOnLoad,function(d,c){c()});if(b.params.autoSlide){A(b)}if(a.stopSlideBtn==true){b.$elts.stopSlideBtn=z('<button type="button" class="slide-control play">'+a.stopSlideTextPause+"</button>");F(b)}})})};function D(b){var a=b.$elts.content.children();var c=0;a.each(function(){$item=z(this);$itemHeight=$item.outerHeight();if($itemHeight>c){c=$itemHeight}});if(b.params.verticalMargin>0){c=c+b.params.verticalMargin}a.height(c);var d=b.$elts.content.children(":first");b.itemWidth=d.outerWidth();if(b.params.direction=="vertical"){b.contentWidth=b.itemWidth}else{if(b.params.equalWidths){b.contentWidth=b.itemWidth*b.steps.count}else{b.contentWidth=(function(){var e=0;b.$elts.content.children().each(function(){e+=z(this).outerWidth()});return e})()}}b.$elts.content.width(b.contentWidth);b.itemHeight=c;if(b.params.direction=="vertical"){b.$elts.content.css({height:b.itemHeight*b.steps.count+"px"});b.$elts.content.parent().css({height:b.itemHeight*b.params.dispItems+"px"})}else{b.$elts.content.parent().css({height:b.itemHeight+"px"})}x(b)}function C(a){a.$elts.nextBtn.add(a.$elts.prevBtn).bind("enable",function(){var b=z(this).unbind("click").bind("click",function(){if(a.params.ajaxMode&&b.is(".next")&&E(a)==(q(a)-1)&&!a.lastItemsToLoad){y(a);a.$elts.content.ajaxSuccess(function(){})}else{B(a,w(a,(b.is(".next")?"next":"prev")));if(a.params.stopSlideBtn==true){a.$elts.stopSlideBtn.trigger("pause")}else{t(a)}}}).removeClass("disabled").removeAttr("disabled");if(a.params.combinedClasses){b.removeClass("next-disabled previous-disabled").removeAttr("disabled")}}).bind("disable",function(){var b=z(this).unbind("click").addClass("disabled").attr("disabled","disabled");if(a.params.combinedClasses){if(b.is(".next")){b.addClass("next-disabled")}else{if(b.is(".previous")){b.addClass("previous-disabled")}}}}).hover(function(){z(this).toggleClass("hover")})}function r(a){a.$elts.pagination=z('<div class="center-wrap"><div class="carousel-pagination"><p></p></div></div>')[((a.params.paginationPosition=="outside")?"insertAfter":"appendTo")](a.$elts.carousel).find("p");a.$elts.paginationBtns=z([]);a.$elts.content.find("li").each(function(b){if(b%a.params.dispItems==0){v(a,b)}})}function v(a,b){if(a.params.pagination){a.$elts.paginationBtns=a.$elts.paginationBtns.add(z('<a role="button"><span>'+a.params.tabLabel(a.$elts.paginationBtns.length+1)+"</span></a>").data("firstStep",b)).appendTo(a.$elts.pagination);a.$elts.paginationBtns.slice(0,1).addClass("active");a.$elts.paginationBtns.click(function(c){B(a,z(this).data("firstStep"));if(a.params.stopSlideBtn==true){a.$elts.stopSlideBtn.trigger("pause")}else{t(a)}})}}function s(a){if(a.params.useAddress&&z.isFunction(z.fn.address)){z.address.init(function(b){var c=z.address.pathNames();if(c[0]===a.params.adressIdentifier&&!!c[1]){B(a,c[1]-1)}else{z.address.value("/"+a.params.adressIdentifier+"/1")}}).change(function(b){var c=z.address.pathNames();if(c[0]===a.params.adressIdentifier&&!!c[1]){B(a,c[1]-1)}})}else{a.params.useAddress=false}}function B(b,a){b.params.callback(a);u(b,a);b.steps.first=a;x(b);if(b.params.useAddress){z.address.value("/"+b.params.adressIdentifier+"/"+(a+1))}}function w(a,b){if(b=="prev"){if(!a.params.showEmptyItems){if(a.steps.first==0){return((a.params.loop)?(a.steps.count-a.params.dispItems):false)}else{return Math.max(0,a.steps.first-a.params.dispItems)}}else{if((a.steps.first-a.params.dispItems)>=0){return a.steps.first-a.params.dispItems}else{return((a.params.loop)?(a.steps.count-a.params.dispItems):false)}}}else{if(b=="next"){if((a.steps.first+a.params.dispItems)<a.steps.count){if(!a.params.showEmptyItems){return Math.min(a.steps.first+a.params.dispItems,a.steps.count-a.params.dispItems)}else{return a.steps.first+a.params.dispItems}}else{return((a.params.loop)?0:false)}}}}function u(b,a){switch(b.params.effect){case"no":if(b.params.direction=="vertical"){b.$elts.content.css("top",-(b.itemHeight*a)+"px")}else{b.$elts.content.css("left",-(b.itemWidth*a)+"px")}break;case"fade":if(b.params.direction=="vertical"){b.$elts.content.hide().css("top",-(b.itemHeight*a)+"px").fadeIn(b.params.animSpeed)}else{b.$elts.content.hide().css("left",-(b.itemWidth*a)+"px").fadeIn(b.params.animSpeed)}break;default:if(b.params.direction=="vertical"){b.$elts.content.stop().animate({top:-(b.itemHeight*a)+"px"},b.params.animSpeed,b.params.slideEasing)}else{b.$elts.content.stop().animate({left:-(b.itemWidth*a)+"px"},b.params.animSpeed,b.params.slideEasing)}break}}function x(a){if(w(a,"prev")!==false){a.$elts.prevBtn.trigger("enable")}else{a.$elts.prevBtn.trigger("disable")}if(w(a,"next")!==false){a.$elts.nextBtn.trigger("enable")}else{a.$elts.nextBtn.trigger("disable")}if(a.params.pagination){a.$elts.paginationBtns.removeClass("active").filter(function(){return(z(this).data("firstStep")==a.steps.first)}).addClass("active")}}function A(a){a.delayAutoSlide=window.setTimeout(function(){a.autoSlideInterval=window.setInterval(function(){B(a,w(a,"next"))},a.params.autoSlideInterval)},a.params.delayAutoSlide)}function t(a){window.clearTimeout(a.delayAutoSlide);window.clearInterval(a.autoSlideInterval);a.params.delayAutoSlide=0}function F(a){var b=a.$elts.stopSlideBtn;b.bind({play:function(){A(a);b.removeClass("pause").addClass("play").html(a.params.stopSlideTextPause)},pause:function(){t(a);b.removeClass("play").addClass("pause").html(a.params.stopSlideTextPlay)}});b.click(function(c){if(b.is(".play")){b.trigger("pause")}else{if(b.is(".pause")){b.trigger("play")}}});b.prependTo(a.$elts.wrap)}function q(a){return a.$elts.pagination.children().length}function E(a){return a.steps.first/a.params.dispItems}function y(a){a.$elts.carousel.prepend(a.$elts.loader);z.ajax({url:a.params.ajaxUrl,dataType:"json",success:function(b){a.lastItemsToLoad=b.bLastItemsToLoad;z(a.$elts.content).append(b.shtml);a.steps={first:a.steps.first+a.params.dispItems,count:a.$elts.content.children().length};a.steps.last=a.steps.count-1;D(a);v(a,a.steps.first);B(a,a.steps.first);if(a.params.stopSlideBtn==true){a.$elts.stopSlideBtn.trigger("pause")}else{t(a)}a.$elts.loader.remove()}})}})(jQuery);(function(aS,G,ar){function a2(i){return function(){return this[i]}}var a1;function a0(j,i){var n=arguments.length>2?Array.prototype.slice.call(arguments,2):[];return function(){n.push.apply(n,arguments);return i.apply(j,n)}}function aZ(j,i){this.D=j;this.c=i}aZ.prototype.createElement=function(j,i,o){j=this.D.createElement(j);if(i){for(var n in i){if(i.hasOwnProperty(n)){if(n=="style"&&this.c.getName()=="MSIE"){j.style.cssText=i[n]}else{j.setAttribute(n,i[n])}}}}o&&j.appendChild(this.D.createTextNode(o));return j};function aY(j,i,n){j=j.D.getElementsByTagName(i)[0];if(!j){j=G.documentElement}if(j&&j.lastChild){j.insertBefore(n,j.lastChild);return true}return false}function ax(j,i){function n(){G.body?i():setTimeout(n,0)}n()}function aW(j,i){if(i.parentNode){i.parentNode.removeChild(i);return true}return false}function aV(j,i){return j.createElement("link",{rel:"stylesheet",href:i})}function aT(j,i){return j.createElement("script",{src:i})}function aR(j,i,p){j=i.className.split(/\s+/);for(var o=0,n=j.length;o<n;o++){if(j[o]==p){return}}j.push(p);i.className=j.join(" ").replace(/^\s+/,"")}function aP(j,i,q){j=i.className.split(/\s+/);for(var p=[],o=0,n=j.length;o<n;o++){j[o]!=q&&p.push(j[o])}i.className=p.join(" ").replace(/^\s+/,"").replace(/\s+$/,"")}function aO(j,i,o){j=i.className.split(/\s+/);i=0;for(var n=j.length;i<n;i++){if(j[i]==o){return true}}return false}function aM(j,i,s,r,q,p,o,n){this.ta=j;this.Ba=i;this.ea=s;this.da=r;this.ya=q;this.xa=p;this.ca=o;this.Ca=n}a1=aM.prototype;a1.getName=a2("ta");a1.oa=a2("Ba");a1.ka=a2("ea");a1.la=a2("da");a1.ma=a2("ya");a1.na=a2("xa");a1.ja=a2("ca");a1.t=a2("Ca");function aK(j,i){this.c=j;this.k=i}var a3=new aM("Unknown","Unknown","Unknown","Unknown","Unknown","Unknown",ar,false);aK.prototype.parse=function(){return this.c.indexOf("MSIE")!=-1?aG(this):this.c.indexOf("Opera")!=-1?ay(this):this.c.indexOf("AppleWebKit")!=-1?a(this):this.c.indexOf("Gecko")!=-1?aH(this):a3};function aJ(j){var i=aw(j,j.c,/(iPod|iPad|iPhone|Android)/,1);if(i!=""){return i}j=aw(j,j.c,/(Linux|Mac_PowerPC|Macintosh|Windows)/,1);if(j!=""){if(j=="Mac_PowerPC"){j="Macintosh"}return j}return"Unknown"}function av(j){var i=aw(j,j.c,/(OS X|Windows NT|Android) ([^;)]+)/,2);if(i){return i}if(i=aw(j,j.c,/(iPhone )?OS ([\d_]+)/,2)){return i}if(j=aw(j,j.c,/Linux ([i\d]+)/,1)){return j}return"Unknown"}function aG(j){var i=aw(j,j.c,/(MSIE [\d\w\.]+)/,1);if(i!=""){var n=i.split(" ");i=n[0];n=n[1];return new aM(i,n,i,n,aJ(j),av(j),au(j,j.k),at(j,n)>=6)}return new aM("MSIE","Unknown","MSIE","Unknown",aJ(j),av(j),au(j,j.k),false)}function ay(j){var i="Unknown",o="Unknown",n=aw(j,j.c,/(Presto\/[\d\w\.]+)/,1);if(n!=""){o=n.split("/");i=o[0];o=o[1]}else{if(j.c.indexOf("Gecko")!=-1){i="Gecko"}n=aw(j,j.c,/rv:([^\)]+)/,1);if(n!=""){o=n}}if(j.c.indexOf("Version/")!=-1){n=aw(j,j.c,/Version\/([\d\.]+)/,1);if(n!=""){return new aM("Opera",n,i,o,aJ(j),av(j),au(j,j.k),at(j,n)>=10)}}n=aw(j,j.c,/Opera[\/ ]([\d\.]+)/,1);if(n!=""){return new aM("Opera",n,i,o,aJ(j),av(j),au(j,j.k),at(j,n)>=10)}return new aM("Opera","Unknown",i,o,aJ(j),av(j),au(j,j.k),false)}function a(j){var i=aJ(j),r=av(j),q=aw(j,j.c,/AppleWebKit\/([\d\.\+]+)/,1);if(q==""){q="Unknown"}var p="Unknown";if(j.c.indexOf("Chrome")!=-1){p="Chrome"}else{if(j.c.indexOf("Safari")!=-1){p="Safari"}else{if(j.c.indexOf("AdobeAIR")!=-1){p="AdobeAIR"}}}var o="Unknown";if(j.c.indexOf("Version/")!=-1){o=aw(j,j.c,/Version\/([\d\.\w]+)/,1)}else{if(p=="Chrome"){o=aw(j,j.c,/Chrome\/([\d\.]+)/,1)}else{if(p=="AdobeAIR"){o=aw(j,j.c,/AdobeAIR\/([\d\.]+)/,1)}}}var n=false;if(p=="AdobeAIR"){n=aw(j,o,/\d+\.(\d+)/,1);n=at(j,o)>2||at(j,o)==2&&parseInt(n,10)>=5}else{n=aw(j,q,/\d+\.(\d+)/,1);n=at(j,q)>=526||at(j,q)>=525&&parseInt(n,10)>=13}return new aM(p,o,"AppleWebKit",q,i,r,au(j,j.k),n)}function aH(j){var i="Unknown",r="Unknown",q=false;if(j.c.indexOf("Firefox")!=-1){i="Firefox";var p=aw(j,j.c,/Firefox\/([\d\w\.]+)/,1);if(p!=""){q=aw(j,p,/\d+\.(\d+)/,1);r=p;q=p!=""&&at(j,p)>=3&&parseInt(q,10)>=5}}else{if(j.c.indexOf("Mozilla")!=-1){i="Mozilla"}}p=aw(j,j.c,/rv:([^\)]+)/,1);if(p==""){p="Unknown"}else{if(!q){q=at(j,p);var o=parseInt(aw(j,p,/\d+\.(\d+)/,1),10),n=parseInt(aw(j,p,/\d+\.\d+\.(\d+)/,1),10);q=q>1||q==1&&o>9||q==1&&o==9&&n>=2||p.match(/1\.9\.1b[123]/)!=null||p.match(/1\.9\.1\.[\d\.]+/)!=null}}return new aM(i,r,"Gecko",p,aJ(j),av(j),au(j,j.k),q)}function at(j,i){j=aw(j,i,/(\d+)/,1);if(j!=""){return parseInt(j,10)}return -1}function aw(j,i,o,n){if((j=i.match(o))&&j[n]){return j[n]}return""}function au(j,i){if(i.documentMode){return i.documentMode}}function az(j,i,o,n){this.a=j;this.g=i;this.L=o;this.j=n||b;this.h=new aq("-")}var b="wf";function ap(i){aR(i.a,i.g,i.h.f(i.j,"loading"));ao(i,"loading")}function an(i){aP(i.a,i.g,i.h.f(i.j,"loading"));aO(i.a,i.g,i.h.f(i.j,"active"))||aR(i.a,i.g,i.h.f(i.j,"inactive"));ao(i,"inactive")}function aI(i){aP(i.a,i.g,i.h.f(i.j,"loading"));aP(i.a,i.g,i.h.f(i.j,"inactive"));aR(i.a,i.g,i.h.f(i.j,"active"));ao(i,"active")}function ao(j,i,o,n){j.L[i]&&j.L[i](o,n)}function aA(){this.V={}}function e(j,i){var p=[];for(var o in i){if(i.hasOwnProperty(o)){var n=j.V[o];n&&p.push(n(i[o]))}}return p}function am(j,i,p,o,n){this.a=j;this.v=i;this.w=p;this.q=o;this.F=n;this.N=0;this.$=this.U=false}am.prototype.watch=function(v,u,t,s){for(var r=v.length,q=0;q<r;q++){var p=v[q];u[p]||(u[p]=["n4"]);this.N+=u[p].length}if(s){this.U=s}for(q=0;q<r;q++){p=v[q];s=u[p];for(var o=t[p],i=0,n=s.length;i<n;i++){var j=s[i],x=this.v,y=p;aR(x.a,x.g,x.h.f(x.j,y,j,"loading"));ao(x,"fontloading",y,j);x=a0(this,this.ga);y=a0(this,this.ha);new al(x,y,this.a,this.w,this.q,this.F,p,j,o)}}};am.prototype.ga=function(j,i){var n=this.v;aP(n.a,n.g,n.h.f(n.j,j,i,"loading"));aP(n.a,n.g,n.h.f(n.j,j,i,"inactive"));aR(n.a,n.g,n.h.f(n.j,j,i,"active"));ao(n,"fontactive",j,i);this.$=true;ak(this)};am.prototype.ha=function(j,i){var n=this.v;aP(n.a,n.g,n.h.f(n.j,j,i,"loading"));aO(n.a,n.g,n.h.f(n.j,j,i,"active"))||aR(n.a,n.g,n.h.f(n.j,j,i,"inactive"));ao(n,"fontinactive",j,i);ak(this)};function ak(i){if(--i.N==0&&i.U){i.$?aI(i.v):an(i.v)}}function al(t,s,r,q,p,o,n,j,i){this.ba=t;this.pa=s;this.a=r;this.w=q;this.q=p;this.F=o;this.sa=new aj;this.s=new ai;this.Q=n;this.P=j;this.ia=i||ah;this.va=ag(this,af);this.wa=ag(this,ad);this.Y=ac(this,af);this.Z=ac(this,ad);this.Aa=o();this.M()}var af="arial,'URW Gothic L',sans-serif",ad="Georgia,'Century Schoolbook L',serif",ah="BESs";al.prototype.M=function(){var j=this.w.G(this.Y),i=this.w.G(this.Z);if(this.va!=j||this.wa!=i){aL(this,this.ba)}else{this.F()-this.Aa<5000?aB(this):aL(this,this.pa)}};function aB(i){i.q(function(j,n){return function(){n.call(j)}}(i,i.M),50)}function aL(j,i){aW(j.a,j.Y);aW(j.a,j.Z);i(j.Q,j.P)}function ag(j,i){i=ac(j,i,true);var n=j.w.G(i);aW(j.a,i);return n}function ac(j,i,o){var n=j.s.expand(j.P);i=j.a.createElement("span",{style:"position:absolute;top:-999px;left:-999px;font-size:300px;width:auto;height:auto;line-height:normal;margin:0;padding:0;font-variant:normal;font-family:"+(o?"":j.sa.quote(j.Q)+",")+i+";"+n},j.ia);aY(j.a,"body",i);return i}function w(j,i,p,o,n){this.a=j;this.R=i;this.g=p;this.q=o;this.c=n;this.H=this.I=0}w.prototype.o=function(j,i){this.R.V[j]=i};w.prototype.load=function(j){var i=new az(this.a,this.g,j);this.c.t()?h(this,i,j):an(i)};w.prototype.qa=function(j,i,o,n){if(n){j.load(a0(this,this.ua,i,o))}else{j=--this.I==0;this.H--;if(j){this.H==0?an(i):ap(i)}o.watch([],{},{},j)}};w.prototype.ua=function(j,i,q,p,o){var n=--this.I==0;n&&ap(j);this.q(a0(this,function(v,u,r,t,s){v.watch(u,r||{},t||{},s)},i,q,p,o,n))};function h(j,i,r){r=e(j.R,r);j.H=j.I=r.length;for(var q=new am(j.a,i,{G:function(s){return s.offsetWidth}},j.q,function(){return(new Date).getTime()}),p=0,o=r.length;p<o;p++){var n=r[p];n.u(j.c,a0(j,j.qa,n,i,q))}}function aq(i){this.ra=i||aN}var aN="-";aq.prototype.f=function(){for(var j=[],i=0;i<arguments.length;i++){j.push(arguments[i].replace(/[\W_]+/g,"").toLowerCase())}return j.join(this.ra)};function aj(){this.X="'"}aj.prototype.quote=function(j){var i=[];j=j.split(/,\s*/);for(var o=0;o<j.length;o++){var n=j[o].replace(/['"]/g,"");n.indexOf(" ")==-1?i.push(n):i.push(this.X+n+this.X)}return i.join(",")};function ai(){this.B=aC;this.n=m}var aC=["font-style","font-weight"],m={"font-style":[["n","normal"],["i","italic"],["o","oblique"]],"font-weight":[["1","100"],["2","200"],["3","300"],["4","400"],["5","500"],["6","600"],["7","700"],["8","800"],["9","900"],["4","normal"],["7","bold"]]};function l(j,i,n){this.S=j;this.za=i;this.n=n}l.prototype.compact=function(j,i){for(var n=0;n<this.n.length;n++){if(i==this.n[n][1]){j[this.S]=this.n[n][0];return}}};l.prototype.expand=function(j,i){for(var n=0;n<this.n.length;n++){if(i==this.n[n][0]){j[this.S]=this.za+":"+this.n[n][1];return}}};ai.prototype.compact=function(j){var i=["n","4"];j=j.split(";");for(var r=0,q=j.length;r<q;r++){var p=j[r].replace(/\s+/g,"").split(":");if(p.length==2){var o=p[1];j:{p=p[0];for(var n=0;n<this.B.length;n++){if(p==this.B[n]){p=new l(n,p,this.n[p]);break j}}p=null}p&&p.compact(i,o)}}return i.join("")};ai.prototype.expand=function(j){if(j.length!=2){return null}for(var i=[null,null],q=0,p=this.B.length;q<p;q++){var o=this.B[q],n=j.substr(q,1);(new l(q,o,this.n[o])).expand(i,n)}return i[0]&&i[1]?i.join(";")+";":null};aS.WebFont=function(){var i=(new aK(navigator.userAgent,G)).parse();return new w(new aZ(G,i),new aA,G.documentElement,function(j,n){setTimeout(j,n)},i)}();aS.WebFont.load=aS.WebFont.load;aS.WebFont.addModule=aS.WebFont.o;aM.prototype.getName=aM.prototype.getName;aM.prototype.getVersion=aM.prototype.oa;aM.prototype.getEngine=aM.prototype.ka;aM.prototype.getEngineVersion=aM.prototype.la;aM.prototype.getPlatform=aM.prototype.ma;aM.prototype.getPlatformVersion=aM.prototype.na;aM.prototype.getDocumentMode=aM.prototype.ja;aM.prototype.isSupportingWebFont=aM.prototype.t;function k(j,i){this.a=j;this.d=i}var aQ={regular:"n4",bold:"n7",italic:"i4",bolditalic:"i7",r:"n4",b:"n7",i:"i4",bi:"i7"};k.prototype.u=function(j,i){return i(j.t())};k.prototype.load=function(j){aY(this.a,"head",aV(this.a,("https:"==G.location.protocol?"https:":"http:")+"//webfonts.fontslive.com/css/"+this.d.key+".css"));var i;i=this.d.families;var s,r,q;s=[];r={};for(var p=0,o=i.length;p<o;p++){q=void 0;var n=void 0;n=void 0;n=i[p].split(":");q=n[0];n=n[1]?aD(this,n[1]):["n4"];q={O:q,K:n};s.push(q.O);r[q.O]=q.K}i={fa:s,K:r};j(i.fa,i.K)};function aD(j,i){j=i.split(",");i=[];for(var q=0,p=j.length;q<p;q++){var o=j[q];if(o){var n=aQ[o];i.push(n?n:o)}}return i}aS.WebFont.o("ascender",function(j){var i=(new aK(navigator.userAgent,G)).parse();return new k(new aZ(G,i),j)});function ab(i){this.C=i?i:("https:"==aS.location.protocol?"https:":"http:")+aU;this.e=[];this.J=[]}var aU="//fonts.googleapis.com/css";ab.prototype.f=function(){if(this.e.length==0){throw new Error("No fonts to load !")}if(this.C.indexOf("kit=")!=-1){return this.C}for(var j=this.e.length,i=[],n=0;n<j;n++){i.push(this.e[n].replace(/ /g,"+"))}j=this.C+"?family="+i.join("%7C");if(this.J.length>0){j+="&subset="+this.J.join(",")}return j};function aE(i){this.e=i;this.W=[];this.aa={};this.A={};this.s=new ai}var ae={ultralight:"n2",light:"n3",regular:"n4",bold:"n7",italic:"i4",bolditalic:"i7",ul:"n2",l:"n3",r:"n4",b:"n7",i:"i4",bi:"i7"},aX={latin:ah,cyrillic:"&#1081;&#1103;&#1046;",greek:"&#945;&#946;&#931;",khmer:"&#x1780;&#x1781;&#x1782;",Hanuman:"&#x1780;&#x1781;&#x1782;"};aE.prototype.parse=function(){for(var v=this.e.length,u=0;u<v;u++){var t=this.e[u].split(":"),s=t[0],r=["n4"];if(t.length>=2){var q=t[1],p=[];if(q){q=q.split(",");for(var o=q.length,i=0;i<o;i++){var n;n=q[i];if(n.match(/^[\w ]+$/)){var j=ae[n];if(j){n=j}else{j=n.match(/^(\d*)(\w*)$/);n=j[1];j=j[2];n=(n=this.s.expand([j?j:"n",n?n.substr(0,1):"4"].join("")))?this.s.compact(n):null}}else{n=""}n&&p.push(n)}}if(p.length>0){r=p}if(t.length==3){t=t[2];p=[];t=t?t.split(","):p;if(t.length>0){if(t=aX[t[0]]){this.A[s]=t}}}}if(!this.A[s]){if(t=aX[s]){this.A[s]=t}}this.W.push(s);this.aa[s]=r}};function g(j,i,n){this.c=j;this.a=i;this.d=n}g.prototype.u=function(j,i){i(j.t())};g.prototype.load=function(j){var i=this.a;this.c.getName()=="MSIE"&&this.d.blocking!=true?ax(i,a0(this,this.T,j)):this.T(j)};g.prototype.T=function(j){for(var i=this.a,r=new ab(this.d.api),q=this.d.families,p=q.length,o=0;o<p;o++){var n=q[o].split(":");n.length==3&&r.J.push(n.pop());r.e.push(n.join(":"))}q=new aE(q);q.parse();aY(i,"head",aV(i,r.f()));j(q.W,q.aa,q.A)};aS.WebFont.o("google",function(j){var i=(new aK(navigator.userAgent,G)).parse();return new g(i,new aZ(G,i),j)});function f(j,i){this.a=j;this.d=i}f.prototype.load=function(j){for(var i=this.d.urls||[],p=this.d.families||[],o=0,n=i.length;o<n;o++){aY(this.a,"head",aV(this.a,i[o]))}j(p)};f.prototype.u=function(j,i){return i(j.t())};aS.WebFont.o("custom",function(j){var i=(new aK(navigator.userAgent,G)).parse();return new f(new aZ(G,i),j)});function d(j,i,n){this.m=j;this.a=i;this.d=n;this.e=[];this.p={};this.s=new ai}d.prototype.z=function(i){return(this.d.api||"http://fontdeck.com/api/v1/project-info?")+"project="+i+"&domain="+G.location.hostname+"&callback=window.__webfontfontdeckmodule__["+i+"]"};d.prototype.u=function(j,i){j=this.d.id;var o=this.d.families||null,n=this;if(j){this.m.__webfontfontdeckmodule__||(this.m.__webfontfontdeckmodule__={});this.m.__webfontfontdeckmodule__[j]=function(s){aY(n.a,"head",aV(n.a,s.css));for(var r=0,q=s.provides.length;r<q;++r){var p=s.provides[r];n.e.push(p.name);n.p[p.name]=[n.s.compact("font-weight:"+p.weight+";font-style:"+p.style)]}if(o!==null){n.e=o}i(true)};aY(this.a,"head",aT(this.a,this.z(j)))}else{i(true)}};d.prototype.load=function(i){i(this.e,this.p)};aS.WebFont.o("fontdeck",function(j){var i=(new aK(navigator.userAgent,G)).parse();return new d(aS,new aZ(G,i),j)});function c(j,i,p,o,n){this.m=j;this.c=i;this.a=p;this.k=o;this.d=n;this.e=[];this.p={}}c.prototype.u=function(j,i){var p=this,o=p.d.projectId;if(o){var n=aT(p.a,p.z(o));n.id="__MonotypeAPIScript__"+o;n.onreadystatechange=function(q){if(n.readyState==="loaded"||n.readyState==="complete"){n.onreadystatechange=null;n.onload(q)}};n.onload=function(){if(p.m["__mti_fntLst"+o]){var r=p.m["__mti_fntLst"+o]();if(r&&r.length){var q;for(q=0;q<r.length;q++){p.e.push(r[q].fontfamily)}}}i(j.t())};aY(this.a,"head",n)}else{i(true)}};c.prototype.z=function(j){var i=this.protocol(),n=(this.d.api||"fast.fonts.com/jsapi").replace(/^.*http(s?):(\/\/)?/,"");return i+"//"+n+"/"+j+".js"};c.prototype.load=function(i){i(this.e,this.p)};c.prototype.protocol=function(){var j=["http:","https:"],i=j[0];if(this.k&&this.k.location&&this.k.location.protocol){var n=0;for(n=0;n<j.length;n++){if(this.k.location.protocol===j[n]){return this.k.location.protocol}}}return i};aS.WebFont.o("monotype",function(j){var i=(new aK(navigator.userAgent,G)).parse();return new c(aS,i,new aZ(G,i),G,j)});function aF(j,i,n){this.m=j;this.a=i;this.d=n;this.e=[];this.p={}}aF.prototype.z=function(j){var i="https:"==aS.location.protocol?"https:":"http:";return(this.d.api||i+"//use.typekit.com")+"/"+j+".js"};aF.prototype.u=function(j,i){var p=this.d.id,o=this.d,n=this;if(p){this.m.__webfonttypekitmodule__||(this.m.__webfonttypekitmodule__={});this.m.__webfonttypekitmodule__[p]=function(q){q(j,o,function(t,s,r){n.e=s;n.p=r;i(t)})};aY(this.a,"head",aT(this.a,this.z(p)))}else{i(true)}};aF.prototype.load=function(i){i(this.e,this.p)};aS.WebFont.o("typekit",function(j){var i=(new aK(navigator.userAgent,G)).parse();return new aF(aS,new aZ(G,i),j)});aS.WebFontConfig&&aS.WebFont.load(aS.WebFontConfig)})(this,document);(function(j){function a(){var d=j("script:first"),f=d.css("color"),h=false;if(/^rgba/.test(f)){h=true}else{try{h=f!=d.css("color","rgba(0, 0, 0, 0.5)").css("color");d.css("color",f)}catch(g){}}return h}function c(d,f,h){var g="rgb"+(j.support.rgba?"a":"")+"("+parseInt(d[0]+h*(f[0]-d[0]),10)+","+parseInt(d[1]+h*(f[1]-d[1]),10)+","+parseInt(d[2]+h*(f[2]-d[2]),10);if(j.support.rgba){g+=","+(d&&f?parseFloat(d[3]+h*(f[3]-d[3])):1)}g+=")";return g}function e(d){var f,g;if(f=/#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/.exec(d)){g=[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16),1]}else{if(f=/#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])/.exec(d)){g=[parseInt(f[1],16)*17,parseInt(f[2],16)*17,parseInt(f[3],16)*17,1]}else{if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(d)){g=[parseInt(f[1]),parseInt(f[2]),parseInt(f[3]),1]}else{if(f=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9\.]*)\s*\)/.exec(d)){g=[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10),parseFloat(f[4])]}}}}return g}j.extend(true,j,{support:{rgba:a()}});var b=["color","backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","outlineColor"];j.each(b,function(d,f){j.fx.step[f]=function(g){if(!g.init){g.a=e(j(g.elem).css(f));g.end=e(g.end);g.init=true}g.elem.style[f]=c(g.a,g.end,g.pos)}});j.fx.step.borderColor=function(d){if(!d.init){d.end=e(d.end)}var f=b.slice(2,6);j.each(f,function(h,g){d.init||(d[g]={a:e(j(d.elem).css(g))});d.elem.style[g]=c(d[g].a,d.end,d.pos)});d.init=true}})(jQuery);jQuery(function(b){function a(e,i){var g,j,h={};if(g=/#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/.exec(e)){j=[parseInt(g[1],16),parseInt(g[2],16),parseInt(g[3],16),1]}else{if(g=/#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])/.exec(e)){j=[parseInt(g[1],16)*17,parseInt(g[2],16)*17,parseInt(g[3],16)*17,1]}else{if(g=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(e)){j=[parseInt(g[1]),parseInt(g[2]),parseInt(g[3]),1]}else{if(g=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9\.]*)\s*\)/.exec(e)){j=[parseInt(g[1]),parseInt(g[2]),parseInt(g[3]),parseFloat(g[4])]}}}}if(g=/(-*[0-9.]+(?:px|em|pt)?)\s+(-*[0-9.]+(?:px|em|pt)?)\s+(-*[0-9.]+(?:px|em|pt)?)/.exec(e.replace(g[0],""))){g=g.slice(1).map(function(d){var c=d.match(/em|pt/);if(c=="em"){return parseFloat(d)*parseInt(i)}if(c=="pt"){return parseInt(d)/72*96}return parseInt(d)}),h={right:g[0],bottom:g[1],blur:g[2]}}h.color=j;return h}b.extend(!0,b,{support:{rgba:function(){var d=b("script:first"),g=d.css("color"),f=!1;if(/^rgba/.test(g)){f=!0}else{try{f=g!=d.css("color","rgba(0, 0, 0, 0.5)").css("color"),d.css("color",g)}catch(h){}}return f}()}});b.fx.step.textShadow=function(d){if(!d.init){var k=b(d.elem).get(0).style.fontSize||b(d.elem).css("fontSize"),h=b(d.elem).get(0).style.textShadow||b(d.elem).css("textShadow");if(h=="none"){h=d.end}d.begin=a(h,k);d.end=b.extend({},d.begin,a(d.end,k));d.init=!0}var k=d.elem.style,h=d.begin,l=d.end,d=d.pos,j=[];typeof l.right!="undefined"&&j.push(parseInt(h.right+d*(l.right-h.right))+"px "+parseInt(h.bottom+d*(l.bottom-h.bottom))+"px");typeof l.blur!="undefined"&&j.push(parseInt(h.blur+d*(l.blur-h.blur))+"px");if(typeof l.color!="undefined"){var i="rgb"+(b.support.rgba?"a":"")+"("+parseInt(h.color[0]+d*(l.color[0]-h.color[0]))+","+parseInt(h.color[1]+d*(l.color[1]-h.color[1]))+","+parseInt(h.color[2]+d*(l.color[2]-h.color[2]));b.support.rgba&&(i+=","+parseFloat(h.color[3]+d*(l.color[3]-h.color[3])));i+=")";j.push(i)}h=j.join(" ");k.textShadow=h}});var swfobject=function(){var aq="undefined",aD="object",ab="Shockwave Flash",X="ShockwaveFlash.ShockwaveFlash",aE="application/x-shockwave-flash",ac="SWFObjectExprInst",ax="onreadystatechange",af=window,aL=document,aB=navigator,aa=false,Z=[aN],aG=[],ag=[],al=[],aJ,ad,ap,at,ak=false,aU=false,aH,an,aI=true,ah=function(){var a=typeof aL.getElementById!=aq&&typeof aL.getElementsByTagName!=aq&&typeof aL.createElement!=aq,e=aB.userAgent.toLowerCase(),c=aB.platform.toLowerCase(),h=c?/win/.test(c):/win/.test(e),j=c?/mac/.test(c):/mac/.test(e),g=/webkit/.test(e)?parseFloat(e.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,d=!+"\v1",f=[0,0,0],k=null;if(typeof aB.plugins!=aq&&typeof aB.plugins[ab]==aD){k=aB.plugins[ab].description;if(k&&!(typeof aB.mimeTypes!=aq&&aB.mimeTypes[aE]&&!aB.mimeTypes[aE].enabledPlugin)){aa=true;d=false;k=k.replace(/^.*\s+(\S+\s+\S+$)/,"$1");f[0]=parseInt(k.replace(/^(.*)\..*$/,"$1"),10);f[1]=parseInt(k.replace(/^.*\.(.*)\s.*$/,"$1"),10);f[2]=/[a-zA-Z]/.test(k)?parseInt(k.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof af.ActiveXObject!=aq){try{var i=new ActiveXObject(X);if(i){k=i.GetVariable("$version");if(k){d=true;k=k.split(" ")[1].split(",");f=[parseInt(k[0],10),parseInt(k[1],10),parseInt(k[2],10)]}}}catch(b){}}}return{w3:a,pv:f,wk:g,ie:d,win:h,mac:j}}(),aK=function(){if(!ah.w3){return}if((typeof aL.readyState!=aq&&aL.readyState=="complete")||(typeof aL.readyState==aq&&(aL.getElementsByTagName("body")[0]||aL.body))){aP()}if(!ak){if(typeof aL.addEventListener!=aq){aL.addEventListener("DOMContentLoaded",aP,false)}if(ah.ie&&ah.win){aL.attachEvent(ax,function(){if(aL.readyState=="complete"){aL.detachEvent(ax,arguments.callee);aP()}});if(af==top){(function(){if(ak){return}try{aL.documentElement.doScroll("left")}catch(a){setTimeout(arguments.callee,0);return}aP()})()}}if(ah.wk){(function(){if(ak){return}if(!/loaded|complete/.test(aL.readyState)){setTimeout(arguments.callee,0);return}aP()})()}aC(aP)}}();function aP(){if(ak){return}try{var b=aL.getElementsByTagName("body")[0].appendChild(ar("span"));b.parentNode.removeChild(b)}catch(a){return}ak=true;var d=Z.length;for(var c=0;c<d;c++){Z[c]()}}function aj(a){if(ak){a()}else{Z[Z.length]=a}}function aC(a){if(typeof af.addEventListener!=aq){af.addEventListener("load",a,false)}else{if(typeof aL.addEventListener!=aq){aL.addEventListener("load",a,false)}else{if(typeof af.attachEvent!=aq){aM(af,"onload",a)}else{if(typeof af.onload=="function"){var b=af.onload;af.onload=function(){b();a()}}else{af.onload=a}}}}}function aN(){if(aa){Y()}else{am()}}function Y(){var d=aL.getElementsByTagName("body")[0];var b=ar(aD);b.setAttribute("type",aE);var a=d.appendChild(b);if(a){var c=0;(function(){if(typeof a.GetVariable!=aq){var e=a.GetVariable("$version");if(e){e=e.split(" ")[1].split(",");ah.pv=[parseInt(e[0],10),parseInt(e[1],10),parseInt(e[2],10)]}}else{if(c<10){c++;setTimeout(arguments.callee,10);return}}d.removeChild(b);a=null;am()})()}else{am()}}function am(){var g=aG.length;if(g>0){for(var h=0;h<g;h++){var c=aG[h].id;var l=aG[h].callbackFn;var a={success:false,id:c};if(ah.pv[0]>0){var i=aS(c);if(i){if(ao(aG[h].swfVersion)&&!(ah.wk&&ah.wk<312)){ay(c,true);if(l){a.success=true;a.ref=av(c);l(a)}}else{if(aG[h].expressInstall&&au()){var e={};e.data=aG[h].expressInstall;e.width=i.getAttribute("width")||"0";e.height=i.getAttribute("height")||"0";if(i.getAttribute("class")){e.styleclass=i.getAttribute("class")}if(i.getAttribute("align")){e.align=i.getAttribute("align")}var f={};var d=i.getElementsByTagName("param");var k=d.length;for(var j=0;j<k;j++){if(d[j].getAttribute("name").toLowerCase()!="movie"){f[d[j].getAttribute("name")]=d[j].getAttribute("value")}}ae(e,f,c,l)}else{aF(i);if(l){l(a)}}}}}else{ay(c,true);if(l){var b=av(c);if(b&&typeof b.SetVariable!=aq){a.success=true;a.ref=b}l(a)}}}}}function av(b){var d=null;var c=aS(b);if(c&&c.nodeName=="OBJECT"){if(typeof c.SetVariable!=aq){d=c}else{var a=c.getElementsByTagName(aD)[0];if(a){d=a}}}return d}function au(){return !aU&&ao("6.0.65")&&(ah.win||ah.mac)&&!(ah.wk&&ah.wk<312)}function ae(f,d,h,e){aU=true;ap=e||null;at={success:false,id:h};var a=aS(h);if(a){if(a.nodeName=="OBJECT"){aJ=aO(a);ad=null}else{aJ=a;ad=h}f.id=ac;if(typeof f.width==aq||(!/%$/.test(f.width)&&parseInt(f.width,10)<310)){f.width="310"}if(typeof f.height==aq||(!/%$/.test(f.height)&&parseInt(f.height,10)<137)){f.height="137"}aL.title=aL.title.slice(0,47)+" - Flash Player Installation";var b=ah.ie&&ah.win?"ActiveX":"PlugIn",c="MMredirectURL="+af.location.toString().replace(/&/g,"%26")+"&MMplayerType="+b+"&MMdoctitle="+aL.title;if(typeof d.flashvars!=aq){d.flashvars+="&"+c}else{d.flashvars=c}if(ah.ie&&ah.win&&a.readyState!=4){var g=ar("div");h+="SWFObjectNew";g.setAttribute("id",h);a.parentNode.insertBefore(g,a);a.style.display="none";(function(){if(a.readyState==4){a.parentNode.removeChild(a)}else{setTimeout(arguments.callee,10)}})()}aA(f,d,h)}}function aF(a){if(ah.ie&&ah.win&&a.readyState!=4){var b=ar("div");a.parentNode.insertBefore(b,a);b.parentNode.replaceChild(aO(a),b);a.style.display="none";(function(){if(a.readyState==4){a.parentNode.removeChild(a)}else{setTimeout(arguments.callee,10)}})()}else{a.parentNode.replaceChild(aO(a),a)}}function aO(b){var d=ar("div");if(ah.win&&ah.ie){d.innerHTML=b.innerHTML}else{var e=b.getElementsByTagName(aD)[0];if(e){var a=e.childNodes;if(a){var f=a.length;for(var c=0;c<f;c++){if(!(a[c].nodeType==1&&a[c].nodeName=="PARAM")&&!(a[c].nodeType==8)){d.appendChild(a[c].cloneNode(true))}}}}}return d}function aA(e,g,c){var d,a=aS(c);if(ah.wk&&ah.wk<312){return d}if(a){if(typeof e.id==aq){e.id=c}if(ah.ie&&ah.win){var f="";for(var i in e){if(e[i]!=Object.prototype[i]){if(i.toLowerCase()=="data"){g.movie=e[i]}else{if(i.toLowerCase()=="styleclass"){f+=' class="'+e[i]+'"'}else{if(i.toLowerCase()!="classid"){f+=" "+i+'="'+e[i]+'"'}}}}}var h="";for(var j in g){if(g[j]!=Object.prototype[j]){h+='<param name="'+j+'" value="'+g[j]+'" />'}}a.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+f+">"+h+"</object>";ag[ag.length]=e.id;d=aS(e.id)}else{var b=ar(aD);b.setAttribute("type",aE);for(var k in e){if(e[k]!=Object.prototype[k]){if(k.toLowerCase()=="styleclass"){b.setAttribute("class",e[k])}else{if(k.toLowerCase()!="classid"){b.setAttribute(k,e[k])}}}}for(var l in g){if(g[l]!=Object.prototype[l]&&l.toLowerCase()!="movie"){aQ(b,l,g[l])}}a.parentNode.replaceChild(b,a);d=b}}return d}function aQ(b,d,c){var a=ar("param");a.setAttribute("name",d);a.setAttribute("value",c);b.appendChild(a)}function aw(a){var b=aS(a);if(b&&b.nodeName=="OBJECT"){if(ah.ie&&ah.win){b.style.display="none";(function(){if(b.readyState==4){aT(a)}else{setTimeout(arguments.callee,10)}})()}else{b.parentNode.removeChild(b)}}}function aT(a){var b=aS(a);if(b){for(var c in b){if(typeof b[c]=="function"){b[c]=null}}b.parentNode.removeChild(b)}}function aS(a){var c=null;try{c=aL.getElementById(a)}catch(b){}return c}function ar(a){return aL.createElement(a)}function aM(a,c,b){a.attachEvent(c,b);al[al.length]=[a,c,b]}function ao(a){var b=ah.pv,c=a.split(".");c[0]=parseInt(c[0],10);c[1]=parseInt(c[1],10)||0;c[2]=parseInt(c[2],10)||0;return(b[0]>c[0]||(b[0]==c[0]&&b[1]>c[1])||(b[0]==c[0]&&b[1]==c[1]&&b[2]>=c[2]))?true:false}function az(b,f,a,c){if(ah.ie&&ah.mac){return}var e=aL.getElementsByTagName("head")[0];if(!e){return}var g=(a&&typeof a=="string")?a:"screen";if(c){aH=null;an=null}if(!aH||an!=g){var d=ar("style");d.setAttribute("type","text/css");d.setAttribute("media",g);aH=e.appendChild(d);if(ah.ie&&ah.win&&typeof aL.styleSheets!=aq&&aL.styleSheets.length>0){aH=aL.styleSheets[aL.styleSheets.length-1]}an=g}if(ah.ie&&ah.win){if(aH&&typeof aH.addRule==aD){aH.addRule(b,f)}}else{if(aH&&typeof aL.createTextNode!=aq){aH.appendChild(aL.createTextNode(b+" {"+f+"}"))}}}function ay(a,c){if(!aI){return}var b=c?"visible":"hidden";if(ak&&aS(a)){aS(a).style.visibility=b}else{az("#"+a,"visibility:"+b)}}function ai(b){var a=/[\\\"<>\.;]/;var c=a.exec(b)!=null;return c&&typeof encodeURIComponent!=aq?encodeURIComponent(b):b}var aR=function(){if(ah.ie&&ah.win){window.attachEvent("onunload",function(){var a=al.length;for(var b=0;b<a;b++){al[b][0].detachEvent(al[b][1],al[b][2])}var d=ag.length;for(var c=0;c<d;c++){aw(ag[c])}for(var e in ah){ah[e]=null}ah=null;for(var f in swfobject){swfobject[f]=null}swfobject=null})}}();return{registerObject:function(a,e,c,b){if(ah.w3&&a&&e){var d={};d.id=a;d.swfVersion=e;d.expressInstall=c;d.callbackFn=b;aG[aG.length]=d;ay(a,false)}else{if(b){b({success:false,id:a})}}},getObjectById:function(a){if(ah.w3){return av(a)}},embedSWF:function(k,e,h,f,c,a,b,i,g,j){var d={success:false,id:e};if(ah.w3&&!(ah.wk&&ah.wk<312)&&k&&e&&h&&f&&c){ay(e,false);aj(function(){h+="";f+="";var q={};if(g&&typeof g===aD){for(var o in g){q[o]=g[o]}}q.data=k;q.width=h;q.height=f;var n={};if(i&&typeof i===aD){for(var p in i){n[p]=i[p]}}if(b&&typeof b===aD){for(var l in b){if(typeof n.flashvars!=aq){n.flashvars+="&"+l+"="+b[l]}else{n.flashvars=l+"="+b[l]}}}if(ao(c)){var m=aA(q,n,e);if(q.id==e){ay(e,true)}d.success=true;d.ref=m}else{if(a&&au()){q.data=a;ae(q,n,e,j);return}else{ay(e,true)}}if(j){j(d)}})}else{if(j){j(d)}}},switchOffAutoHideShow:function(){aI=false},ua:ah,getFlashPlayerVersion:function(){return{major:ah.pv[0],minor:ah.pv[1],release:ah.pv[2]}},hasFlashPlayerVersion:ao,createSWF:function(a,b,c){if(ah.w3){return aA(a,b,c)}else{return undefined}},showExpressInstall:function(b,a,d,c){if(ah.w3&&au()){ae(b,a,d,c)}},removeSWF:function(a){if(ah.w3){aw(a)}},createCSS:function(b,a,c,d){if(ah.w3){az(b,a,c,d)}},addDomLoadEvent:aj,addLoadEvent:aC,getQueryParamValue:function(b){var a=aL.location.search||aL.location.hash;if(a){if(/\?/.test(a)){a=a.split("?")[1]}if(b==null){return ai(a)}var c=a.split("&");for(var d=0;d<c.length;d++){if(c[d].substring(0,c[d].indexOf("="))==b){return ai(c[d].substring((c[d].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(aU){var a=aS(ac);if(a&&aJ){a.parentNode.replaceChild(aJ,a);if(ad){ay(ad,true);if(ah.ie&&ah.win){aJ.style.display="block"}}if(ap){ap(at)}}aU=false}}}}();
