//** Smooth Navigational Menu- By Dynamic Drive DHTML code library: http://www.dynamicdrive.com
//** Script Download/ instructions page: http://www.dynamicdrive.com/dynamicindex1/ddlevelsmenu/
//** Menu created: Nov 12, 2008

//** Dec 12th, 08" (v1.01): Fixed Shadow issue when multiple LIs within the same UL (level) contain sub menus: http://www.dynamicdrive.com/forums/showthread.php?t=39177&highlight=smooth

//** Feb 11th, 09" (v1.02): The currently active main menu item (LI A) now gets a CSS class of ".selected", including sub menu items.

//** May 1st, 09" (v1.3):
//** 1) Now supports vertical (side bar) menu mode- set "orientation" to 'v'
//** 2) In IE6, shadows are now always disabled

//** July 27th, 09" (v1.31): Fixed bug so shadows can be disabled if desired.
//** Feb 2nd, 10" (v1.4): Adds ability to specify delay before sub menus appear and disappear, respectively. See showhidedelay variable below
var ddsmoothmenu={

//Specify full URL to down and right arrow images (23 is padding-right added to top level LIs with drop downs):
arrowimages: {down:['', '', 20], right:['', '']},
transition: {overtime:300, outtime:300}, //duration of slide in/ out animation, in milliseconds
shadow: {enable:true, offsetx:5, offsety:5}, //enable shadow?
showhidedelay: {showdelay: 100, hidedelay: 200}, //set delay in milliseconds before sub menus appear and disappear, respectively

///////Stop configuring beyond here///////////////////////////

detectwebkit: navigator.userAgent.toLowerCase().indexOf("applewebkit")!=-1, //detect WebKit browsers (Safari, Chrome etc)
detectie6: document.all && !window.XMLHttpRequest,

getajaxmenu:function($, setting){ //function to fetch external page containing the panel DIVs
        
alert('testa');
	var $menucontainer=$('#'+setting.contentsource[0]) //reference empty div on page that will hold menu
	$menucontainer.html("Loading Menu...")
	$.ajax({
		url: setting.contentsource[1], //path to external menu file
		async: true,
		error:function(ajaxrequest){
			$menucontainer.html('Error fetching content. Server Response: '+ajaxrequest.responseText)
		},
		success:function(content){
			$menucontainer.html(content)
			ddsmoothmenu.buildmenu($, setting)
		}
	})
},


buildmenu:function($, setting){
	var smoothmenu=ddsmoothmenu
	var $mainmenu=$("#"+setting.mainmenuid+">ul") //reference main menu UL
	$mainmenu.parent().get(0).className=setting.classname || "ddsmoothmenu"
	var $headers=$mainmenu.find("ul").parent()
	$headers.hover(
		function(e){
			$(this).children('a:eq(0)').addClass('selected')
		},
		function(e){
			$(this).children('a:eq(0)').removeClass('selected')
		}
	)
	$headers.each(function(i){ //loop through each LI header
		var $curobj=$(this).css({zIndex: 100-i}) //reference current LI header
		var $subul=$(this).find('ul:eq(0)').css({display:'block'})
		$subul.data('timers', {})
		this._dimensions={w:this.offsetWidth, h:this.offsetHeight, subulw:$subul.outerWidth(), subulh:$subul.outerHeight()}
		this.istopheader=$curobj.parents("ul").length==1? true : false //is top level header?
		$subul.css({top:this.istopheader && setting.orientation!='v'? this._dimensions.h+"px" : 0})
		$curobj.children("a:eq(0)").css(this.istopheader? {paddingRight: smoothmenu.arrowimages.down[2]} : {}).append( //add arrow images
			''
		)
		if (smoothmenu.shadow.enable){
			this._shadowoffset={x:(this.istopheader?$subul.offset().left+smoothmenu.shadow.offsetx : this._dimensions.w), y:(this.istopheader? $subul.offset().top+smoothmenu.shadow.offsety : $curobj.position().top)} //store this shadow's offsets
			if (this.istopheader)
				$parentshadow=$(document.body)
			else{
				var $parentLi=$curobj.parents("li:eq(0)")
				$parentshadow=$parentLi.get(0).$shadow
			}
			this.$shadow=$('<div class="ddshadow'+(this.istopheader? ' toplevelshadow' : '')+'"></div>').prependTo($parentshadow).css({left:this._shadowoffset.x+'px', top:this._shadowoffset.y+'px'})  //insert shadow DIV and set it to parent node for the next shadow div
		}
		$curobj.hover(
			function(e){
				var $targetul=$subul //reference UL to reveal
				var header=$curobj.get(0) //reference header LI as DOM object
				clearTimeout($targetul.data('timers').hidetimer)
				$targetul.data('timers').showtimer=setTimeout(function(){
					header._offsets={left:$curobj.offset().left, top:$curobj.offset().top}
					var menuleft=header.istopheader && setting.orientation!='v'? 0 : header._dimensions.w
					menuleft=(header._offsets.left+menuleft+header._dimensions.subulw>$(window).width())? (header.istopheader && setting.orientation!='v'? -header._dimensions.subulw+header._dimensions.w : -header._dimensions.w) : menuleft //calculate this sub menu's offsets from its parent
					if ($targetul.queue().length<=1){ //if 1 or less queued animations
						$targetul.css({left:menuleft+"px", width:header._dimensions.subulw+'px'}).animate({height:'show',opacity:'show'}, ddsmoothmenu.transition.overtime)
						if (smoothmenu.shadow.enable){
							var shadowleft=header.istopheader? $targetul.offset().left+ddsmoothmenu.shadow.offsetx : menuleft
							var shadowtop=header.istopheader?$targetul.offset().top+smoothmenu.shadow.offsety : header._shadowoffset.y
							if (!header.istopheader && ddsmoothmenu.detectwebkit){ //in WebKit browsers, restore shadow's opacity to full
								header.$shadow.css({opacity:1})
							}
							header.$shadow.css({overflow:'', width:header._dimensions.subulw+'px', left:shadowleft+'px', top:shadowtop+'px'}).animate({height:header._dimensions.subulh+'px'}, ddsmoothmenu.transition.overtime)
						}
					}
				}, ddsmoothmenu.showhidedelay.showdelay)
			},
			function(e){
				var $targetul=$subul
				var header=$curobj.get(0)
				clearTimeout($targetul.data('timers').showtimer)
				$targetul.data('timers').hidetimer=setTimeout(function(){
					$targetul.animate({height:'hide', opacity:'hide'}, ddsmoothmenu.transition.outtime)
					if (smoothmenu.shadow.enable){
						if (ddsmoothmenu.detectwebkit){ //in WebKit browsers, set first child shadow's opacity to 0, as "overflow:hidden" doesn't work in them
							header.$shadow.children('div:eq(0)').css({opacity:0})
						}
						header.$shadow.css({overflow:'hidden'}).animate({height:0}, ddsmoothmenu.transition.outtime)
					}
				}, ddsmoothmenu.showhidedelay.hidedelay)
			}
		) //end hover
	}) //end $headers.each()
	$mainmenu.find("ul").css({display:'none', visibility:'visible'})
},

init:function(setting){
	if (typeof setting.customtheme=="object" && setting.customtheme.length==2){ //override default menu colors (default/hover) with custom set?
		var mainmenuid='#'+setting.mainmenuid
		var mainselector=(setting.orientation=="v")? mainmenuid : mainmenuid+', '+mainmenuid
		document.write('<style type="text/css">\n'
			+mainselector+' ul li a {background:'+setting.customtheme[0]+';}\n'
			+mainmenuid+' ul li a:hover {background:'+setting.customtheme[1]+';}\n'
		+'</style>')
	}
	this.shadow.enable=(document.all && !window.XMLHttpRequest)? false : this.shadow.enable //in IE6, always disable shadow
	jQuery(document).ready(function($){ //ajax menu?
		if (typeof setting.contentsource=="object"){ //if external ajax menu
			ddsmoothmenu.getajaxmenu($, setting)
		}
		else{ //else if markup menu
			ddsmoothmenu.buildmenu($, setting)
		}
	})
}

} //end ddsmoothmenu variable;
// JavaScript Document
ddsmoothmenu.init({
	mainmenuid: "smoothmenu1", //menu DIV id
	orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
	classname: 'ddsmoothmenu', //class added to menu's outer DIV
	//customtheme: ["#1c5a80", "#18374a"],
	contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
});
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var a=Y.bbox.split(/\s+/);return{minX:parseInt(a[0],10),minY:parseInt(a[1],10),width:parseInt(a[2],10)-parseInt(a[0],10),height:parseInt(a[3],10)-parseInt(a[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(n,T,f,P,W,o,d){var G=(T===null);if(G){T=W.alt}var V=n.viewBox;var H=f.computedFontSize||(f.computedFontSize=new Cufon.CSS.Size(B(o,f.get("fontSize"))+"px",n.baseSize));var c=f.computedLSpacing;if(c==undefined){c=f.get("letterSpacing");f.computedLSpacing=c=(c=="normal")?0:H.convertFrom(A(o,c))}var O,I;if(G){O=W;I=W.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=T;I=document.createElement("cvml:group");O.appendChild(I);if(P.printable){var j=document.createElement("span");j.className="cufon-alt";j.innerText=T;O.appendChild(j)}if(!d){O.appendChild(document.createElement("cvml:group"))}}var u=O.style;var Y=I.style;var F=H.convert(V.height);Y.height=Math.ceil(F);Y.top=Math.round(H.convert(V.minY-n.ascent));Y.left=Math.round(H.convert(V.minX));var b=parseInt(Y.height,10)/F;u.height=H.convert(-n.ascent+n.descent)+"px";var K=P.enableTextDecoration?Cufon.CSS.textDecoration(o,f):{};var S=f.get("color");var s=Cufon.CSS.textTransform(T,f).split("");var E=0,a=0,L=null;var U=P.textShadow;for(var m=0,h=-1,g=s.length;m<g;++m){var Q=n.glyphs[s[m]]||n.missingGlyph,M;if(!Q){continue}if(!Q.typeRef){D(Q,V)}if(G){M=I.childNodes[++h]}else{M=document.createElement("cvml:shape");I.appendChild(M)}M.type=Q.typeRef;var q=M.style;q.width=V.width;q.height=V.height;q.top=0;q.left=a;q.zIndex=1;M.fillcolor=S;if(U){for(var Z=0,e=U.length;Z<e;++Z){var X=U[Z];var t=Cufon.CSS.color(X.color);var J=M.cloneNode(false),R=J.runtimeStyle;R.top=H.convertFrom(parseFloat(X.offY));R.left=a+H.convertFrom(parseFloat(X.offX));R.zIndex=0;J.fillcolor=t.color;if(t.opacity){var r=document.createElement("cvml:fill");r.opacity=t.opacity;J.appendChild(r)}I.appendChild(J)}++h}L=Number(Q.w||n.w)+c;E+=L;a+=L}if(L===null){return null}var N=-V.minX+E+(V.width-L);I.coordsize=N+","+V.height;Y.width=H.convert(N*b);u.width=Math.max(Math.ceil(H.convert(E*b)),0);return O}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (C)2000 Tepid Monkey Fonts-www.fontframe.com/tepidmonkey
 */
Cufon.registerFont({"w":802,"face":{"font-family":"Accidental Presidency","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"1638","descent":"-410","x-height":"20","bbox":"-281 -1720 1417 410","underline-thickness":"40","underline-position":"-252","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":393},"!":{"d":"283,-406r-213,0r0,-925r213,2r0,923xm285,0r-213,0r-2,-223r213,0","w":354,"k":{"j":139}},"\"":{"d":"575,-774r-192,0r-2,-557r192,2xm268,-774r-192,0r-2,-557r192,2","w":651,"k":{"j":141,"J":457,"4":164,"\/":248,".":377,",":444}},"#":{"d":"1417,-1014r-2,193r-317,0r-94,303r286,0r-2,192r-346,0r-100,326r-193,0r101,-326r-320,2r-100,324r-193,0r101,-324r-218,0r0,-192r277,0r94,-303r-244,0r0,-193r306,0r98,-319r192,2r-98,317r320,-2r98,-317r192,2r-98,315r260,0xm905,-821r-321,2r-95,303r320,-2","w":1449,"k":{"j":158,"]":174,"Z":141,"T":152,"J":162,"7":166,"\/":225,".":481,",":524,")":139}},"$":{"d":"455,-1313v144,13,270,151,268,305r0,88r-205,0v0,-104,-21,-169,-63,-194r0,356v135,20,267,149,266,299r0,127v2,155,-124,289,-264,305r0,131r-113,0r0,-129v-158,-3,-294,-145,-291,-307r0,-88r205,0v-1,112,27,180,86,205r0,-363v-145,-13,-292,-147,-289,-303r0,-127v-3,-160,133,-302,287,-307r0,-158r113,3r0,157xm342,-774r0,-354v-55,12,-82,69,-82,172v0,98,27,159,82,182xm516,-383v0,-82,-20,-139,-59,-170r0,334v39,-21,59,-75,59,-164","w":772},"%":{"d":"297,-1335v112,0,209,100,209,213r0,245v2,140,-105,213,-244,213v-113,0,-211,-99,-211,-213r0,-245v-2,-137,105,-213,246,-213xm283,-809v102,0,71,-181,71,-283v0,-69,-26,-104,-78,-104v-103,0,-71,180,-71,283v0,69,26,104,78,104xm1022,-1329r-709,1329r-172,0r711,-1331xm928,-674v111,0,211,102,211,213r0,248v3,139,-109,213,-246,213v-111,0,-209,-102,-209,-213r0,-248v-1,-134,104,-213,244,-213xm913,-145v103,3,72,-179,72,-283v0,-69,-26,-104,-78,-104v-103,0,-71,179,-71,282v0,69,26,104,77,105","w":1181},"&":{"d":"514,-887v3,-152,-15,-233,-133,-233v-83,0,-125,57,-125,172v0,154,28,195,176,194r430,-2r-2,162r-145,0v1,202,2,304,2,305v5,165,-142,307,-307,307v-211,0,-357,-124,-361,-307r0,-168v1,-89,76,-180,137,-217v-63,-23,-136,-132,-135,-215r0,-106v-5,-165,142,-308,307,-308v211,0,357,125,361,308r0,108r-205,0xm379,-164v185,7,118,-254,131,-428v-244,9,-249,6,-256,252v-3,115,24,172,125,176","w":901},"'":{"d":"268,-774r-192,0r-2,-557r192,2","w":344,"k":{"j":141,"J":385,"4":164,"\/":319,".":358,",":324}},"(":{"d":"389,315v-162,5,-340,-151,-340,-315r0,-1049v-6,-165,165,-312,328,-307r2,182v-83,-3,-125,55,-125,173r0,946v0,116,44,173,133,172","w":423,"k":{"J":139}},")":{"d":"78,-1356v163,-5,328,142,328,307r0,1049v7,165,-176,321,-340,315r2,-198v89,1,133,-56,133,-172r0,-946v0,-117,-42,-175,-125,-173","w":466},"*":{"d":"739,-1169r-194,163r190,160r-121,146r-125,-105r0,146r-188,0r0,-144r-117,98r-121,-143r187,-158r-191,-159r123,-144r119,101r0,-174r188,0r0,176r129,-107","w":794},"+":{"d":"840,-436r-310,0r0,299r-188,0r0,-299r-307,0r0,-189r307,0r0,-317r188,0r0,317r310,0r0,189","w":882},",":{"d":"369,-225r-164,532r-152,0r82,-534","w":436,"k":{"\u201d":418,"\u201c":418,"\u2019":418,"\u2018":416,"y":184,"w":143,"v":147,"\\":406,"Y":199,"W":158,"V":158,"T":180,"?":217,"4":455,"1":231,"'":336,"\"":457}},"-":{"d":"373,-436r-314,0r0,-189r314,0r0,189","w":434},".":{"d":"301,0r-213,0r0,-227r213,2r0,225","w":385,"k":{"\u201d":334,"\u201c":334,"\u2019":332,"\u2018":332,"y":188,"w":154,"v":160,"j":152,"]":365,"\\":328,"Y":342,"W":168,"V":168,"T":193,"?":350,"4":385,"1":242,"'":352,"\"":373}},"\/":{"d":"666,-1329r-459,1468r-193,0r459,-1470","w":696,"k":{"s":152,"q":168,"o":145,"j":137,"g":164,"e":143,"d":170,"c":141,"a":180,"J":244,"A":180,"@":158,";":180,"4":223,"\/":350,".":319,",":365,"#":174}},"0":{"d":"369,-1294v209,0,360,125,360,307r0,700v5,164,-144,307,-307,307v-210,0,-361,-124,-361,-307r0,-700v-5,-165,143,-307,308,-307xm524,-940v1,-111,-19,-172,-112,-172v-97,0,-146,57,-146,172r0,598v0,115,44,172,133,172v83,0,125,-57,125,-172r0,-598","w":798,"k":{"j":147,",":72}},"1":{"d":"514,0r-213,0r0,-1034r-209,207r0,-250r207,-193r213,-2","w":589,"k":{"j":137}},"2":{"d":"418,-1294v151,-7,289,160,289,309v0,69,-22,140,-66,211r-377,604r418,0r2,170r-645,0r-2,-170r2,0r420,-670v34,-53,51,-102,51,-145v0,-63,-51,-127,-115,-127v-91,0,-137,72,-137,215r4,121r-205,0r0,-211v-5,-165,143,-312,308,-307r53,0","w":741},"3":{"d":"586,-674v62,38,135,127,135,217r0,168v5,165,-142,307,-307,307v-210,0,-357,-125,-361,-307r0,-108r205,0v-2,149,17,233,133,233v102,0,130,-61,127,-176v-7,-218,2,-223,-215,-231r-2,-203v184,-2,213,-7,213,-174v0,-115,-42,-172,-125,-172v-115,0,-135,86,-133,233r-205,0r0,-108v-5,-164,144,-308,307,-308v211,0,357,125,361,308r0,106v1,80,-69,197,-133,215","w":790,"k":{"j":147}},"4":{"d":"776,-498r-2,172r-88,-2r0,328r-194,0r2,-328r-451,0r-2,-170r463,-776r225,0r-457,776r222,0r0,-219r192,2r0,217r90,0","w":815},"5":{"d":"381,-795v173,-4,330,126,330,299r0,209v5,165,-143,307,-308,307v-210,0,-356,-124,-360,-307r0,-110r205,0v-3,128,5,227,125,227v64,0,105,-31,123,-94v8,-29,12,-87,12,-174v0,-121,-42,-183,-127,-183r-330,0r0,-647r649,0r0,174r-462,0r0,299r143,0","w":749},"6":{"d":"365,-1294v231,0,379,136,360,372r-205,0v3,-127,-42,-190,-133,-190v-99,0,-126,61,-125,172r2,154v25,-25,64,-37,117,-37v188,-2,340,117,340,307r0,229v5,165,-142,307,-307,307v-210,0,-362,-125,-361,-307r4,-700v-2,-163,144,-307,308,-307xm516,-342r0,-127v0,-115,-44,-172,-133,-172v-86,0,-126,42,-119,127r-4,0v-4,53,-1,116,-2,172v0,115,44,172,133,172v83,0,125,-57,125,-172","w":788,"k":{"j":147}},"7":{"d":"676,-1100r-412,1100r-231,0r416,-1079r-398,0r-2,-191r625,0","w":714,"k":{"J":211,"A":147,"\/":293,".":305,",":350}},"8":{"d":"369,-1311v210,0,354,126,360,307v5,161,-9,251,-127,320v66,32,122,118,123,209r0,188v5,165,-142,307,-307,307v-210,0,-361,-124,-361,-307r0,-188v0,-79,71,-184,127,-213v-82,-56,-123,-161,-123,-316v0,-165,143,-307,308,-307xm410,-782v71,0,114,-95,114,-174v0,-115,-44,-172,-133,-172v-101,0,-125,63,-125,176v0,130,37,170,144,170xm373,-592v-57,0,-111,103,-111,164r0,86v0,115,44,172,133,172v83,0,125,-57,125,-172r0,-86v0,-109,-49,-164,-147,-164","w":798,"k":{"j":150}},"9":{"d":"369,-1307v211,0,361,125,360,308r-4,700v2,164,-141,307,-307,307v-232,0,-381,-136,-361,-373r205,0v-1,127,43,191,133,191v99,0,125,-59,125,-172r0,-154v-26,25,-66,37,-119,37v-191,3,-340,-121,-340,-307r0,-229v-5,-165,143,-308,308,-308xm524,-954v0,-108,-44,-162,-133,-162v-83,0,-125,57,-125,172r0,127v0,115,44,172,133,172v74,0,114,-42,119,-127v4,-69,6,-130,6,-182","w":798,"k":{"j":147}},":":{"d":"285,-758r-213,0r0,-227r213,2r0,225xm285,0r-213,0r0,-227r213,2r0,225","w":354,"k":{"j":158,"]":371,"T":197,"4":143}},";":{"d":"352,-758r-213,0r0,-227r213,2r0,225xm352,-225r-164,532r-151,0r82,-534","w":385,"k":{"T":172}},"<":{"d":"719,-57r-656,-318r3,-219r653,-309r0,213r-451,207r451,213r0,213","w":788},"=":{"d":"844,-621r-805,0r0,-188r805,0r0,188xm844,-231r-805,0r0,-189r805,0r0,189","w":876},">":{"d":"696,-375r-655,318r0,-213r451,-213r-451,-207r0,-213r653,309","w":739},"?":{"d":"344,-1341v210,0,361,124,361,307r0,350v8,131,-174,281,-304,274r-110,0r0,-204v161,0,199,-16,207,-166v1,-37,2,-106,2,-207v1,-114,-25,-172,-125,-172v-117,0,-134,86,-133,233r-205,0r0,-108v-5,-165,142,-307,307,-307xm489,0r-213,0r0,-223r213,0r0,223","w":759,"k":{"j":150,"\/":195,".":225,",":242}},"@":{"d":"608,-1143v309,0,570,259,570,568v0,201,-132,421,-324,421v-91,0,-156,-49,-156,-135v-119,83,-317,-25,-317,-157v0,-150,158,-257,317,-203v4,-72,-18,-119,-73,-119v-38,0,-63,25,-74,74r-148,0v-1,-136,98,-215,240,-215v110,0,186,96,186,204r0,420v-2,13,29,49,41,47v117,8,209,-207,209,-337v0,-256,-215,-472,-471,-472v-253,0,-469,219,-469,472v0,262,219,477,479,471r0,96v-313,8,-577,-255,-577,-567v0,-306,262,-568,567,-568xm618,-393v40,0,80,-32,80,-72v0,-40,-40,-76,-80,-76v-40,0,-92,43,-92,82v0,37,51,66,92,66","w":1212,"k":{"]":236,"T":170,".":143,",":188}},"A":{"d":"725,0r-213,0r-49,-303r-156,0r-51,303r-213,0r236,-1331r219,2xm430,-516r-43,-324r-43,324r86,0","w":776,"k":{"\u201d":92,"\u2019":90,"y":125,"w":115,"v":121,"j":143,"]":186,"\\":145,"Y":178,"W":168,"V":168,"T":168,"?":141,"1":160}},"B":{"d":"614,-651v56,24,113,119,113,196r0,168v2,166,-102,287,-268,287r-402,0r0,-1333v240,-1,361,-2,363,-2v165,-5,307,142,307,307r0,168v1,71,-59,190,-113,209xm356,-739v135,1,165,-40,166,-176r0,-66v17,-184,-88,-175,-258,-174r0,414xm397,-170v130,6,125,-116,125,-252v0,-101,-24,-151,-71,-151r-187,0r0,401v85,1,129,2,133,2","w":784},"C":{"d":"512,-838r4,-123v0,-142,-46,-213,-137,-213v-83,0,-125,58,-125,173r0,659v0,115,44,172,133,172v83,0,125,-57,125,-172r0,-178r205,0r0,233v5,165,-142,307,-307,307v-211,0,-361,-124,-361,-307r0,-762v-5,-165,142,-307,307,-307v211,0,361,124,361,307r0,211r-205,0","w":759},"D":{"d":"420,-1335v165,-5,307,142,307,307r0,741v1,166,-100,287,-268,287r-402,0r0,-1333v239,-1,360,-2,363,-2xm397,-170v100,-2,125,-60,125,-172r0,-639v18,-184,-90,-175,-258,-174r0,983v86,1,130,2,133,2","w":786,"k":{",":57}},"E":{"d":"666,-190r-2,190r-621,0r-2,-1329r623,-2r-2,190r-404,0r-2,361r408,-2r-2,190r-408,0r2,399","w":702,"k":{"j":143}},"F":{"d":"662,-782r-3,190r-407,0r0,592r-211,0r-2,-1329r623,-2r-3,190r-403,0r-2,361","w":681,"k":{"z":229,"j":137,"J":379,"\/":176,".":375,",":391,"#":238}},"G":{"d":"389,-170v110,0,129,-76,125,-201r-141,0r0,-192r348,-2r-2,278v2,164,-141,307,-307,307v-211,0,-361,-124,-361,-307r0,-762v-5,-165,142,-307,307,-307v211,0,361,124,361,307r0,211r-205,0r2,-123v0,-142,-45,-213,-135,-213v-83,0,-125,58,-125,173r0,659v0,115,44,172,133,172","w":761},"H":{"d":"692,0r-217,0r0,-573r-196,0r2,573r-218,0r3,-1329r213,0r0,567r196,-2r2,-565r213,0","w":768,"k":{"j":139}},"I":{"d":"287,0r-213,0r-2,-1331r213,2","w":362,"k":{"j":139}},"J":{"d":"422,20v-210,0,-361,-124,-361,-307r0,-233r205,0r0,178v0,115,42,172,125,172v89,0,133,-57,133,-172r0,-977r205,0r0,1032v5,165,-142,307,-307,307","k":{"j":139}},"K":{"d":"739,0r-233,0r-262,-389r0,389r-213,0r0,-1329r213,0r0,385r260,-385r233,0r-467,661","w":772,"k":{"y":205,"w":180,"v":184,"o":88,"j":141,"J":141,"@":209,"4":209,"1":188}},"L":{"d":"653,-190r-2,190r-620,0r2,-1329r209,0r2,1136","w":655,"k":{"\u201d":313,"\u201c":313,"\u2019":313,"\u2018":311,"y":166,"v":137,"j":143,"]":238,"\\":252,"Y":182,"W":145,"V":147,"T":174,"?":211,"4":348,"1":217,"'":346,"\"":346}},"M":{"d":"1067,0r-213,0r0,-678r-184,678r-213,0r-168,-692r0,692r-213,0r0,-1329r227,0r272,944r259,-944r233,0r0,1329","w":1144,"k":{"j":137}},"N":{"d":"696,0r-217,0r-217,-725r2,725r-196,0r-7,-1329r213,0r226,749r2,-749r192,0","w":772,"k":{"j":139}},"O":{"d":"369,-1356v209,0,360,125,360,307r0,762v5,164,-144,307,-307,307v-210,0,-361,-124,-361,-307r0,-762v-5,-165,143,-307,308,-307xm524,-1001v1,-112,-19,-173,-112,-173v-97,0,-146,58,-146,173r0,659v0,115,44,172,133,172v83,0,125,-57,125,-172r0,-659","w":786,"k":{",":61}},"P":{"d":"410,-1356v165,-5,307,142,307,307r0,353v1,166,-101,286,-268,286r-189,0r0,410r-213,0r0,-1354v239,-1,360,-2,363,-2xm387,-580v100,-2,125,-60,125,-172r0,-249v1,-141,-27,-173,-160,-175r-94,0r2,594v82,1,124,2,127,2","w":774,"k":{"j":152,"a":45,"A":100,"\/":195,".":459,",":475}},"Q":{"d":"346,-1356v210,0,361,124,361,307r0,762v0,23,-2,46,-7,68r115,110r-149,152r-86,-82v-53,39,-131,59,-234,59v-165,0,-307,-142,-307,-307r0,-762v-5,-165,142,-307,307,-307xm502,-416r0,-598v0,-107,-38,-160,-113,-160v-97,0,-145,58,-145,173r0,659v-6,141,80,196,194,162r-139,-137r152,-150","w":856},"R":{"d":"592,-575v65,29,142,115,143,202r0,373r-207,0v1,-216,2,-325,2,-326v2,-154,-100,-178,-268,-172r2,498r-213,0r0,-1333r363,-2v165,-5,307,142,307,307r0,229v0,87,-64,201,-129,224xm391,-682v146,7,125,-156,125,-299v0,-140,-28,-172,-162,-174r-92,0r0,471v82,1,125,2,129,2","k":{"j":143}},"S":{"d":"360,-1356v211,0,357,124,361,307r0,88r-205,0v2,-131,-23,-213,-133,-213v-101,0,-124,64,-125,177v-2,151,17,254,133,254v163,0,328,140,328,305r0,168v5,165,-142,307,-307,307v-211,0,-357,-124,-361,-307r0,-88r205,0v-1,142,43,213,133,213v102,0,125,-63,125,-185v0,-150,-43,-225,-130,-225v-166,0,-331,-139,-331,-305r0,-189v-5,-165,142,-307,307,-307","w":763},"T":{"d":"672,-1161r-209,0r2,1161r-213,0r-2,-1161r-203,0r-2,-170r625,0","w":708,"k":{"z":188,"y":172,"x":168,"w":164,"v":168,"u":164,"t":170,"s":166,"r":121,"q":170,"p":160,"o":158,"n":156,"m":152,"g":178,"e":156,"d":186,"c":154,"a":166,"J":213,"A":160,"@":166,";":215,":":195,"4":188,"\/":195,".":188,",":205,"#":164}},"U":{"d":"422,20v-209,0,-361,-125,-361,-307r-2,-1056r207,0r0,1001v0,115,44,172,133,172v83,0,125,-57,125,-172r0,-1001r203,0r2,1056v5,165,-142,307,-307,307","k":{"j":139,",":76}},"V":{"d":"721,-1329r-236,1331r-219,-2r-227,-1329r213,0r125,901r131,-901r213,0","w":755,"k":{"o":66,"e":63,"a":100,"J":141,"A":164,";":123,":":59,"\/":190,".":172,",":215}},"W":{"d":"1194,-1329r-236,1331r-219,-2r-125,-729r-129,731r-219,-2r-227,-1329r213,0r125,901r131,-901r217,0r125,901r131,-901r213,0","w":1226,"k":{"o":66,"e":63,"a":100,"J":141,"A":164,";":123,":":59,"\/":190,".":172,",":215}},"X":{"d":"715,-1329r-230,676r226,655r-219,-2r-113,-334r-113,334r-221,2r225,-655r-227,-676r213,0r123,360r123,-360r213,0","w":747},"Y":{"d":"483,-397v-13,102,0,279,0,397r-213,0r-2,-393r-225,-936r213,0r125,594r131,-594r213,0","w":745,"k":{"u":49,"o":98,"e":96,"a":133,"J":190,"A":162,";":143,":":80,"4":170,"\/":201,".":209,",":225,"#":139}},"Z":{"d":"668,0r-625,0r-2,-170r418,-991r-416,0r-2,-170r625,0r2,170r-416,991r414,0","w":714,"k":{"j":137,"4":238}},"[":{"d":"489,305r-448,2r-2,-1638r450,2r-2,192r-254,2r0,1250r254,2","w":522},"\\":{"d":"647,139r-192,0r-457,-1468r190,-2","w":628,"k":{"\u201d":182,"\u201c":182,"\u2019":180,"\u2018":178,"w":145,"v":150,"\\":283,"Y":174,"W":156,"V":158,"T":168,"?":205,"1":209,"'":213,"\"":213}},"]":{"d":"510,-1331r-2,1638r-449,-2r2,-188r254,-2r2,-1250r-256,-2r-2,-192","w":595},"^":{"d":"881,-674r-213,0r-207,-450r-213,450r-213,0r317,-655r219,2","w":925},"_":{"d":"1071,164r-1030,0r0,-168r1030,0r0,168","w":1159},"`":{"d":"238,-1448r-172,0r-347,-270r254,-2","w":221},"a":{"d":"387,-967v211,0,361,125,361,308r0,659r-205,0r0,-70v-3,60,-61,90,-176,90v-152,0,-325,-130,-322,-276v3,-109,75,-216,141,-268v79,-62,260,-69,357,-25v8,-131,-25,-233,-133,-227v-85,5,-100,42,-127,117r-203,0v-5,-164,144,-308,307,-308xm399,-156v70,0,144,-59,144,-129v0,-70,-74,-133,-144,-133v-67,0,-159,73,-159,142v0,68,89,120,159,120","w":808,"k":{"]":240}},"b":{"d":"418,-967v165,-4,307,143,307,308r0,372v4,188,-153,307,-340,307v-44,0,-121,-48,-135,-79r0,59r-197,0r-2,-1327r213,-2r-2,420v30,-38,82,-56,156,-58xm266,-291v-2,66,63,121,129,121v83,0,125,-57,125,-172r0,-270v0,-115,-44,-172,-133,-172v-81,0,-121,39,-121,116r0,377","w":774,"k":{"j":150,"]":242}},"c":{"d":"383,-170v118,0,128,-73,125,-227r205,0r0,110v5,164,-143,307,-307,307v-211,0,-361,-124,-361,-307r0,-372v-5,-165,142,-308,307,-308v211,0,357,125,361,308r0,108r-205,0v1,-149,-15,-233,-133,-233v-83,0,-125,57,-125,172r0,270v0,115,44,172,133,172","w":745,"k":{"]":227}},"d":{"d":"61,-659v-5,-165,143,-308,308,-308v78,0,112,4,155,58r-2,-420r213,-2r-2,1331r-196,0r0,-59v-27,53,-83,79,-168,79v-165,0,-308,-142,-308,-307r0,-372xm391,-170v66,0,129,-55,129,-121r2,-377v0,-78,-41,-116,-123,-116v-89,0,-133,57,-133,172r0,270v0,115,42,172,125,172"},"e":{"d":"252,-377v-6,149,38,212,184,209v37,0,62,-40,76,-119r203,0v5,165,-142,307,-307,307v-211,0,-361,-124,-361,-307r0,-372v-5,-165,142,-308,307,-308v211,0,361,125,361,308r0,282r-463,0xm510,-547r0,-65v0,-115,-44,-172,-133,-172v-83,0,-125,57,-125,172r0,63","w":768,"k":{"]":240}},"f":{"d":"506,-756r-150,0r0,756r-200,0r-2,-754r-103,0r2,-182r101,0v-6,-162,4,-246,112,-334v73,-60,153,-90,240,-90r-2,201v-120,2,-149,83,-148,223r150,0r0,180","w":561,"k":{"j":137,"4":139,"\/":152,".":152,",":168}},"g":{"d":"410,-975v45,0,120,48,135,80r0,-59r198,2r2,1026v8,165,-189,311,-352,311v-165,0,-343,-186,-336,-350r213,-4v-1,112,45,168,138,168v113,0,153,-116,124,-244v-30,38,-82,57,-155,57v-165,0,-307,-142,-307,-307r0,-373v-3,-187,148,-310,340,-307xm399,-784v-83,0,-125,57,-125,172r0,270v0,115,45,172,134,172v117,0,140,-146,124,-289r0,-71v0,-91,-3,-147,-8,-166v-17,-59,-58,-88,-125,-88","w":813},"h":{"d":"440,-967v164,-3,287,144,287,308r-2,659r-201,0r-2,-612v0,-115,-44,-172,-133,-172v-82,0,-123,39,-123,116r4,668r-215,0r-2,-1331r213,2r-2,420v30,-38,89,-56,176,-58","w":778,"k":{"j":152,"]":244}},"i":{"d":"281,-1104r-213,0r-2,-227r213,2xm281,0r-213,0r0,-983r213,0r0,983","w":346},"j":{"d":"414,-1104r-213,0r-2,-227r213,2xm416,80v7,166,-187,317,-353,311r3,-201v97,1,145,-51,145,-157r2,-1002r201,0","w":481},"k":{"d":"711,0r-262,0r-195,-287r2,287r-215,0r-2,-1331r213,2r2,600r195,-248r262,0r-385,457","w":737,"k":{"o":68,"j":147,"e":63,"]":240,"4":213}},"l":{"d":"289,-1329r-2,1329r-213,0r2,-1331","w":354},"m":{"d":"864,-987v165,-3,330,141,330,307r-2,680r-201,0r-2,-633v0,-115,-44,-172,-133,-172v-71,0,-133,64,-133,135r-2,670r-203,0r-2,-670v1,-74,-56,-135,-131,-135v-82,0,-121,39,-121,117r2,688r-215,0r-2,-983r213,2r-2,51v31,-38,90,-57,176,-57v66,0,182,74,201,123v36,-50,148,-121,227,-123","w":1253,"k":{"]":236}},"n":{"d":"440,-987v167,0,287,142,287,307r-2,680r-201,0r-2,-633v0,-115,-44,-172,-133,-172v-82,0,-121,39,-121,117r2,688r-215,0r-2,-983r213,2r-2,51v31,-38,90,-57,176,-57","w":788,"k":{"]":238}},"o":{"d":"356,-967v211,0,361,125,361,308r0,372v5,165,-142,307,-307,307v-211,0,-361,-124,-361,-307r0,-372v-5,-165,142,-308,307,-308xm512,-342r0,-270v0,-115,-44,-172,-133,-172v-83,0,-125,57,-125,172r0,270v0,115,44,172,133,172v83,0,125,-57,125,-172","w":763,"k":{"]":227}},"p":{"d":"424,-975v165,0,307,142,307,307r0,373v5,165,-142,307,-307,307v-78,0,-112,-3,-156,-57r2,420r-213,2r0,-1329r199,-2r0,59v27,-53,83,-80,168,-80xm526,-342r0,-270v0,-115,-42,-172,-125,-172v-68,0,-110,29,-127,88v-14,49,-10,381,-2,428v11,66,56,98,121,98v89,0,133,-57,133,-172","w":790,"k":{"j":154,"]":250,")":139}},"q":{"d":"401,-975v47,0,120,47,136,80r0,-59r198,2r0,1329r-213,-2r2,-420v-29,38,-80,57,-155,57v-165,0,-308,-142,-308,-307r0,-373v-3,-184,149,-307,340,-307xm528,-356r-4,-174v0,-91,-3,-147,-8,-166v-15,-59,-57,-88,-125,-88v-83,0,-125,57,-125,172r0,270v0,115,44,172,133,172v86,0,132,-62,129,-186","w":804},"r":{"d":"635,-870r-168,135v-21,-47,-59,-70,-115,-70v-81,0,-121,39,-121,117r2,688r-215,0r-2,-983r213,2r-2,51v31,-38,90,-57,176,-57v99,0,176,39,232,117","w":628,"k":{"]":229,"7":244,"4":160,"\/":213,".":338,",":354}},"s":{"d":"401,-559v168,0,314,109,314,278v0,165,-142,308,-307,308v-198,0,-333,-105,-359,-267r215,0v19,56,60,84,121,84v62,0,125,-52,125,-114v0,-74,-51,-111,-154,-111v-171,0,-313,-113,-313,-278v0,-165,142,-308,307,-308v196,0,336,107,359,269r-215,0v-18,-57,-58,-86,-121,-86v-66,-1,-125,47,-125,114v0,74,51,111,153,111","w":747,"k":{"]":225}},"t":{"d":"356,-227v-1,76,63,80,146,75r2,181v-235,0,-352,-70,-352,-209r0,-584r-101,0r-2,-182r105,0r-4,-180r204,0r2,182r148,0r0,180r-148,0r0,537","w":571,"k":{"j":158,"]":174,"4":143}},"u":{"d":"346,6v-167,0,-287,-142,-287,-307r2,-680r201,0r2,633v0,115,44,172,133,172v81,0,121,-39,121,-117r-2,-688r215,0r2,983r-213,-2r2,-51v-31,38,-90,57,-176,57","k":{"j":139,"]":244}},"v":{"d":"727,-981r-235,983r-220,-2r-227,-981r213,0r125,696r131,-696r213,0","w":768,"k":{"]":238,"7":172,"\/":188,".":166,",":209}},"w":{"d":"1194,-981r-236,983r-219,-2r-123,-539r-131,541r-219,-2r-227,-981r213,0r125,655r131,-655r213,0r129,655r131,-655r213,0","w":1236,"k":{"]":238,"7":172,"\/":188,".":166,",":209}},"x":{"d":"737,-981r-211,512r203,469r-213,0r-125,-348r-131,348r-213,0r209,-471r-201,-510r213,0r125,369r131,-369r213,0","w":780,"k":{"]":238}},"y":{"d":"727,-981r-324,1391r-178,-2r84,-408r-264,-981r213,0r143,664r113,-664r213,0","w":768,"k":{"j":137,"]":231,"7":166,"\/":176,".":162,",":207}},"z":{"d":"690,0r-624,0r-3,-170r398,-643r-395,0r-3,-170r625,0r2,170r-395,643r393,0","w":757,"k":{"j":160,"]":262,"4":166,")":143}},"{":{"d":"606,315v-162,5,-340,-151,-340,-315r0,-338r-233,-237r229,-232r4,0r0,-242v-6,-165,165,-312,328,-307r2,182v-83,-3,-125,55,-125,173r0,194r-229,232r229,239r0,281v0,116,44,173,133,172","w":643},"|":{"d":"254,328r-172,0r-2,-1659r172,2","w":339},"}":{"d":"47,-1356v163,-5,328,142,328,307r0,242r4,0r229,232r-233,237r0,338v8,164,-178,320,-340,315r2,-198v89,1,133,-56,133,-172r0,-281r229,-239r-229,-232r0,-194v0,-117,-42,-175,-125,-173","w":641},"~":{"d":"1108,-723v-42,113,-80,195,-111,248v-96,163,-232,190,-374,82v-13,-11,-55,-49,-119,-119v-88,-97,-165,-90,-219,27r-68,147r-184,0v31,-105,75,-190,127,-258v108,-140,265,-184,405,-70v5,4,45,43,117,119v41,43,78,66,111,66v39,0,88,-81,145,-242r170,0","w":1161},"\u00d7":{"d":"782,-121r-75,76r-297,-299r-297,297r-76,-76r297,-297r-297,-295r76,-76r295,293r297,-297r75,76r-295,301","w":825},"\u2013":{"d":"702,-614r-636,-2r0,-127r636,2r0,127","w":776},"\u2014":{"d":"1059,-612r-993,0r0,-107r993,0r0,107","w":1130},"\u2018":{"d":"348,-1329r-164,532r-151,0r82,-534","w":405,"k":{"s":150,"q":162,"p":94,"o":156,"n":76,"m":72,"j":137,"g":168,"f":90,"e":154,"d":201,"c":152,"a":186,"O":45,"J":477,"A":195,"@":166,";":162,"4":428,"\/":412,".":358,",":426,"#":193}},"\u2019":{"d":"350,-1329r-164,532r-151,0r82,-534","w":407,"k":{"t":86,"s":150,"q":162,"o":156,"j":137,"g":168,"e":154,"d":201,"c":152,"a":186,"J":477,"A":195,"@":166,";":162,"4":428,"\/":412,".":358,",":426,"#":193}},"\u201c":{"d":"637,-1329r-162,532r-151,0r79,-534xm350,-1329r-162,532r-151,0r80,-534","w":694,"k":{"s":150,"q":162,"p":94,"o":156,"n":76,"m":72,"j":137,"g":168,"f":90,"e":154,"d":201,"c":152,"a":186,"O":45,"J":453,"A":195,"@":166,";":162,"4":291,"\/":373,".":358,",":426,"#":193}},"\u201d":{"d":"637,-1329r-162,532r-151,0r79,-534xm350,-1329r-162,532r-151,0r80,-534","w":694,"k":{"s":150,"q":162,"o":156,"j":137,"g":168,"e":154,"d":201,"c":152,"a":186,"J":453,"A":195,"@":166,";":162,"4":291,"\/":373,".":358,",":426,"#":193}},"\u2026":{"d":"1147,0r-213,0r-2,-227r213,2xm721,0r-213,0r-2,-227r213,2xm283,0r-213,0r0,-227r213,2r0,225","w":1230},"\u2122":{"d":"1036,-571r-137,0r0,-308r-84,308r-133,0r-76,-308r0,308r-137,0r0,-750r143,0r142,492r135,-492r147,0r0,750xm416,-1210r-115,0r2,639r-139,0r0,-639r-113,0r0,-113r365,0r0,113","w":1107},"\u00a0":{"w":393}}});
;
var AudioPlayer=function(){var H=[];var D;var F="";var A={};var E=-1;var G="9";function B(I){if(document.all&&!window[I]){for(var J=0;J<document.forms.length;J++){if(document.forms[J][I]){return document.forms[J][I];break}}}return document.all?window[I]:document[I]}function C(I,J,K){B(I).addListener(J,K)}return{setup:function(J,I){F=J;A=I;if(swfobject.hasFlashPlayerVersion(G)){swfobject.switchOffAutoHideShow();swfobject.createCSS("p.audioplayer_container span","visibility:hidden;height:24px;overflow:hidden;padding:0;border:none;")}},getPlayer:function(I){return B(I)},addListener:function(I,J,K){C(I,J,K)},embed:function(I,K){var N={};var L;var J={};var O={};var M={};for(L in A){N[L]=A[L]}for(L in K){N[L]=K[L]}if(N.transparentpagebg=="yes"){J.bgcolor="#FFFFFF";J.wmode="transparent"}else{if(N.pagebg){J.bgcolor="#"+N.pagebg}J.wmode="opaque"}J.menu="false";for(L in N){if(L=="pagebg"||L=="width"||L=="transparentpagebg"){continue}O[L]=N[L]}M.name=I;M.style="outline: none";O.playerID=I;swfobject.embedSWF(F,I,N.width.toString(),"24",G,false,O,J,M);H.push(I)},syncVolumes:function(I,K){E=K;for(var J=0;J<H.length;J++){if(H[J]!=I){B(H[J]).setVolume(E)}}},activate:function(I,J){if(D&&D!=I){B(D).close()}D=I},load:function(K,I,L,J){B(K).load(I,L,J)},close:function(I){B(I).close();if(I==D){D=null}},open:function(I,J){if(J==undefined){J=1}B(I).open(J==undefined?0:J-1)},getVolume:function(I){return E}}}();;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var audioplayer_swfobject=function(){var d="undefined",R="object",s="Shockwave Flash",w="ShockwaveFlash.ShockwaveFlash",Q="application/x-shockwave-flash",r="SWFObjectExprInst",X="onreadystatechange",o=window,J=document,T=navigator,t=false,u=[H],O=[],n=[],i=[],L,q,e,b,j=false,A=false,N,g,M=true,m=function(){var AA=typeof J.getElementById!=d&&typeof J.getElementsByTagName!=d&&typeof J.createElement!=d,AH=T.userAgent.toLowerCase(),y=T.platform.toLowerCase(),AE=y?/win/.test(y):/win/.test(AH),AC=y?/mac/.test(y):/mac/.test(AH),AF=/webkit/.test(AH)?parseFloat(AH.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,x=!+"\v1",AG=[0,0,0],AB=null;if(typeof T.plugins!=d&&typeof T.plugins[s]==R){AB=T.plugins[s].description;if(AB&&!(typeof T.mimeTypes!=d&&T.mimeTypes[Q]&&!T.mimeTypes[Q].enabledPlugin)){t=true;x=false;AB=AB.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AG[0]=parseInt(AB.replace(/^(.*)\..*$/,"$1"),10);AG[1]=parseInt(AB.replace(/^.*\.(.*)\s.*$/,"$1"),10);AG[2]=/[a-zA-Z]/.test(AB)?parseInt(AB.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof o.ActiveXObject!=d){try{var AD=new ActiveXObject(w);if(AD){AB=AD.GetVariable("$version");if(AB){x=true;AB=AB.split(" ")[1].split(",");AG=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}}catch(z){}}}return{w3:AA,pv:AG,wk:AF,ie:x,win:AE,mac:AC}}(),K=function(){if(!m.w3){return }if((typeof J.readyState!=d&&J.readyState=="complete")||(typeof J.readyState==d&&(J.getElementsByTagName("body")[0]||J.body))){F()}if(!j){if(typeof J.addEventListener!=d){J.addEventListener("DOMContentLoaded",F,false)}if(m.ie&&m.win){J.attachEvent(X,function(){if(J.readyState=="complete"){J.detachEvent(X,arguments.callee);F()}});if(o==top){(function(){if(j){return }try{J.documentElement.doScroll("left")}catch(x){setTimeout(arguments.callee,0);return }F()})()}}if(m.wk){(function(){if(j){return }if(!/loaded|complete/.test(J.readyState)){setTimeout(arguments.callee,0);return }F()})()}S(F)}}();function F(){if(j){return }try{var z=J.getElementsByTagName("body")[0].appendChild(c("span"));z.parentNode.removeChild(z)}catch(AA){return }j=true;var x=u.length;for(var y=0;y<x;y++){u[y]()}}function k(x){if(j){x()}else{u[u.length]=x}}function S(y){if(typeof o.addEventListener!=d){o.addEventListener("load",y,false)}else{if(typeof J.addEventListener!=d){J.addEventListener("load",y,false)}else{if(typeof o.attachEvent!=d){I(o,"onload",y)}else{if(typeof o.onload=="function"){var x=o.onload;o.onload=function(){x();y()}}else{o.onload=y}}}}}function H(){if(t){v()}else{h()}}function v(){var x=J.getElementsByTagName("body")[0];var AA=c(R);AA.setAttribute("type",Q);var z=x.appendChild(AA);if(z){var y=0;(function(){if(typeof z.GetVariable!=d){var AB=z.GetVariable("$version");if(AB){AB=AB.split(" ")[1].split(",");m.pv=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}else{if(y<10){y++;setTimeout(arguments.callee,10);return }}x.removeChild(AA);z=null;h()})()}else{h()}}function h(){var AG=O.length;if(AG>0){for(var AF=0;AF<AG;AF++){var y=O[AF].id;var AB=O[AF].callbackFn;var AA={success:false,id:y};if(m.pv[0]>0){var AE=C(y);if(AE){if(f(O[AF].swfVersion)&&!(m.wk&&m.wk<312)){W(y,true);if(AB){AA.success=true;AA.ref=Z(y);AB(AA)}}else{if(O[AF].expressInstall&&a()){var AI={};AI.data=O[AF].expressInstall;AI.width=AE.getAttribute("width")||"0";AI.height=AE.getAttribute("height")||"0";if(AE.getAttribute("class")){AI.styleclass=AE.getAttribute("class")}if(AE.getAttribute("align")){AI.align=AE.getAttribute("align")}var AH={};var x=AE.getElementsByTagName("param");var AC=x.length;for(var AD=0;AD<AC;AD++){if(x[AD].getAttribute("name").toLowerCase()!="movie"){AH[x[AD].getAttribute("name")]=x[AD].getAttribute("value")}}p(AI,AH,y,AB)}else{P(AE);if(AB){AB(AA)}}}}}else{W(y,true);if(AB){var z=Z(y);if(z&&typeof z.SetVariable!=d){AA.success=true;AA.ref=z}AB(AA)}}}}}function Z(AA){var x=null;var y=C(AA);if(y&&y.nodeName=="OBJECT"){if(typeof y.SetVariable!=d){x=y}else{var z=y.getElementsByTagName(R)[0];if(z){x=z}}}return x}function a(){return !A&&f("6.0.65")&&(m.win||m.mac)&&!(m.wk&&m.wk<312)}function p(AA,AB,x,z){A=true;e=z||null;b={success:false,id:x};var AE=C(x);if(AE){if(AE.nodeName=="OBJECT"){L=G(AE);q=null}else{L=AE;q=x}AA.id=r;if(typeof AA.width==d||(!/%$/.test(AA.width)&&parseInt(AA.width,10)<310)){AA.width="310"}if(typeof AA.height==d||(!/%$/.test(AA.height)&&parseInt(AA.height,10)<137)){AA.height="137"}J.title=J.title.slice(0,47)+" - Flash Player Installation";var AD=m.ie&&m.win?"ActiveX":"PlugIn",AC="MMredirectURL="+o.location.toString().replace(/&/g,"%26")+"&MMplayerType="+AD+"&MMdoctitle="+J.title;if(typeof AB.flashvars!=d){AB.flashvars+="&"+AC}else{AB.flashvars=AC}if(m.ie&&m.win&&AE.readyState!=4){var y=c("div");x+="SWFObjectNew";y.setAttribute("id",x);AE.parentNode.insertBefore(y,AE);AE.style.display="none";(function(){if(AE.readyState==4){AE.parentNode.removeChild(AE)}else{setTimeout(arguments.callee,10)}})()}U(AA,AB,x)}}function P(y){if(m.ie&&m.win&&y.readyState!=4){var x=c("div");y.parentNode.insertBefore(x,y);x.parentNode.replaceChild(G(y),x);y.style.display="none";(function(){if(y.readyState==4){y.parentNode.removeChild(y)}else{setTimeout(arguments.callee,10)}})()}else{y.parentNode.replaceChild(G(y),y)}}function G(AB){var AA=c("div");if(m.win&&m.ie){AA.innerHTML=AB.innerHTML}else{var y=AB.getElementsByTagName(R)[0];if(y){var AC=y.childNodes;if(AC){var x=AC.length;for(var z=0;z<x;z++){if(!(AC[z].nodeType==1&&AC[z].nodeName=="PARAM")&&!(AC[z].nodeType==8)){AA.appendChild(AC[z].cloneNode(true))}}}}}return AA}function U(AI,AG,y){var x,AA=C(y);if(m.wk&&m.wk<312){return x}if(AA){if(typeof AI.id==d){AI.id=y}if(m.ie&&m.win){var AH="";for(var AE in AI){if(AI[AE]!=Object.prototype[AE]){if(AE.toLowerCase()=="data"){AG.movie=AI[AE]}else{if(AE.toLowerCase()=="styleclass"){AH+=' class="'+AI[AE]+'"'}else{if(AE.toLowerCase()!="classid"){AH+=" "+AE+'="'+AI[AE]+'"'}}}}}var AF="";for(var AD in AG){if(AG[AD]!=Object.prototype[AD]){AF+='<param name="'+AD+'" value="'+AG[AD]+'" />'}}AA.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AH+">"+AF+"</object>";n[n.length]=AI.id;x=C(AI.id)}else{var z=c(R);z.setAttribute("type",Q);for(var AC in AI){if(AI[AC]!=Object.prototype[AC]){if(AC.toLowerCase()=="styleclass"){z.setAttribute("class",AI[AC])}else{if(AC.toLowerCase()!="classid"){z.setAttribute(AC,AI[AC])}}}}for(var AB in AG){if(AG[AB]!=Object.prototype[AB]&&AB.toLowerCase()!="movie"){E(z,AB,AG[AB])}}AA.parentNode.replaceChild(z,AA);x=z}}return x}function E(z,x,y){var AA=c("param");AA.setAttribute("name",x);AA.setAttribute("value",y);z.appendChild(AA)}function Y(y){var x=C(y);if(x&&x.nodeName=="OBJECT"){if(m.ie&&m.win){x.style.display="none";(function(){if(x.readyState==4){B(y)}else{setTimeout(arguments.callee,10)}})()}else{x.parentNode.removeChild(x)}}}function B(z){var y=C(z);if(y){for(var x in y){if(typeof y[x]=="function"){y[x]=null}}y.parentNode.removeChild(y)}}function C(z){var x=null;try{x=J.getElementById(z)}catch(y){}return x}function c(x){return J.createElement(x)}function I(z,x,y){z.attachEvent(x,y);i[i.length]=[z,x,y]}function f(z){var y=m.pv,x=z.split(".");x[0]=parseInt(x[0],10);x[1]=parseInt(x[1],10)||0;x[2]=parseInt(x[2],10)||0;return(y[0]>x[0]||(y[0]==x[0]&&y[1]>x[1])||(y[0]==x[0]&&y[1]==x[1]&&y[2]>=x[2]))?true:false}function V(AC,y,AD,AB){if(m.ie&&m.mac){return }var AA=J.getElementsByTagName("head")[0];if(!AA){return }var x=(AD&&typeof AD=="string")?AD:"screen";if(AB){N=null;g=null}if(!N||g!=x){var z=c("style");z.setAttribute("type","text/css");z.setAttribute("media",x);N=AA.appendChild(z);if(m.ie&&m.win&&typeof J.styleSheets!=d&&J.styleSheets.length>0){N=J.styleSheets[J.styleSheets.length-1]}g=x}if(m.ie&&m.win){if(N&&typeof N.addRule==R){N.addRule(AC,y)}}else{if(N&&typeof J.createTextNode!=d){N.appendChild(J.createTextNode(AC+" {"+y+"}"))}}}function W(z,x){if(!M){return }var y=x?"visible":"hidden";if(j&&C(z)){C(z).style.visibility=y}else{V("#"+z,"visibility:"+y)}}function l(y){var z=/[\\\"<>\.;]/;var x=z.exec(y)!=null;return x&&typeof encodeURIComponent!=d?encodeURIComponent(y):y}var D=function(){if(m.ie&&m.win){window.attachEvent("onunload",function(){var AC=i.length;for(var AB=0;AB<AC;AB++){i[AB][0].detachEvent(i[AB][1],i[AB][2])}var z=n.length;for(var AA=0;AA<z;AA++){Y(n[AA])}for(var y in m){m[y]=null}m=null;for(var x in audioplayer_swfobject){audioplayer_swfobject[x]=null}audioplayer_swfobject=null})}}();return{registerObject:function(AB,x,AA,z){if(m.w3&&AB&&x){var y={};y.id=AB;y.swfVersion=x;y.expressInstall=AA;y.callbackFn=z;O[O.length]=y;W(AB,false)}else{if(z){z({success:false,id:AB})}}},getObjectById:function(x){if(m.w3){return Z(x)}},embedSWF:function(AB,AH,AE,AG,y,AA,z,AD,AF,AC){var x={success:false,id:AH};if(m.w3&&!(m.wk&&m.wk<312)&&AB&&AH&&AE&&AG&&y){W(AH,false);k(function(){AE+="";AG+="";var AJ={};if(AF&&typeof AF===R){for(var AL in AF){AJ[AL]=AF[AL]}}AJ.data=AB;AJ.width=AE;AJ.height=AG;var AM={};if(AD&&typeof AD===R){for(var AK in AD){AM[AK]=AD[AK]}}if(z&&typeof z===R){for(var AI in z){if(typeof AM.flashvars!=d){AM.flashvars+="&"+AI+"="+z[AI]}else{AM.flashvars=AI+"="+z[AI]}}}if(f(y)){var AN=U(AJ,AM,AH);if(AJ.id==AH){W(AH,true)}x.success=true;x.ref=AN}else{if(AA&&a()){AJ.data=AA;p(AJ,AM,AH,AC);return }else{W(AH,true)}}if(AC){AC(x)}})}else{if(AC){AC(x)}}},switchOffAutoHideShow:function(){M=false},ua:m,getFlashPlayerVersion:function(){return{major:m.pv[0],minor:m.pv[1],release:m.pv[2]}},hasFlashPlayerVersion:f,createSWF:function(z,y,x){if(m.w3){return U(z,y,x)}else{return undefined}},showExpressInstall:function(z,AA,x,y){if(m.w3&&a()){p(z,AA,x,y)}},removeSWF:function(x){if(m.w3){Y(x)}},createCSS:function(AA,z,y,x){if(m.w3){V(AA,z,y,x)}},addDomLoadEvent:k,addLoadEvent:S,getQueryParamValue:function(AA){var z=J.location.search||J.location.hash;if(z){if(/\?/.test(z)){z=z.split("?")[1]}if(AA==null){return l(z)}var y=z.split("&");for(var x=0;x<y.length;x++){if(y[x].substring(0,y[x].indexOf("="))==AA){return l(y[x].substring((y[x].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A){var x=C(r);if(x&&L){x.parentNode.replaceChild(L,x);if(q){W(q,true);if(m.ie&&m.win){L.style.display="block"}}if(e){e(b)}}A=false}}}}();var AudioPlayer=function(){var H=[];var D;var F="";var A={};var E=-1;var G="9";function B(I){if(document.all&&!window[I]){for(var J=0;J<document.forms.length;J++){if(document.forms[J][I]){return document.forms[J][I];break}}}return document.all?window[I]:document[I]}function C(I,J,K){B(I).addListener(J,K)}return{setup:function(J,I){F=J;A=I;if(audioplayer_swfobject.hasFlashPlayerVersion(G)){audioplayer_swfobject.switchOffAutoHideShow();audioplayer_swfobject.createCSS("p.audioplayer_container span","visibility:hidden;height:24px;overflow:hidden;padding:0;border:none;")}},getPlayer:function(I){return B(I)},addListener:function(I,J,K){C(I,J,K)},embed:function(I,K){var N={};var L;var J={};var O={};var M={};for(L in A){N[L]=A[L]}for(L in K){N[L]=K[L]}if(N.transparentpagebg=="yes"){J.bgcolor="#FFFFFF";J.wmode="transparent"}else{if(N.pagebg){J.bgcolor="#"+N.pagebg}J.wmode="opaque"}J.menu="false";for(L in N){if(L=="pagebg"||L=="width"||L=="transparentpagebg"){continue}O[L]=N[L]}M.name=I;M.style="outline: none";O.playerID=I;audioplayer_swfobject.embedSWF(F,I,N.width.toString(),"24",G,false,O,J,M);H.push(I)},syncVolumes:function(I,K){E=K;for(var J=0;J<H.length;J++){if(H[J]!=I){B(H[J]).setVolume(E)}}},activate:function(I,J){if(D&&D!=I){B(D).close()}D=I},load:function(K,I,L,J){B(K).load(I,L,J)},close:function(I){B(I).close();if(I==D){D=null}},open:function(I,J){if(J==undefined){J=1}B(I).open(J==undefined?0:J-1)},getVolume:function(I){return E}}}();;
AudioPlayer.setup("/sites/all/libraries/audio-player/player.swf", {  
                width: 290  
            });;

