// ---- d9f700c346_minify_video.js
(function(window,undefined){var document=window.document;(function(){var initializing=false,fnTest=/xyz/.test(function(){xyz;})?/\b_super\b/:/.*/;this.JRClass=function(){};JRClass.extend=function(prop){var _super=this.prototype;initializing=true;var prototype=new this();initializing=false;for(var name in prop){prototype[name]=typeof prop[name]=="function"&&typeof _super[name]=="function"&&fnTest.test(prop[name])?(function(name,fn){return function(){var tmp=this._super;this._super=_super[name];var ret=fn.apply(this,arguments);this._super=tmp;return ret;};})(name,prop[name]):prop[name];}function JRClass(){if(!initializing&&this.init)this.init.apply(this,arguments);}JRClass.prototype=prototype;JRClass.constructor=JRClass;JRClass.extend=arguments.callee;return JRClass;};})();var VideoJS=JRClass.extend({init:function(element,setOptions){if(typeof element=='string'){this.video=document.getElementById(element);}else{this.video=element;}
this.video.player=this;this.values={};this.elements={};this.options={autoplay:false,preload:true,useBuiltInControls:false,controlsBelow:false,controlsAtStart:false,controlsHiding:true,defaultVolume:0.85,playerFallbackOrder:["html5","flash","links"],flashPlayer:"htmlObject",flashPlayerVersion:false};if(typeof VideoJS.options=="object"){_V_.merge(this.options,VideoJS.options);}
if(typeof setOptions=="object"){_V_.merge(this.options,setOptions);}
if(this.getPreloadAttribute()!==undefined){this.options.preload=this.getPreloadAttribute();}
if(this.getAutoplayAttribute()!==undefined){this.options.autoplay=this.getAutoplayAttribute();}
this.box=this.video.parentNode;this.linksFallback=this.getLinksFallback();this.hideLinksFallback();this.each(this.options.playerFallbackOrder,function(playerType){if(this[playerType+"Supported"]()){this[playerType+"Init"]();return true;}});this.activateElement(this,"player");this.activateElement(this.box,"box");},behaviors:{},newBehavior:function(name,activate,functions){this.behaviors[name]=activate;this.extend(functions);},activateElement:function(element,behavior){if(typeof element=="string"){element=document.getElementById(element);}
this.behaviors[behavior].call(this,element);},errors:[],warnings:[],warning:function(warning){this.warnings.push(warning);this.log(warning);},history:[],log:function(event){if(!event){return;}
if(typeof event=="string"){event={type:event};}
if(event.type){this.history.push(event.type);}
if(this.history.length>=50){this.history.shift();}
try{console.log(event.type);}catch(e){try{opera.postError(event.type);}catch(e){}}},setLocalStorage:function(key,value){if(!localStorage){return;}
try{localStorage[key]=value;}catch(e){if(e.code==22||e.code==1014){this.warning(VideoJS.warnings.localStorageFull);}}},getPreloadAttribute:function(){if(typeof this.video.hasAttribute=="function"&&this.video.hasAttribute("preload")){var preload=this.video.getAttribute("preload");if(preload===""||preload==="true"){return"auto";}
if(preload==="false"){return"none";}
return preload;}},getAutoplayAttribute:function(){if(typeof this.video.hasAttribute=="function"&&this.video.hasAttribute("autoplay")){var autoplay=this.video.getAttribute("autoplay");if(autoplay==="false"){return false;}
return true;}},bufferedPercent:function(){return(this.duration())?this.buffered()[1]/this.duration():0;},each:function(arr,fn){if(!arr||arr.length===0){return;}
for(var i=0,j=arr.length;i<j;i++){if(fn.call(this,arr[i],i)){break;}}},extend:function(obj){for(var attrname in obj){if(obj.hasOwnProperty(attrname)){this[attrname]=obj[attrname];}}}});VideoJS.player=VideoJS.prototype;VideoJS.player.extend({flashSupported:function(){if(!this.flashElement){this.flashElement=this.getFlashElement();}
if(this.flashElement&&this.flashPlayerVersionSupported()){return true;}else{return false;}},flashInit:function(){this.replaceWithFlash();this.element=this.flashElement;this.video.src="";var flashPlayerType=VideoJS.flashPlayers[this.options.flashPlayer];this.extend(VideoJS.flashPlayers[this.options.flashPlayer].api);(flashPlayerType.init.context(this))();},getFlashElement:function(){var children=this.video.children;for(var i=0,j=children.length;i<j;i++){if(children[i].className=="vjs-flash-fallback"){return children[i];}}},replaceWithFlash:function(){if(this.flashElement){this.box.insertBefore(this.flashElement,this.video);this.video.style.display="none";}},flashPlayerVersionSupported:function(){var playerVersion=(this.options.flashPlayerVersion)?this.options.flashPlayerVersion:VideoJS.flashPlayers[this.options.flashPlayer].flashPlayerVersion;return VideoJS.getFlashVersion()>=playerVersion;}});VideoJS.flashPlayers={};VideoJS.flashPlayers.htmlObject={flashPlayerVersion:9,init:function(){return true;},api:{width:function(width){if(width!==undefined){this.element.width=width;this.box.style.width=width+"px";this.triggerResizeListeners();return this;}
return this.element.width;},height:function(height){if(height!==undefined){this.element.height=height;this.box.style.height=height+"px";this.triggerResizeListeners();return this;}
return this.element.height;}}};VideoJS.player.extend({linksSupported:function(){return true;},linksInit:function(){this.showLinksFallback();this.element=this.video;},getLinksFallback:function(){return this.box.getElementsByTagName("P")[0];},hideLinksFallback:function(){if(this.linksFallback){this.linksFallback.style.display="none";}},showLinksFallback:function(){if(this.linksFallback){this.linksFallback.style.display="block";}}});VideoJS.merge=function(obj1,obj2,safe){for(var attrname in obj2){if(obj2.hasOwnProperty(attrname)&&(!safe||!obj1.hasOwnProperty(attrname))){obj1[attrname]=obj2[attrname];}}
return obj1;};VideoJS.extend=function(obj){this.merge(this,obj,true);};VideoJS.extend({setupAllWhenReady:function(options){VideoJS.options=options;VideoJS.DOMReady(VideoJS.setup);},DOMReady:function(fn){VideoJS.addToDOMReady(fn);},setup:function(videos,options){var returnSingular=false,playerList=[],videoElement;if(!videos||videos=="All"){videos=VideoJS.getVideoJSTags();}else if(typeof videos!='object'||videos.nodeType==1){videos=[videos];returnSingular=true;}
for(var i=0;i<videos.length;i++){if(typeof videos[i]=='string'){videoElement=document.getElementById(videos[i]);}else{videoElement=videos[i];}
playerList.push(new VideoJS(videoElement,options));}
return(returnSingular)?playerList[0]:playerList;},getVideoJSTags:function(){var videoTags=document.getElementsByTagName("video"),videoJSTags=[],videoTag;for(var i=0,j=videoTags.length;i<j;i++){videoTag=videoTags[i];if(videoTag.className.indexOf("video-js")!=-1){videoJSTags.push(videoTag);}}
return videoJSTags;},browserSupportsVideo:function(){if(typeof VideoJS.videoSupport!="undefined"){return VideoJS.videoSupport;}
VideoJS.videoSupport=!!document.createElement('video').canPlayType;return VideoJS.videoSupport;},getFlashVersion:function(){if(typeof VideoJS.flashVersion!="undefined"){return VideoJS.flashVersion;}
var version=0,desc;if(typeof navigator.plugins!="undefined"&&typeof navigator.plugins["Shockwave Flash"]=="object"){desc=navigator.plugins["Shockwave Flash"].description;if(desc&&!(typeof navigator.mimeTypes!="undefined"&&navigator.mimeTypes["application/x-shockwave-flash"]&&!navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin)){version=parseInt(desc.match(/^.*\s+([^\s]+)\.[^\s]+\s+[^\s]+$/)[1],10);}}else if(typeof window.ActiveXObject!="undefined"){try{var testObject=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");if(testObject){version=parseInt(testObject.GetVariable("$version").match(/^[^\s]+\s(\d+)/)[1],10);}}
catch(e){}}
VideoJS.flashVersion=version;return VideoJS.flashVersion;},isIE:function(){return!+"\v1";},isIPad:function(){return navigator.userAgent.match(/iPad/i)!==null;},isIPhone:function(){return navigator.userAgent.match(/iPhone/i)!==null;},isIOS:function(){return VideoJS.isIPhone()||VideoJS.isIPad();},iOSVersion:function(){var match=navigator.userAgent.match(/OS (\d+)_/i);if(match&&match[1]){return match[1];}},isAndroid:function(){return navigator.userAgent.match(/Android/i)!==null;},androidVersion:function(){var match=navigator.userAgent.match(/Android (\d+)\./i);if(match&&match[1]){return match[1];}},warnings:{videoNotReady:"Video is not ready yet (try playing the video first).",localStorageFull:"Local Storage is Full"}});if(VideoJS.isIE()){document.createElement("video");}
window.VideoJS=window._V_=VideoJS;VideoJS.player.extend({html5Supported:function(){if(VideoJS.browserSupportsVideo()&&this.canPlaySource()){return true;}else{return false;}},html5Init:function(){this.element=this.video;this.fixPreloading();this.supportProgressEvents();this.volume((localStorage&&localStorage.volume)||this.options.defaultVolume);if(VideoJS.isIOS()){this.options.useBuiltInControls=true;this.iOSInterface();}else if(VideoJS.isAndroid()){this.options.useBuiltInControls=true;this.androidInterface();}
if(!this.options.useBuiltInControls){this.video.controls=false;if(this.options.controlsBelow){_V_.addClass(this.box,"vjs-controls-below");}
this.activateElement(this.video,"playToggle");this.buildStylesCheckDiv();this.buildAndActivatePoster();this.buildBigPlayButton();this.buildAndActivateSpinner();this.buildAndActivateControlBar();this.loadInterface();this.getSubtitles();}},canPlaySource:function(){if(this.canPlaySourceResult){return this.canPlaySourceResult;}
var children=this.video.children;for(var i=0,j=children.length;i<j;i++){if(children[i].tagName.toUpperCase()=="SOURCE"){var canPlay=this.video.canPlayType(children[i].type)||this.canPlayExt(children[i].src);if(canPlay=="probably"||canPlay=="maybe"){this.firstPlayableSource=children[i];this.canPlaySourceResult=true;return true;}}}
this.canPlaySourceResult=false;return false;},canPlayExt:function(src){if(!src){return"";}
var match=src.match(/\.([^\.]+)$/);if(match&&match[1]){var ext=match[1].toLowerCase();if(VideoJS.isAndroid()){if(ext=="mp4"||ext=="m4v"){return"maybe";}}else if(VideoJS.isIOS()){if(ext=="m3u8"){return"maybe";}}}
return"";},forceTheSource:function(){this.video.src=this.firstPlayableSource.src;this.video.load();},fixPreloading:function(){if(typeof this.video.hasAttribute=="function"&&this.video.hasAttribute("preload")&&this.video.preload!="none"){this.video.autobuffer=true;}else{this.video.autobuffer=false;this.video.preload="none";}},supportProgressEvents:function(e){_V_.addListener(this.video,'progress',this.playerOnVideoProgress.context(this));},playerOnVideoProgress:function(event){this.setBufferedFromProgress(event);},setBufferedFromProgress:function(event){if(event.total>0){var newBufferEnd=(event.loaded/event.total)*this.duration();if(newBufferEnd>this.values.bufferEnd){this.values.bufferEnd=newBufferEnd;}}},iOSInterface:function(){if(VideoJS.iOSVersion()<4){this.forceTheSource();}
if(VideoJS.isIPad()){this.buildAndActivateSpinner();}},androidInterface:function(){this.forceTheSource();_V_.addListener(this.video,"click",function(){this.play();});this.buildBigPlayButton();_V_.addListener(this.bigPlayButton,"click",function(){this.play();}.context(this));this.positionBox();this.showBigPlayButtons();},loadInterface:function(){if(!this.stylesHaveLoaded()){if(!this.positionRetries){this.positionRetries=1;}
if(this.positionRetries++<100){setTimeout(this.loadInterface.context(this),10);return;}}
this.hideStylesCheckDiv();this.showPoster();if(this.video.paused!==false){this.showBigPlayButtons();}
if(this.options.controlsAtStart){this.showControlBars();}
this.positionAll();},buildAndActivateControlBar:function(){this.controls=_V_.createElement("div",{className:"vjs-controls"});this.box.appendChild(this.controls);this.activateElement(this.controls,"controlBar");this.activateElement(this.controls,"mouseOverVideoReporter");this.playControl=_V_.createElement("div",{className:"vjs-play-control",innerHTML:"<span></span>"});this.controls.appendChild(this.playControl);this.activateElement(this.playControl,"playToggle");this.progressControl=_V_.createElement("div",{className:"vjs-progress-control"});this.controls.appendChild(this.progressControl);this.progressHolder=_V_.createElement("div",{className:"vjs-progress-holder"});this.progressControl.appendChild(this.progressHolder);this.activateElement(this.progressHolder,"currentTimeScrubber");this.loadProgressBar=_V_.createElement("div",{className:"vjs-load-progress"});this.progressHolder.appendChild(this.loadProgressBar);this.activateElement(this.loadProgressBar,"loadProgressBar");this.playProgressBar=_V_.createElement("div",{className:"vjs-play-progress"});this.progressHolder.appendChild(this.playProgressBar);this.activateElement(this.playProgressBar,"playProgressBar");this.timeControl=_V_.createElement("div",{className:"vjs-time-control"});this.controls.appendChild(this.timeControl);this.currentTimeDisplay=_V_.createElement("span",{className:"vjs-current-time-display",innerHTML:"00:00"});this.timeControl.appendChild(this.currentTimeDisplay);this.activateElement(this.currentTimeDisplay,"currentTimeDisplay");this.timeSeparator=_V_.createElement("span",{innerHTML:" / "});this.timeControl.appendChild(this.timeSeparator);this.durationDisplay=_V_.createElement("span",{className:"vjs-duration-display",innerHTML:"00:00"});this.timeControl.appendChild(this.durationDisplay);this.activateElement(this.durationDisplay,"durationDisplay");this.volumeControl=_V_.createElement("div",{className:"vjs-volume-control",innerHTML:"<div><span></span><span></span><span></span><span></span><span></span><span></span></div>"});this.controls.appendChild(this.volumeControl);this.activateElement(this.volumeControl,"volumeScrubber");this.volumeDisplay=this.volumeControl.children[0];this.activateElement(this.volumeDisplay,"volumeDisplay");this.fullscreenControl=_V_.createElement("div",{className:"vjs-fullscreen-control",innerHTML:"<div><span></span><span></span><span></span><span></span></div>"});this.controls.appendChild(this.fullscreenControl);this.activateElement(this.fullscreenControl,"fullscreenToggle");},buildAndActivatePoster:function(){this.updatePosterSource();if(this.video.poster){this.poster=document.createElement("img");this.box.appendChild(this.poster);this.poster.src=this.video.poster;this.poster.className="vjs-poster";this.activateElement(this.poster,"poster");}else{this.poster=false;}},buildBigPlayButton:function(){this.bigPlayButton=_V_.createElement("div",{className:"vjs-big-play-button",innerHTML:"<span></span>"});this.box.appendChild(this.bigPlayButton);this.activateElement(this.bigPlayButton,"bigPlayButton");},buildAndActivateSpinner:function(){this.spinner=_V_.createElement("div",{className:"vjs-spinner",innerHTML:"<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>"});this.box.appendChild(this.spinner);this.activateElement(this.spinner,"spinner");},buildStylesCheckDiv:function(){this.stylesCheckDiv=_V_.createElement("div",{className:"vjs-styles-check"});this.stylesCheckDiv.style.position="absolute";this.box.appendChild(this.stylesCheckDiv);},hideStylesCheckDiv:function(){this.stylesCheckDiv.style.display="none";},stylesHaveLoaded:function(){if(this.stylesCheckDiv.offsetHeight!=5){return false;}else{return true;}},positionAll:function(){this.positionBox();this.positionControlBars();this.positionPoster();},positionBox:function(){if(this.videoIsFullScreen){this.box.style.width="";this.element.style.height="";if(this.options.controlsBelow){this.box.style.height="";this.element.style.height=(this.box.offsetHeight-this.controls.offsetHeight)+"px";}}else{this.box.style.width=this.width()+"px";this.element.style.height=this.height()+"px";if(this.options.controlsBelow){this.element.style.height="";}}},getSubtitles:function(){var tracks=this.video.getElementsByTagName("TRACK");for(var i=0,j=tracks.length;i<j;i++){if(tracks[i].getAttribute("kind")=="subtitles"&&tracks[i].getAttribute("src")){this.subtitlesSource=tracks[i].getAttribute("src");this.loadSubtitles();this.buildSubtitles();}}},loadSubtitles:function(){_V_.get(this.subtitlesSource,this.parseSubtitles.context(this));},parseSubtitles:function(subText){var lines=subText.split("\n"),line="",subtitle,time,text;this.subtitles=[];this.currentSubtitle=false;this.lastSubtitleIndex=0;for(var i=0;i<lines.length;i++){line=_V_.trim(lines[i]);if(line){subtitle={id:line,index:this.subtitles.length};line=_V_.trim(lines[++i]);time=line.split(" --> ");subtitle.start=this.parseSubtitleTime(time[0]);subtitle.end=this.parseSubtitleTime(time[1]);text=[];for(var j=i;j<lines.length;j++){line=_V_.trim(lines[++i]);if(!line){break;}
text.push(line);}
subtitle.text=text.join('<br/>');this.subtitles.push(subtitle);}}},parseSubtitleTime:function(timeText){var parts=timeText.split(':'),time=0;time+=parseFloat(parts[0])*60*60;time+=parseFloat(parts[1])*60;var seconds=parts[2].split(/\.|,/);time+=parseFloat(seconds[0]);ms=parseFloat(seconds[1]);if(ms){time+=ms/1000;}
return time;},buildSubtitles:function(){this.subtitlesDisplay=_V_.createElement("div",{className:'vjs-subtitles'});this.box.appendChild(this.subtitlesDisplay);this.activateElement(this.subtitlesDisplay,"subtitlesDisplay");},addVideoListener:function(type,fn){_V_.addListener(this.video,type,fn.rEvtContext(this));},play:function(){this.video.play();return this;},onPlay:function(fn){this.addVideoListener("play",fn);return this;},pause:function(){this.video.pause();return this;},onPause:function(fn){this.addVideoListener("pause",fn);return this;},paused:function(){return this.video.paused;},currentTime:function(seconds){if(seconds!==undefined){try{this.video.currentTime=seconds;}
catch(e){this.warning(VideoJS.warnings.videoNotReady);}
this.values.currentTime=seconds;return this;}
return this.video.currentTime;},onCurrentTimeUpdate:function(fn){this.currentTimeListeners.push(fn);},duration:function(){return this.video.duration;},buffered:function(){if(this.values.bufferStart===undefined){this.values.bufferStart=0;this.values.bufferEnd=0;}
if(this.video.buffered&&this.video.buffered.length>0){var newEnd=this.video.buffered.end(0);if(newEnd>this.values.bufferEnd){this.values.bufferEnd=newEnd;}}
return[this.values.bufferStart,this.values.bufferEnd];},volume:function(percentAsDecimal){if(percentAsDecimal!==undefined){this.values.volume=Math.max(0,Math.min(1,parseFloat(percentAsDecimal)));this.video.volume=this.values.volume;this.setLocalStorage("volume",this.values.volume);return this;}
if(this.values.volume){return this.values.volume;}
return this.video.volume;},onVolumeChange:function(fn){_V_.addListener(this.video,'volumechange',fn.rEvtContext(this));},width:function(width){if(width!==undefined){this.video.width=width;this.box.style.width=width+"px";this.triggerResizeListeners();return this;}
return this.video.offsetWidth;},height:function(height){if(height!==undefined){this.video.height=height;this.box.style.height=height+"px";this.triggerResizeListeners();return this;}
return this.video.offsetHeight;},supportsFullScreen:function(){if(typeof this.video.webkitEnterFullScreen=='function'){if(!navigator.userAgent.match("Chrome")&&!navigator.userAgent.match("Mac OS X 10.5")){return true;}}
return false;},html5EnterNativeFullScreen:function(){try{this.video.webkitEnterFullScreen();}catch(e){if(e.code==11){this.warning(VideoJS.warnings.videoNotReady);}}
return this;},enterFullScreen:function(){if(this.supportsFullScreen()){this.html5EnterNativeFullScreen();}else{this.enterFullWindow();}},exitFullScreen:function(){if(this.supportsFullScreen()){}else{this.exitFullWindow();}},enterFullWindow:function(){this.videoIsFullScreen=true;this.docOrigOverflow=document.documentElement.style.overflow;_V_.addListener(document,"keydown",this.fullscreenOnEscKey.rEvtContext(this));_V_.addListener(window,"resize",this.fullscreenOnWindowResize.rEvtContext(this));document.documentElement.style.overflow='hidden';_V_.addClass(this.box,"vjs-fullscreen");this.positionAll();},exitFullWindow:function(){this.videoIsFullScreen=false;document.removeEventListener("keydown",this.fullscreenOnEscKey,false);window.removeEventListener("resize",this.fullscreenOnWindowResize,false);document.documentElement.style.overflow=this.docOrigOverflow;_V_.removeClass(this.box,"vjs-fullscreen");this.positionAll();},onError:function(fn){this.addVideoListener("error",fn);return this;},onEnded:function(fn){this.addVideoListener("ended",fn);return this;}});VideoJS.player.newBehavior("player",function(player){this.onError(this.playerOnVideoError);this.onPlay(this.playerOnVideoPlay);this.onPlay(this.trackCurrentTime);this.onPause(this.playerOnVideoPause);this.onPause(this.stopTrackingCurrentTime);this.onEnded(this.playerOnVideoEnded);this.trackBuffered();this.onBufferedUpdate(this.isBufferFull);},{playerOnVideoError:function(event){this.log(event);this.log(this.video.error);},playerOnVideoPlay:function(event){this.hasPlayed=true;},playerOnVideoPause:function(event){},playerOnVideoEnded:function(event){this.currentTime(0);this.pause();},trackBuffered:function(){this.bufferedInterval=setInterval(this.triggerBufferedListeners.context(this),500);},stopTrackingBuffered:function(){clearInterval(this.bufferedInterval);},bufferedListeners:[],onBufferedUpdate:function(fn){this.bufferedListeners.push(fn);},triggerBufferedListeners:function(){this.isBufferFull();this.each(this.bufferedListeners,function(listener){(listener.context(this))();});},isBufferFull:function(){if(this.bufferedPercent()==1){this.stopTrackingBuffered();}},trackCurrentTime:function(){if(this.currentTimeInterval){clearInterval(this.currentTimeInterval);}
this.currentTimeInterval=setInterval(this.triggerCurrentTimeListeners.context(this),100);this.trackingCurrentTime=true;},stopTrackingCurrentTime:function(){clearInterval(this.currentTimeInterval);this.trackingCurrentTime=false;},currentTimeListeners:[],triggerCurrentTimeListeners:function(late,newTime){this.each(this.currentTimeListeners,function(listener){(listener.context(this))(newTime||this.currentTime());});},resizeListeners:[],onResize:function(fn){this.resizeListeners.push(fn);},triggerResizeListeners:function(){this.each(this.resizeListeners,function(listener){(listener.context(this))();});}});VideoJS.player.newBehavior("mouseOverVideoReporter",function(element){_V_.addListener(element,"mousemove",this.mouseOverVideoReporterOnMouseMove.context(this));_V_.addListener(element,"mouseout",this.mouseOverVideoReporterOnMouseOut.context(this));},{mouseOverVideoReporterOnMouseMove:function(){this.showControlBars();clearInterval(this.mouseMoveTimeout);this.mouseMoveTimeout=setTimeout(this.hideControlBars.context(this),4000);},mouseOverVideoReporterOnMouseOut:function(event){var parent=event.relatedTarget;while(parent&&parent!==this.box){parent=parent.parentNode;}
if(parent!==this.box){this.hideControlBars();}}});VideoJS.player.newBehavior("box",function(element){this.positionBox();_V_.addClass(element,"vjs-paused");this.activateElement(element,"mouseOverVideoReporter");this.onPlay(this.boxOnVideoPlay);this.onPause(this.boxOnVideoPause);},{boxOnVideoPlay:function(){_V_.removeClass(this.box,"vjs-paused");_V_.addClass(this.box,"vjs-playing");},boxOnVideoPause:function(){_V_.removeClass(this.box,"vjs-playing");_V_.addClass(this.box,"vjs-paused");}});VideoJS.player.newBehavior("poster",function(element){this.activateElement(element,"mouseOverVideoReporter");this.activateElement(element,"playButton");this.onPlay(this.hidePoster);this.onEnded(this.showPoster);this.onResize(this.positionPoster);},{showPoster:function(){if(!this.poster){return;}
this.poster.style.display="block";this.positionPoster();},positionPoster:function(){if(!this.poster||this.poster.style.display=='none'){return;}
this.poster.style.height=this.height()+"px";this.poster.style.width=this.width()+"px";},hidePoster:function(){if(!this.poster){return;}
this.poster.style.display="none";},updatePosterSource:function(){if(!this.video.poster){var images=this.video.getElementsByTagName("img");if(images.length>0){this.video.poster=images[0].src;}}}});VideoJS.player.newBehavior("controlBar",function(element){if(!this.controlBars){this.controlBars=[];this.onResize(this.positionControlBars);}
this.controlBars.push(element);_V_.addListener(element,"mousemove",this.onControlBarsMouseMove.context(this));_V_.addListener(element,"mouseout",this.onControlBarsMouseOut.context(this));},{showControlBars:function(){if(!this.options.controlsAtStart&&!this.hasPlayed){return;}
this.each(this.controlBars,function(bar){bar.style.display="block";});},positionControlBars:function(){this.updatePlayProgressBars();this.updateLoadProgressBars();},hideControlBars:function(){if(this.options.controlsHiding&&!this.mouseIsOverControls){this.each(this.controlBars,function(bar){bar.style.display="none";});}},onControlBarsMouseMove:function(){this.mouseIsOverControls=true;},onControlBarsMouseOut:function(event){this.mouseIsOverControls=false;}});VideoJS.player.newBehavior("playToggle",function(element){if(!this.elements.playToggles){this.elements.playToggles=[];this.onPlay(this.playTogglesOnPlay);this.onPause(this.playTogglesOnPause);}
this.elements.playToggles.push(element);_V_.addListener(element,"click",this.onPlayToggleClick.context(this));},{onPlayToggleClick:function(event){if(this.paused()){this.play();}else{this.pause();}},playTogglesOnPlay:function(event){this.each(this.elements.playToggles,function(toggle){_V_.removeClass(toggle,"vjs-paused");_V_.addClass(toggle,"vjs-playing");});},playTogglesOnPause:function(event){this.each(this.elements.playToggles,function(toggle){_V_.removeClass(toggle,"vjs-playing");_V_.addClass(toggle,"vjs-paused");});}});VideoJS.player.newBehavior("playButton",function(element){_V_.addListener(element,"click",this.onPlayButtonClick.context(this));},{onPlayButtonClick:function(event){this.play();}});VideoJS.player.newBehavior("pauseButton",function(element){_V_.addListener(element,"click",this.onPauseButtonClick.context(this));},{onPauseButtonClick:function(event){this.pause();}});VideoJS.player.newBehavior("playProgressBar",function(element){if(!this.playProgressBars){this.playProgressBars=[];this.onCurrentTimeUpdate(this.updatePlayProgressBars);}
this.playProgressBars.push(element);},{updatePlayProgressBars:function(newTime){var progress=(newTime!==undefined)?newTime/this.duration():this.currentTime()/this.duration();if(isNaN(progress)){progress=0;}
this.each(this.playProgressBars,function(bar){if(bar.style){bar.style.width=_V_.round(progress*100,2)+"%";}});}});VideoJS.player.newBehavior("loadProgressBar",function(element){if(!this.loadProgressBars){this.loadProgressBars=[];}
this.loadProgressBars.push(element);this.onBufferedUpdate(this.updateLoadProgressBars);},{updateLoadProgressBars:function(){this.each(this.loadProgressBars,function(bar){if(bar.style){bar.style.width=_V_.round(this.bufferedPercent()*100,2)+"%";}});}});VideoJS.player.newBehavior("currentTimeDisplay",function(element){if(!this.currentTimeDisplays){this.currentTimeDisplays=[];this.onCurrentTimeUpdate(this.updateCurrentTimeDisplays);}
this.currentTimeDisplays.push(element);},{updateCurrentTimeDisplays:function(newTime){if(!this.currentTimeDisplays){return;}
var time=(newTime)?newTime:this.currentTime();this.each(this.currentTimeDisplays,function(dis){dis.innerHTML=_V_.formatTime(time);});}});VideoJS.player.newBehavior("durationDisplay",function(element){if(!this.durationDisplays){this.durationDisplays=[];this.onCurrentTimeUpdate(this.updateDurationDisplays);}
this.durationDisplays.push(element);},{updateDurationDisplays:function(){if(!this.durationDisplays){return;}
this.each(this.durationDisplays,function(dis){if(this.duration()){dis.innerHTML=_V_.formatTime(this.duration());}});}});VideoJS.player.newBehavior("currentTimeScrubber",function(element){_V_.addListener(element,"mousedown",this.onCurrentTimeScrubberMouseDown.rEvtContext(this));},{onCurrentTimeScrubberMouseDown:function(event,scrubber){event.preventDefault();this.currentScrubber=scrubber;this.stopTrackingCurrentTime();this.videoWasPlaying=!this.paused();this.pause();_V_.blockTextSelection();this.setCurrentTimeWithScrubber(event);_V_.addListener(document,"mousemove",this.onCurrentTimeScrubberMouseMove.rEvtContext(this));_V_.addListener(document,"mouseup",this.onCurrentTimeScrubberMouseUp.rEvtContext(this));},onCurrentTimeScrubberMouseMove:function(event){this.setCurrentTimeWithScrubber(event);},onCurrentTimeScrubberMouseUp:function(event){_V_.unblockTextSelection();document.removeEventListener("mousemove",this.onCurrentTimeScrubberMouseMove,false);document.removeEventListener("mouseup",this.onCurrentTimeScrubberMouseUp,false);if(this.videoWasPlaying){this.play();this.trackCurrentTime();}},setCurrentTimeWithScrubber:function(event){var newProgress=_V_.getRelativePosition(event.pageX,this.currentScrubber);var newTime=newProgress*this.duration();this.triggerCurrentTimeListeners(0,newTime);if(newTime==this.duration()){newTime=newTime-0.1;}
this.currentTime(newTime);}});VideoJS.player.newBehavior("volumeDisplay",function(element){if(!this.volumeDisplays){this.volumeDisplays=[];this.onVolumeChange(this.updateVolumeDisplays);}
this.volumeDisplays.push(element);this.updateVolumeDisplay(element);},{updateVolumeDisplays:function(){if(!this.volumeDisplays){return;}
this.each(this.volumeDisplays,function(dis){this.updateVolumeDisplay(dis);});},updateVolumeDisplay:function(display){var volNum=Math.ceil(this.volume()*6);this.each(display.children,function(child,num){if(num<volNum){_V_.addClass(child,"vjs-volume-level-on");}else{_V_.removeClass(child,"vjs-volume-level-on");}});}});VideoJS.player.newBehavior("volumeScrubber",function(element){_V_.addListener(element,"mousedown",this.onVolumeScrubberMouseDown.rEvtContext(this));},{onVolumeScrubberMouseDown:function(event,scrubber){_V_.blockTextSelection();this.currentScrubber=scrubber;this.setVolumeWithScrubber(event);_V_.addListener(document,"mousemove",this.onVolumeScrubberMouseMove.rEvtContext(this));_V_.addListener(document,"mouseup",this.onVolumeScrubberMouseUp.rEvtContext(this));},onVolumeScrubberMouseMove:function(event){this.setVolumeWithScrubber(event);},onVolumeScrubberMouseUp:function(event){this.setVolumeWithScrubber(event);_V_.unblockTextSelection();document.removeEventListener("mousemove",this.onVolumeScrubberMouseMove,false);document.removeEventListener("mouseup",this.onVolumeScrubberMouseUp,false);},setVolumeWithScrubber:function(event){var newVol=_V_.getRelativePosition(event.pageX,this.currentScrubber);this.volume(newVol);}});VideoJS.player.newBehavior("fullscreenToggle",function(element){_V_.addListener(element,"click",this.onFullscreenToggleClick.context(this));},{onFullscreenToggleClick:function(event){if(!this.videoIsFullScreen){this.enterFullScreen();}else{this.exitFullScreen();}},fullscreenOnWindowResize:function(event){this.positionControlBars();},fullscreenOnEscKey:function(event){if(event.keyCode==27){this.exitFullScreen();}}});VideoJS.player.newBehavior("bigPlayButton",function(element){if(!this.elements.bigPlayButtons){this.elements.bigPlayButtons=[];this.onPlay(this.bigPlayButtonsOnPlay);this.onEnded(this.bigPlayButtonsOnEnded);}
this.elements.bigPlayButtons.push(element);this.activateElement(element,"playButton");},{bigPlayButtonsOnPlay:function(event){this.hideBigPlayButtons();},bigPlayButtonsOnEnded:function(event){this.showBigPlayButtons();},showBigPlayButtons:function(){this.each(this.elements.bigPlayButtons,function(element){element.style.display="block";});},hideBigPlayButtons:function(){this.each(this.elements.bigPlayButtons,function(element){element.style.display="none";});}});VideoJS.player.newBehavior("spinner",function(element){if(!this.spinners){this.spinners=[];_V_.addListener(this.video,"loadeddata",this.spinnersOnVideoLoadedData.context(this));_V_.addListener(this.video,"loadstart",this.spinnersOnVideoLoadStart.context(this));_V_.addListener(this.video,"seeking",this.spinnersOnVideoSeeking.context(this));_V_.addListener(this.video,"seeked",this.spinnersOnVideoSeeked.context(this));_V_.addListener(this.video,"canplay",this.spinnersOnVideoCanPlay.context(this));_V_.addListener(this.video,"canplaythrough",this.spinnersOnVideoCanPlayThrough.context(this));_V_.addListener(this.video,"waiting",this.spinnersOnVideoWaiting.context(this));_V_.addListener(this.video,"stalled",this.spinnersOnVideoStalled.context(this));_V_.addListener(this.video,"suspend",this.spinnersOnVideoSuspend.context(this));_V_.addListener(this.video,"playing",this.spinnersOnVideoPlaying.context(this));_V_.addListener(this.video,"timeupdate",this.spinnersOnVideoTimeUpdate.context(this));}
this.spinners.push(element);},{showSpinners:function(){this.each(this.spinners,function(spinner){spinner.style.display="block";});clearInterval(this.spinnerInterval);this.spinnerInterval=setInterval(this.rotateSpinners.context(this),100);},hideSpinners:function(){this.each(this.spinners,function(spinner){spinner.style.display="none";});clearInterval(this.spinnerInterval);},spinnersRotated:0,rotateSpinners:function(){this.each(this.spinners,function(spinner){spinner.style.WebkitTransform='scale(0.5) rotate('+this.spinnersRotated+'deg)';spinner.style.MozTransform='scale(0.5) rotate('+this.spinnersRotated+'deg)';});if(this.spinnersRotated==360){this.spinnersRotated=0;}
this.spinnersRotated+=45;},spinnersOnVideoLoadedData:function(event){this.hideSpinners();},spinnersOnVideoLoadStart:function(event){this.showSpinners();},spinnersOnVideoSeeking:function(event){},spinnersOnVideoSeeked:function(event){},spinnersOnVideoCanPlay:function(event){},spinnersOnVideoCanPlayThrough:function(event){this.hideSpinners();},spinnersOnVideoWaiting:function(event){this.showSpinners();},spinnersOnVideoStalled:function(event){},spinnersOnVideoSuspend:function(event){},spinnersOnVideoPlaying:function(event){this.hideSpinners();},spinnersOnVideoTimeUpdate:function(event){if(this.spinner.style.display=="block"){this.hideSpinners();}}});VideoJS.player.newBehavior("subtitlesDisplay",function(element){if(!this.subtitleDisplays){this.subtitleDisplays=[];this.onCurrentTimeUpdate(this.subtitleDisplaysOnVideoTimeUpdate);this.onEnded(function(){this.lastSubtitleIndex=0;}.context(this));}
this.subtitleDisplays.push(element);},{subtitleDisplaysOnVideoTimeUpdate:function(time){if(this.subtitles){if(!this.currentSubtitle||this.currentSubtitle.start>=time||this.currentSubtitle.end<time){var newSubIndex=false,reverse=(this.subtitles[this.lastSubtitleIndex].start>time),i=this.lastSubtitleIndex-(reverse)?1:0;while(true){if(reverse){if(i<0||this.subtitles[i].end<time){break;}
if(this.subtitles[i].start<time){newSubIndex=i;break;}
i--;}else{if(i>=this.subtitles.length||this.subtitles[i].start>time){break;}
if(this.subtitles[i].end>time){newSubIndex=i;break;}
i++;}}
if(newSubIndex!==false){this.currentSubtitle=this.subtitles[newSubIndex];this.lastSubtitleIndex=newSubIndex;this.updateSubtitleDisplays(this.currentSubtitle.text);}else if(this.currentSubtitle){this.currentSubtitle=false;this.updateSubtitleDisplays("");}}}},updateSubtitleDisplays:function(val){this.each(this.subtitleDisplays,function(disp){disp.innerHTML=val;});}});VideoJS.extend({addClass:function(element,classToAdd){if((" "+element.className+" ").indexOf(" "+classToAdd+" ")==-1){element.className=element.className===""?classToAdd:element.className+" "+classToAdd;}},removeClass:function(element,classToRemove){if(element.className.indexOf(classToRemove)==-1){return;}
var classNames=element.className.split(/\s+/);classNames.splice(classNames.lastIndexOf(classToRemove),1);element.className=classNames.join(" ");},createElement:function(tagName,attributes){return this.merge(document.createElement(tagName),attributes);},blockTextSelection:function(){document.body.focus();document.onselectstart=function(){return false;};},unblockTextSelection:function(){document.onselectstart=function(){return true;};},formatTime:function(secs){var seconds=Math.round(secs);var minutes=Math.floor(seconds/60);minutes=(minutes>=10)?minutes:"0"+minutes;seconds=Math.floor(seconds%60);seconds=(seconds>=10)?seconds:"0"+seconds;return minutes+":"+seconds;},getRelativePosition:function(x,relativeElement){return Math.max(0,Math.min(1,(x-this.findPosX(relativeElement))/relativeElement.offsetWidth));},findPosX:function(obj){var curleft=obj.offsetLeft;while(obj=obj.offsetParent){curleft+=obj.offsetLeft;}
return curleft;},getComputedStyleValue:function(element,style){return window.getComputedStyle(element,null).getPropertyValue(style);},round:function(num,dec){if(!dec){dec=0;}
return Math.round(num*Math.pow(10,dec))/Math.pow(10,dec);},addListener:function(element,type,handler){if(element.addEventListener){element.addEventListener(type,handler,false);}else if(element.attachEvent){element.attachEvent("on"+type,handler);}},removeListener:function(element,type,handler){if(element.removeEventListener){element.removeEventListener(type,handler,false);}else if(element.attachEvent){element.detachEvent("on"+type,handler);}},get:function(url,onSuccess){if(typeof XMLHttpRequest=="undefined"){XMLHttpRequest=function(){try{return new ActiveXObject("Msxml2.XMLHTTP.6.0");}catch(e){}
try{return new ActiveXObject("Msxml2.XMLHTTP.3.0");}catch(f){}
try{return new ActiveXObject("Msxml2.XMLHTTP");}catch(g){}
throw new Error("This browser does not support XMLHttpRequest.");};}
var request=new XMLHttpRequest();request.open("GET",url);request.onreadystatechange=function(){if(request.readyState==4&&request.status==200){onSuccess(request.responseText);}}.context(this);request.send();},trim:function(string){return string.toString().replace(/^\s+/,"").replace(/\s+$/,"");},bindDOMReady:function(){if(document.readyState==="complete"){return VideoJS.onDOMReady();}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",VideoJS.DOMContentLoaded,false);window.addEventListener("load",VideoJS.onDOMReady,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",VideoJS.DOMContentLoaded);window.attachEvent("onload",VideoJS.onDOMReady);}},DOMContentLoaded:function(){if(document.addEventListener){document.removeEventListener("DOMContentLoaded",VideoJS.DOMContentLoaded,false);VideoJS.onDOMReady();}else if(document.attachEvent){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",VideoJS.DOMContentLoaded);VideoJS.onDOMReady();}}},DOMReadyList:[],addToDOMReady:function(fn){if(VideoJS.DOMIsReady){fn.call(document);}else{VideoJS.DOMReadyList.push(fn);}},DOMIsReady:false,onDOMReady:function(){if(VideoJS.DOMIsReady){return;}
if(!document.body){return setTimeout(VideoJS.onDOMReady,13);}
VideoJS.DOMIsReady=true;if(VideoJS.DOMReadyList){for(var i=0;i<VideoJS.DOMReadyList.length;i++){VideoJS.DOMReadyList[i].call(document);}
VideoJS.DOMReadyList=null;}}});VideoJS.bindDOMReady();Function.prototype.context=function(obj){var method=this,temp=function(){return method.apply(obj,arguments);};return temp;};Function.prototype.evtContext=function(obj){var method=this,temp=function(){var origContext=this;return method.call(obj,arguments[0],origContext);};return temp;};Function.prototype.rEvtContext=function(obj,funcParent){if(this.hasContext===true){return this;}
if(!funcParent){funcParent=obj;}
for(var attrname in funcParent){if(funcParent[attrname]==this){funcParent[attrname]=this.evtContext(obj);funcParent[attrname].hasContext=true;return funcParent[attrname];}}
return this.evtContext(obj);};if(window.jQuery){(function($){$.fn.VideoJS=function(options){this.each(function(){VideoJS.setup(this,options);});return this;};$.fn.player=function(){return this[0].player;};})(jQuery);}
window.VideoJS=window._V_=VideoJS;})(window);;
// ---- 1480f2d730_minify_javascript_757c080409.js
var browserName=navigator.appName;var browserVer=parseInt(navigator.appVersion);var version="";var msie4=(browserName=="Microsoft Internet Explorer"&&browserVer>=4);if((browserName=="Netscape"&&browserVer>=3)||msie4||browserName=="Konqueror"||browserName=="Opera"){version="n3";}else{version="n2";}
function blurLink(theObject){if(msie4){theObject.blur();}};
// ---- fff0aec2de_minify_jsfunc.layermenu.js
var GLV_x=0;var GLV_y=0;var GLV_curLayerWidth=new Array();var GLV_curLayerHeight=new Array();var GLV_curLayerX=new Array();var GLV_curLayerY=new Array();var GLV_menuOn=new Array();var GLV_gap=new Array();var GLV_currentLayer=new Array();var GLV_currentROitem=new Array();var GLV_hasBeenOver=new Array();var GLV_doReset=new Array();var GLV_lastKey=new Array();var GLV_menuXY=new Array();var GLV_date=new Array();var GLV_timeout=new Array();var GLV_timeoutRef=new Array();var GLV_onlyOnLoad=new Array();var GLV_dontHideOnMouseUp=new Array();var GLV_date=new Date();var GLV_restoreMenu=new Array();var GLV_timeout_count=0;var GLV_timeout_pointers=new Array();var GLV_dontFollowMouse=new Array();function GL_checkBrowser(){this.dom=(document.getElementById);if(op=(navigator.userAgent.indexOf("Opera")>-1)){switch(parseInt(navigator.userAgent.substr(navigator.userAgent.indexOf("Opera")+6))){case 5:case 6:this.op5=true;break;case 7:case 8:this.op7=true;break;default:this.op4=true;}}
this.konq=(navigator.userAgent.indexOf("Konq")>-1);this.ie4=(document.all&&!this.dom&&!op&&!this.konq);this.ie5=(document.all&&this.dom&&!op&&!this.konq);this.ie6=(this.ie5);this.ns4=(document.layers&&!this.dom&&!this.konq);this.ns5=(!document.all&&this.dom&&!op&&!this.konq);this.ns6=(this.ns5);this.bw=(this.ie4||this.ie5||this.ns4||this.ns6||this.konq||op);return this;}
bw=new GL_checkBrowser();if(document.layers){scrX=innerWidth;scrY=innerHeight;onresize=function(){if(scrX!=innerWidth||scrY!=innerHeight){history.go(0);}};}
function GL_getObjCss(obj){return bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?document.layers[obj]:0;};function GL_isObjCss(obj){flag=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?document.layers[obj]:0;if(flag)return true;};function GL_getObj(obj){nest="";this.el=bw.ie4?document.all[obj]:bw.ns4?eval(nest+"document."+obj):document.getElementById(obj);this.css=bw.ns4?this.el:this.el.style;this.ref=bw.ns4?this.el.document:document;this.x=(bw.ns4||bw.op5)?this.css.left:this.el.offsetLeft;this.y=(bw.ns4||bw.op5)?this.css.top:this.el.offsetTop;this.height=(bw.ie4||bw.ie5||bw.ns6||bw.op7)?this.el.offsetHeight:bw.ns4?this.ref.height:bw.op4?this.css.pixelHeight:0;this.width=(bw.ie4||bw.ie5||bw.ns6||bw.op7)?this.el.offsetWidth:bw.ns4?this.ref.width:bw.op4?this.css.pixelWidth:0;return this;}
function GL_initLayers(){if(bw.ns4)document.captureEvents(Event.MOUSEMOVE);GL_timeout_func();}
function GL_updateTime(WMid){GLV_date=new Date();GLV_timeout[WMid]=GLV_date.getTime();}
function GL_doResetAll(WMid){var resetSubMenus="";eval('resetSubMenus = GL'+WMid+'_resetSubMenus();');if(GLV_doReset[WMid]&&resetSubMenus){GLV_doReset[WMid]=false;GL_hideAll(WMid);if(GLV_onlyOnLoad[WMid])GL_restoreMenu(WMid);}}
function GL_timeout_func(){GLV_date=new Date();var stuff="";for(var a=0;a<GLV_timeout_count;a++){WMid=GLV_timeout_pointers[a];if(GLV_date.getTime()-GLV_timeout[WMid]>GLV_timeoutRef[WMid]){GL_doResetAll(WMid);}}
window.setTimeout("GL_timeout_func();",200);}
function GL_resetAll(WMid){if(!GLV_doReset[WMid]){GL_updateTime(WMid);GLV_doReset[WMid]=true;}}
function GL_mouseUp(WMid,e){GLV_doReset[WMid]=false;if(!GLV_dontHideOnMouseUp[WMid]){GL_hideAll(WMid);if(GLV_onlyOnLoad[WMid])GL_restoreMenu(WMid);}}
function GL_stopMove(WMid){GLV_menuOn[WMid]=null;}
function GL_restoreMenu(WMid){eval('GL'+WMid+'_restoreMenu()');}
function GL_doTop(WMid,id){GL_hideAll(WMid);if(GL_isObjCss(id)){GLV_menuOn[WMid]=GL_getObjCss(id);GLV_menuOn[WMid].visibility="visible";eval('GL'+WMid+'_doTop(WMid,id)');var layerObj=GL_getObj(id);GLV_curLayerHeight[WMid]=layerObj.height;GLV_curLayerWidth[WMid]=layerObj.width;GLV_curLayerX[WMid]=layerObj.x;GLV_curLayerY[WMid]=layerObj.y;GLV_currentLayer[WMid]=id;GLV_hasBeenOver[WMid]=0;}}
function GL_getMouse(e){GLV_x=(bw.ns4||bw.ns5)?e.pageX:(bw.ie4||bw.op4)?event.x:(event.x-2)+document.body.scrollLeft;GLV_y=(bw.ns4||bw.ns5)?e.pageY:(bw.ie4||bw.op4)?event.y:(event.y-2)+document.body.scrollTop;}
function GL_mouseMoveEvaluate(WMid){if(GLV_gap[WMid]&&GLV_currentLayer[WMid]!=null){if(GLV_x+GLV_gap[WMid]-GLV_curLayerX[WMid]<0||GLV_y+GLV_gap[WMid]-GLV_curLayerY[WMid]<0||GLV_curLayerX[WMid]+GLV_curLayerWidth[WMid]+GLV_gap[WMid]-GLV_x<0||GLV_curLayerY[WMid]+GLV_curLayerHeight[WMid]+GLV_gap[WMid]-GLV_y<0){if(GLV_hasBeenOver[WMid]){GLV_doReset[WMid]=true;}}else{GL_updateTime(WMid);GLV_hasBeenOver[WMid]=1;GLV_doReset[WMid]=false;}}}
function GL_hideAll(WMid){GLV_doReset[WMid]=false;GLV_currentLayer[WMid]=null;if(GL_isObjCss(GLV_lastKey[WMid])&&GL_getObjCss(GLV_lastKey[WMid])){eval('GL'+WMid+'_hideCode()');}
GLV_hasBeenOver[WMid]=0;}
function GL_iframer(WMid,id,state){if(bw.ie4||bw.ie5){ifrmObj=bw.ie4?document.all["Iframe"+WMid]:document.getElementById("Iframe"+WMid);if(state){parentObj=bw.ie4?document.all[id]:document.getElementById(id);ifrmObj.style.filter='Alpha(opacity=0)';ifrmObj.style.width=parentObj.offsetWidth+"px";ifrmObj.style.height=parentObj.offsetHeight+"px";ifrmObj.style.left=parentObj.offsetLeft+"px";ifrmObj.style.top=parentObj.offsetTop+"px";ifrmObj.style.zIndex=parentObj.style.zIndex-1;ifrmObj.style.display="";}
else ifrmObj.style.display="none";}};
// ---- 7d6a96c56c_minify_javascript_4c2cb24c19.js
GLV_curLayerWidth["af5b38"]=0;GLV_curLayerHeight["af5b38"]=0;GLV_curLayerX["af5b38"]=0;GLV_curLayerY["af5b38"]=0;GLV_menuOn["af5b38"]=null;GLV_gap["af5b38"]=1;GLV_currentLayer["af5b38"]=null;GLV_currentROitem["af5b38"]=null;GLV_hasBeenOver["af5b38"]=0;GLV_doReset["af5b38"]=false;GLV_lastKey["af5b38"]="";GLV_onlyOnLoad["af5b38"]=0;GLV_dontHideOnMouseUp["af5b38"]=0;GLV_dontFollowMouse["af5b38"]=0;GLV_date=new Date();GLV_timeout["af5b38"]=GLV_date.getTime();GLV_timeoutRef["af5b38"]=0;GLV_menuXY["af5b38"]=new Array();GLV_menuXY["af5b38"]["Menuaf5b380"]=new Array(0,0,"itemID5c54fd8f84","anchorID5c54fd8f84");GLV_menuXY["af5b38"]["Menuaf5b381"]=new Array(0,0,"itemID8edc6f5dd2","anchorID8edc6f5dd2");function GLaf5b38_getMouse(e){if(GLV_menuOn["af5b38"]!=null&&!GLV_dontFollowMouse["af5b38"]){}
GL_mouseMoveEvaluate("af5b38");}
function GLaf5b38_hideCode(){}
function GLaf5b38_doTop(WMid,id){var parentObject=GL_getObj(GLV_menuXY[WMid][id][2]);var TI_width=parentObject.width;var TI_height=parentObject.height;var anchorObj=GL_getObj(GLV_menuXY[WMid][id][3]);var TI_x=anchorObj.x;var TI_y=anchorObj.y;GLV_menuOn["af5b38"].left=(GLV_curLayerX["f489c6"]+TI_x+200)+"px";GLV_menuOn["af5b38"].top=(GLV_curLayerY["f489c6"]+TI_y+4)+"px";}
function GLaf5b38_restoreMenu(){}
function GLaf5b38_resetSubMenus(){var resetSubMenu=1;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="af5b38";GLV_timeout_count++;;
// ---- f2b1aae927_minify_javascript_09790281cd.js
GLV_curLayerWidth["0196361"]=0;GLV_curLayerHeight["0196361"]=0;GLV_curLayerX["0196361"]=0;GLV_curLayerY["0196361"]=0;GLV_menuOn["0196361"]=null;GLV_gap["0196361"]=1;GLV_currentLayer["0196361"]=null;GLV_currentROitem["0196361"]=null;GLV_hasBeenOver["0196361"]=0;GLV_doReset["0196361"]=false;GLV_lastKey["0196361"]="";GLV_onlyOnLoad["0196361"]=0;GLV_dontHideOnMouseUp["0196361"]=0;GLV_dontFollowMouse["0196361"]=0;GLV_date=new Date();GLV_timeout["0196361"]=GLV_date.getTime();GLV_timeoutRef["0196361"]=0;GLV_menuXY["0196361"]=new Array();GLV_menuXY["0196361"]["Menu01963610"]=new Array(0,0,"itemID36be423223","anchorID36be423223");GLV_menuXY["0196361"]["Menu01963611"]=new Array(0,0,"itemID38b5ea17f4","anchorID38b5ea17f4");GLV_menuXY["0196361"]["Menu01963612"]=new Array(0,0,"itemIDeb69e01370","anchorIDeb69e01370");GLV_menuXY["0196361"]["Menu01963613"]=new Array(0,0,"itemIDef08a94c80","anchorIDef08a94c80");function GL0196361_getMouse(e){if(GLV_menuOn["0196361"]!=null&&!GLV_dontFollowMouse["0196361"]){}
GL_mouseMoveEvaluate("0196361");}
function GL0196361_hideCode(){}
function GL0196361_doTop(WMid,id){GLV_menuOn["0196361"].left=(GLV_curLayerX["b405b21"]+GLV_menuXY["0196361"][id][0]-(0))+"px";}
function GL0196361_restoreMenu(){}
function GL0196361_resetSubMenus(){var resetSubMenu=1;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="0196361";GLV_timeout_count++;;
// ---- 4c888165f8_minify_javascript_cba6617aa1.js
GLV_curLayerWidth["2081a32"]=0;GLV_curLayerHeight["2081a32"]=0;GLV_curLayerX["2081a32"]=0;GLV_curLayerY["2081a32"]=0;GLV_menuOn["2081a32"]=null;GLV_gap["2081a32"]=1;GLV_currentLayer["2081a32"]=null;GLV_currentROitem["2081a32"]=null;GLV_hasBeenOver["2081a32"]=0;GLV_doReset["2081a32"]=false;GLV_lastKey["2081a32"]="";GLV_onlyOnLoad["2081a32"]=0;GLV_dontHideOnMouseUp["2081a32"]=0;GLV_dontFollowMouse["2081a32"]=0;GLV_date=new Date();GLV_timeout["2081a32"]=GLV_date.getTime();GLV_timeoutRef["2081a32"]=0;GLV_menuXY["2081a32"]=new Array();GLV_menuXY["2081a32"]["Menu2081a320"]=new Array(0,0,"itemIDce24e95867","anchorIDce24e95867");function GL2081a32_getMouse(e){if(GLV_menuOn["2081a32"]!=null&&!GLV_dontFollowMouse["2081a32"]){}
GL_mouseMoveEvaluate("2081a32");}
function GL2081a32_hideCode(){}
function GL2081a32_doTop(WMid,id){GLV_menuOn["2081a32"].left=(GLV_curLayerX["b405b21"]+GLV_menuXY["2081a32"][id][0]-(0))+"px";}
function GL2081a32_restoreMenu(){}
function GL2081a32_resetSubMenus(){var resetSubMenu=1;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="2081a32";GLV_timeout_count++;;
// ---- d1e845baf7_minify_javascript_e1a194607a.js
GLV_curLayerWidth["8859c13"]=0;GLV_curLayerHeight["8859c13"]=0;GLV_curLayerX["8859c13"]=0;GLV_curLayerY["8859c13"]=0;GLV_menuOn["8859c13"]=null;GLV_gap["8859c13"]=1;GLV_currentLayer["8859c13"]=null;GLV_currentROitem["8859c13"]=null;GLV_hasBeenOver["8859c13"]=0;GLV_doReset["8859c13"]=false;GLV_lastKey["8859c13"]="";GLV_onlyOnLoad["8859c13"]=0;GLV_dontHideOnMouseUp["8859c13"]=0;GLV_dontFollowMouse["8859c13"]=0;GLV_date=new Date();GLV_timeout["8859c13"]=GLV_date.getTime();GLV_timeoutRef["8859c13"]=0;GLV_menuXY["8859c13"]=new Array();GLV_menuXY["8859c13"]["Menu8859c130"]=new Array(0,0,"itemID5ef5fd22f6","anchorID5ef5fd22f6");GLV_menuXY["8859c13"]["Menu8859c131"]=new Array(0,0,"itemID463bc61071","anchorID463bc61071");GLV_menuXY["8859c13"]["Menu8859c132"]=new Array(0,0,"itemID7db047c4a5","anchorID7db047c4a5");GLV_menuXY["8859c13"]["Menu8859c133"]=new Array(0,0,"itemIDbac0bc3340","anchorIDbac0bc3340");GLV_menuXY["8859c13"]["Menu8859c134"]=new Array(0,0,"itemIDe8d4ac8daf","anchorIDe8d4ac8daf");GLV_menuXY["8859c13"]["Menu8859c135"]=new Array(0,0,"itemID1809ced234","anchorID1809ced234");GLV_menuXY["8859c13"]["Menu8859c136"]=new Array(0,0,"itemIDa66ce95df8","anchorIDa66ce95df8");GLV_menuXY["8859c13"]["Menu8859c137"]=new Array(0,0,"itemIDbd076c8743","anchorIDbd076c8743");function GL8859c13_getMouse(e){if(GLV_menuOn["8859c13"]!=null&&!GLV_dontFollowMouse["8859c13"]){}
GL_mouseMoveEvaluate("8859c13");}
function GL8859c13_hideCode(){}
function GL8859c13_doTop(WMid,id){GLV_menuOn["8859c13"].left=(GLV_curLayerX["b405b21"]+GLV_menuXY["8859c13"][id][0]-(0))+"px";}
function GL8859c13_restoreMenu(){}
function GL8859c13_resetSubMenus(){var resetSubMenu=1;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="8859c13";GLV_timeout_count++;;
// ---- cfc75d89c4_minify_javascript_763f0e4b3c.js
GLV_curLayerWidth["b405b21"]=0;GLV_curLayerHeight["b405b21"]=0;GLV_curLayerX["b405b21"]=0;GLV_curLayerY["b405b21"]=0;GLV_menuOn["b405b21"]=null;GLV_gap["b405b21"]=1;GLV_currentLayer["b405b21"]=null;GLV_currentROitem["b405b21"]=null;GLV_hasBeenOver["b405b21"]=0;GLV_doReset["b405b21"]=false;GLV_lastKey["b405b21"]="Menub405b212";GLV_onlyOnLoad["b405b21"]=0;GLV_dontHideOnMouseUp["b405b21"]=0;GLV_dontFollowMouse["b405b21"]=0;GLV_date=new Date();GLV_timeout["b405b21"]=GLV_date.getTime();GLV_timeoutRef["b405b21"]=0;GLV_menuXY["b405b21"]=new Array();GLV_menuXY["b405b21"]["Menub405b210"]=new Array(0,0,"itemID0f9e434229","anchorID0f9e434229");GLV_menuXY["b405b21"]["Menub405b211"]=new Array(0,0,"itemID84362a50c3","anchorID84362a50c3");GLV_menuXY["b405b21"]["Menub405b212"]=new Array(0,0,"itemID2f3b1472e1","anchorID2f3b1472e1");function GLb405b21_getMouse(e){if(GLV_menuOn["b405b21"]!=null&&!GLV_dontFollowMouse["b405b21"]){}
GL_mouseMoveEvaluate("b405b21");}
function GLb405b21_hideCode(){GL_getObjCss("Menub405b210").visibility="hidden";GL_getObjCss("Menub405b211").visibility="hidden";GL_getObjCss("Menub405b212").visibility="hidden";GL_hideAll("0196361");GL_hideAll("2081a32");GL_hideAll("8859c13");}
function GLb405b21_doTop(WMid,id){var parentObject=GL_getObj(GLV_menuXY[WMid][id][2]);var TI_width=parentObject.width;var TI_height=parentObject.height;var anchorObj=GL_getObj(GLV_menuXY[WMid][id][3]);var TI_x=anchorObj.x;var TI_y=anchorObj.y;GLV_menuOn["b405b21"].left=(GLV_curLayerX["f489c6"]+TI_x+200)+"px";GLV_menuOn["b405b21"].top=(GLV_curLayerY["f489c6"]+TI_y+4)+"px";}
function GLb405b21_restoreMenu(){GL_restoreMenu("0196361");GL_restoreMenu("2081a32");GL_restoreMenu("8859c13");}
function GLb405b21_resetSubMenus(){var resetSubMenu=1;if(!GLV_doReset["0196361"]&&GLV_currentLayer["0196361"]!=null)resetSubMenu=0;if(!GLV_doReset["2081a32"]&&GLV_currentLayer["2081a32"]!=null)resetSubMenu=0;if(!GLV_doReset["8859c13"]&&GLV_currentLayer["8859c13"]!=null)resetSubMenu=0;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="b405b21";GLV_timeout_count++;;
// ---- 584c06027b_minify_javascript_49e6697ec2.js
GLV_curLayerWidth["83ce4d5"]=0;GLV_curLayerHeight["83ce4d5"]=0;GLV_curLayerX["83ce4d5"]=0;GLV_curLayerY["83ce4d5"]=0;GLV_menuOn["83ce4d5"]=null;GLV_gap["83ce4d5"]=1;GLV_currentLayer["83ce4d5"]=null;GLV_currentROitem["83ce4d5"]=null;GLV_hasBeenOver["83ce4d5"]=0;GLV_doReset["83ce4d5"]=false;GLV_lastKey["83ce4d5"]="";GLV_onlyOnLoad["83ce4d5"]=0;GLV_dontHideOnMouseUp["83ce4d5"]=0;GLV_dontFollowMouse["83ce4d5"]=0;GLV_date=new Date();GLV_timeout["83ce4d5"]=GLV_date.getTime();GLV_timeoutRef["83ce4d5"]=0;GLV_menuXY["83ce4d5"]=new Array();GLV_menuXY["83ce4d5"]["Menu83ce4d50"]=new Array(0,0,"itemID28e6609008","anchorID28e6609008");GLV_menuXY["83ce4d5"]["Menu83ce4d51"]=new Array(0,0,"itemID8d26a86044","anchorID8d26a86044");GLV_menuXY["83ce4d5"]["Menu83ce4d52"]=new Array(0,0,"itemIDcf4f74bf15","anchorIDcf4f74bf15");GLV_menuXY["83ce4d5"]["Menu83ce4d53"]=new Array(0,0,"itemID0f0705787a","anchorID0f0705787a");GLV_menuXY["83ce4d5"]["Menu83ce4d54"]=new Array(0,0,"itemID6523d97444","anchorID6523d97444");GLV_menuXY["83ce4d5"]["Menu83ce4d55"]=new Array(0,0,"itemID087f1aef16","anchorID087f1aef16");function GL83ce4d5_getMouse(e){if(GLV_menuOn["83ce4d5"]!=null&&!GLV_dontFollowMouse["83ce4d5"]){}
GL_mouseMoveEvaluate("83ce4d5");}
function GL83ce4d5_hideCode(){}
function GL83ce4d5_doTop(WMid,id){var parentObject=GL_getObj(GLV_menuXY[WMid][id][2]);var TI_width=parentObject.width;var TI_height=parentObject.height;var anchorObj=GL_getObj(GLV_menuXY[WMid][id][3]);var TI_x=anchorObj.x;var TI_y=anchorObj.y;GLV_menuOn["83ce4d5"].left=(GLV_curLayerX["f489c6"]+TI_x+200)+"px";GLV_menuOn["83ce4d5"].top=(GLV_curLayerY["f489c6"]+TI_y+4)+"px";}
function GL83ce4d5_restoreMenu(){}
function GL83ce4d5_resetSubMenus(){var resetSubMenu=1;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="83ce4d5";GLV_timeout_count++;;
// ---- 36c6c61534_minify_javascript_9a8634c9bc.js
GLV_curLayerWidth["39fa1f6"]=0;GLV_curLayerHeight["39fa1f6"]=0;GLV_curLayerX["39fa1f6"]=0;GLV_curLayerY["39fa1f6"]=0;GLV_menuOn["39fa1f6"]=null;GLV_gap["39fa1f6"]=1;GLV_currentLayer["39fa1f6"]=null;GLV_currentROitem["39fa1f6"]=null;GLV_hasBeenOver["39fa1f6"]=0;GLV_doReset["39fa1f6"]=false;GLV_lastKey["39fa1f6"]="";GLV_onlyOnLoad["39fa1f6"]=0;GLV_dontHideOnMouseUp["39fa1f6"]=0;GLV_dontFollowMouse["39fa1f6"]=0;GLV_date=new Date();GLV_timeout["39fa1f6"]=GLV_date.getTime();GLV_timeoutRef["39fa1f6"]=0;GLV_menuXY["39fa1f6"]=new Array();GLV_menuXY["39fa1f6"]["Menu39fa1f60"]=new Array(0,0,"itemIDdd24592997","anchorIDdd24592997");function GL39fa1f6_getMouse(e){if(GLV_menuOn["39fa1f6"]!=null&&!GLV_dontFollowMouse["39fa1f6"]){}
GL_mouseMoveEvaluate("39fa1f6");}
function GL39fa1f6_hideCode(){}
function GL39fa1f6_doTop(WMid,id){var parentObject=GL_getObj(GLV_menuXY[WMid][id][2]);var TI_width=parentObject.width;var TI_height=parentObject.height;var anchorObj=GL_getObj(GLV_menuXY[WMid][id][3]);var TI_x=anchorObj.x;var TI_y=anchorObj.y;GLV_menuOn["39fa1f6"].left=(GLV_curLayerX["f489c6"]+TI_x+200)+"px";GLV_menuOn["39fa1f6"].top=(GLV_curLayerY["f489c6"]+TI_y+4)+"px";}
function GL39fa1f6_restoreMenu(){}
function GL39fa1f6_resetSubMenus(){var resetSubMenu=1;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="39fa1f6";GLV_timeout_count++;;
// ---- 490ae002d8_minify_javascript_096e684f12.js
GLV_curLayerWidth["f489c6"]=0;GLV_curLayerHeight["f489c6"]=0;GLV_curLayerX["f489c6"]=0;GLV_curLayerY["f489c6"]=0;GLV_menuOn["f489c6"]=null;GLV_gap["f489c6"]=1;GLV_currentLayer["f489c6"]=null;GLV_currentROitem["f489c6"]=null;GLV_hasBeenOver["f489c6"]=0;GLV_doReset["f489c6"]=false;GLV_lastKey["f489c6"]="Menuf489c65";GLV_onlyOnLoad["f489c6"]=0;GLV_dontHideOnMouseUp["f489c6"]=0;GLV_dontFollowMouse["f489c6"]=0;GLV_date=new Date();GLV_timeout["f489c6"]=GLV_date.getTime();GLV_timeoutRef["f489c6"]=70;GLV_menuXY["f489c6"]=new Array();GLV_menuXY["f489c6"]["Menuf489c60"]=new Array(0,0,"itemID3530260dcc","anchorID3530260dcc");GLV_menuXY["f489c6"]["Menuf489c61"]=new Array(0,0,"itemID017ea27244","anchorID017ea27244");GLV_menuXY["f489c6"]["Menuf489c62"]=new Array(0,0,"itemIDf4bbf8b57b","anchorIDf4bbf8b57b");GLV_menuXY["f489c6"]["Menuf489c63"]=new Array(0,0,"itemID06fe430576","anchorID06fe430576");GLV_menuXY["f489c6"]["Menuf489c64"]=new Array(0,0,"itemIDfe6fec6cbf","anchorIDfe6fec6cbf");GLV_menuXY["f489c6"]["Menuf489c65"]=new Array(0,0,"itemID2ac6c5c1a5","anchorID2ac6c5c1a5");function GLf489c6_getMouse(e){if(GLV_menuOn["f489c6"]!=null&&!GLV_dontFollowMouse["f489c6"]){}
GL_mouseMoveEvaluate("f489c6");}
function GLf489c6_hideCode(){GL_getObjCss("Menuf489c60").visibility="hidden";GL_getObjCss("Menuf489c61").visibility="hidden";GL_getObjCss("Menuf489c63").visibility="hidden";GL_getObjCss("Menuf489c65").visibility="hidden";GL_hideAll("af5b38");GL_hideAll("b405b21");GL_hideAll("0196361");GL_hideAll("2081a32");GL_hideAll("8859c13");GL_hideAll("83ce4d5");GL_hideAll("39fa1f6");}
function GLf489c6_doTop(WMid,id){var parentObject=GL_getObj(GLV_menuXY[WMid][id][2]);var TI_width=parentObject.width;var TI_height=parentObject.height;var anchorObj=GL_getObj(GLV_menuXY[WMid][id][3]);var TI_x=anchorObj.x;var TI_y=anchorObj.y;GLV_menuOn["f489c6"].left=(TI_x+0)+"px";GLV_menuOn["f489c6"].top=(TI_y+0)+"px";}
function GLf489c6_restoreMenu(){GL_restoreMenu("af5b38");GL_restoreMenu("b405b21");GL_restoreMenu("0196361");GL_restoreMenu("2081a32");GL_restoreMenu("8859c13");GL_restoreMenu("83ce4d5");GL_restoreMenu("39fa1f6");}
function GLf489c6_resetSubMenus(){var resetSubMenu=1;if(!GLV_doReset["af5b38"]&&GLV_currentLayer["af5b38"]!=null)resetSubMenu=0;if(!GLV_doReset["b405b21"]&&GLV_currentLayer["b405b21"]!=null)resetSubMenu=0;if(!GLV_doReset["0196361"]&&GLV_currentLayer["0196361"]!=null)resetSubMenu=0;if(!GLV_doReset["2081a32"]&&GLV_currentLayer["2081a32"]!=null)resetSubMenu=0;if(!GLV_doReset["8859c13"]&&GLV_currentLayer["8859c13"]!=null)resetSubMenu=0;if(!GLV_doReset["83ce4d5"]&&GLV_currentLayer["83ce4d5"]!=null)resetSubMenu=0;if(!GLV_doReset["39fa1f6"]&&GLV_currentLayer["39fa1f6"]!=null)resetSubMenu=0;return resetSubMenu;}
GLV_timeout_pointers[GLV_timeout_count]="f489c6";GLV_timeout_count++;;

