var GB_CURRENT=null;
GB_hide=function(cb){
GB_CURRENT.hide(cb);
};
GreyBox=new AJS.Class({init:function(_2){
this.use_fx=AJS.fx;
this.type="page";
this.overlay_click_close=false;
this.salt=0;
this.root_dir=GB_ROOT_DIR;
this.callback_fns=[];
this.reload_on_close=false;
this.src_loader=this.root_dir+"loader_frame.html";
var _3=window.location.hostname.indexOf("www");
var _4=this.src_loader.indexOf("www");
if(_3!=-1&&_4==-1){
this.src_loader=this.src_loader.replace("://","://www.");
}
if(_3==-1&&_4!=-1){
this.src_loader=this.src_loader.replace("://www.","://");
}
this.show_loading=true;
AJS.update(this,_2);
},addCallback:function(fn){
if(fn){
this.callback_fns.push(fn);
}
},show:function(_6){
GB_CURRENT=this;
this.url=_6;
var _7=[AJS.$bytc("object"),AJS.$bytc("select")];
AJS.map(AJS.flattenList(_7),function(_8){
_8.style.visibility="hidden";
});
this.createElements();
return false;
},hide:function(cb){
var me=this;
AJS.callLater(function(){
var _b=me.callback_fns;
if(_b!=[]){
AJS.map(_b,function(fn){
fn();
});
}
me.onHide();
if(me.use_fx){
var _d=me.overlay;
AJS.fx.fadeOut(me.overlay,{onComplete:function(){
AJS.removeElement(_d);
_d=null;
},duration:300});
AJS.removeElement(me.g_window);
}else{
AJS.removeElement(me.g_window,me.overlay);
}
me.removeFrame();
AJS.REV(window,"scroll",_GB_setOverlayDimension);
AJS.REV(window,"resize",_GB_update);
var _e=[AJS.$bytc("object"),AJS.$bytc("select")];
AJS.map(AJS.flattenList(_e),function(_f){
_f.style.visibility="visible";
});
GB_CURRENT=null;
if(me.reload_on_close){
window.location.reload();
}
if(AJS.isFunction(cb)){
cb();
}
},10);
},update:function(){
this.setOverlayDimension();
this.setFrameSize();
this.setWindowPosition();
},createElements:function(){
this.initOverlay();
this.g_window=AJS.DIV({"id":"GB_window"});
AJS.hideElement(this.g_window);
AJS.getBody().insertBefore(this.g_window,this.overlay.nextSibling);
this.initFrame();
this.initHook();
this.update();
var me=this;
if(this.use_fx){
AJS.fx.fadeIn(this.overlay,{duration:300,to:0.7,onComplete:function(){
me.onShow();
AJS.showElement(me.g_window);
me.startLoading();
}});
}else{
AJS.setOpacity(this.overlay,0.7);
AJS.showElement(this.g_window);
this.onShow();
this.startLoading();
}
AJS.AEV(window,"scroll",_GB_setOverlayDimension);
AJS.AEV(window,"resize",_GB_update);
},removeFrame:function(){
try{
AJS.removeElement(this.iframe);
}
catch(e){
}
this.iframe=null;
},startLoading:function(){
this.iframe.src=this.src_loader+"?s="+this.salt++;
AJS.showElement(this.iframe);
},setOverlayDimension:function(){
var _11=AJS.getWindowSize();
if(AJS.isMozilla()||AJS.isOpera()){
AJS.setWidth(this.overlay,"100%");
}else{
AJS.setWidth(this.overlay,_11.w);
}
var _12=Math.max(AJS.getScrollTop()+_11.h,AJS.getScrollTop()+this.height);
if(_12<AJS.getScrollTop()){
AJS.setHeight(this.overlay,_12);
}else{
AJS.setHeight(this.overlay,AJS.getScrollTop()+_11.h);
}
},initOverlay:function(){
this.overlay=AJS.DIV({"id":"GB_overlay"});
if(this.overlay_click_close){
AJS.AEV(this.overlay,"click",GB_hide);
}
AJS.setOpacity(this.overlay,0);
AJS.getBody().insertBefore(this.overlay,AJS.getBody().firstChild);
},initFrame:function(){
if(!this.iframe){
var d={"name":"GB_frame","class":"GB_frame","frameBorder":0};
if(AJS.isIe()){
d.src="javascript:false;document.write(\"\");";
}
this.iframe=AJS.IFRAME(d);
this.middle_cnt=AJS.DIV({"class":"content"},this.iframe);
this.top_cnt=AJS.DIV();
this.bottom_cnt=AJS.DIV();
AJS.ACN(this.g_window,this.top_cnt,this.middle_cnt,this.bottom_cnt);
}
},onHide:function(){
},onShow:function(){
},setFrameSize:function(){
},setWindowPosition:function(){
},initHook:function(){
}});
_GB_update=function(){
if(GB_CURRENT){
GB_CURRENT.update();
}
};
_GB_setOverlayDimension=function(){
if(GB_CURRENT){
GB_CURRENT.setOverlayDimension();
}
};
AJS.preloadImages(GB_ROOT_DIR+"indicator.gif");
script_loaded=true;
var GB_SETS={};
function decoGreyboxLinks(){
var as=AJS.$bytc("a");
AJS.map(as,function(a){
if(a.getAttribute("href")&&a.getAttribute("rel")){
var rel=a.getAttribute("rel");
if(rel.indexOf("gb_")==0){
var _17=rel.match(/\w+/)[0];
var _18=rel.match(/\[(.*)\]/)[1];
var _19=0;
var _1a={"caption":a.title||"","url":a.href};
if(_17=="gb_pageset"||_17=="gb_imageset"){
if(!GB_SETS[_18]){
GB_SETS[_18]=[];
}
GB_SETS[_18].push(_1a);
_19=GB_SETS[_18].length;
}
if(_17=="gb_pageset"){
a.onclick=function(){
GB_showFullScreenSet(GB_SETS[_18],_19);
return false;
};
}
if(_17=="gb_imageset"){
a.onclick=function(){
GB_showImageSet(GB_SETS[_18],_19);
return false;
};
}
if(_17=="gb_image"){
a.onclick=function(){
GB_showImage(_1a.caption,_1a.url);
return false;
};
}
if(_17=="gb_page"){
a.onclick=function(){
var sp=_18.split(/, ?/);
GB_show(_1a.caption,_1a.url,parseInt(sp[1]),parseInt(sp[0]));
return false;
};
}
if(_17=="gb_page_fs"){
a.onclick=function(){
GB_showFullScreen(_1a.caption,_1a.url);
return false;
};
}
if(_17=="gb_page_center"){
a.onclick=function(){
var sp=_18.split(/, ?/);
GB_showCenter(_1a.caption,_1a.url,parseInt(sp[1]),parseInt(sp[0]));
return false;
};
}
}
}
});
}
AJS.AEV(window,"load",decoGreyboxLinks);
GB_showImage=function(_1d,url,_1f){
var _20={width:300,height:300,type:"image",fullscreen:false,center_win:true,caption:_1d,callback_fn:_1f};
var win=new GB_Gallery(_20);
return win.show(url);
};
GB_showPage=function(_22,url,_24){
var _25={type:"page",caption:_22,callback_fn:_24,fullscreen:true,center_win:false};
var win=new GB_Gallery(_25);
return win.show(url);
};
GB_Gallery=GreyBox.extend({init:function(_27){
this.parent({});
this.img_close=this.root_dir+"g_close.gif";
AJS.update(this,_27);
this.addCallback(this.callback_fn);
},initHook:function(){
AJS.addClass(this.g_window,"GB_Gallery");
var _28=AJS.DIV({"class":"inner"});
this.header=AJS.DIV({"class":"GB_header"},_28);
AJS.setOpacity(this.header,0);
AJS.getBody().insertBefore(this.header,this.overlay.nextSibling);
var _29=AJS.TD({"id":"GB_caption","class":"caption","width":"40%"},this.caption);
var _2a=AJS.TD({"id":"GB_middle","class":"middle","width":"20%"});
var _2b=AJS.IMG({"src":this.img_close});
AJS.AEV(_2b,"click",GB_hide);
var _2c=AJS.TD({"class":"close","width":"40%"},_2b);
var _2d=AJS.TBODY(AJS.TR(_29,_2a,_2c));
var _2e=AJS.TABLE({"cellspacing":"0","cellpadding":0,"border":0},_2d);
AJS.ACN(_28,_2e);
if(this.fullscreen){
AJS.AEV(window,"scroll",AJS.$b(this.setWindowPosition,this));
}else{
AJS.AEV(window,"scroll",AJS.$b(this._setHeaderPos,this));
}
},setFrameSize:function(){
var _2f=this.overlay.offsetWidth;
var _30=AJS.getWindowSize();
if(this.fullscreen){
this.width=_2f-40;
this.height=_30.h-80;
}
AJS.setWidth(this.iframe,this.width);
AJS.setHeight(this.iframe,this.height);
AJS.setWidth(this.header,_2f);
},_setHeaderPos:function(){
AJS.setTop(this.header,AJS.getScrollTop()+10);
},setWindowPosition:function(){
var _31=this.overlay.offsetWidth;
var _32=AJS.getWindowSize();
AJS.setLeft(this.g_window,((_31-50-this.width)/2));
var _33=AJS.getScrollTop()+55;
if(!this.center_win){
AJS.setTop(this.g_window,_33);
}else{
var fl=((_32.h-this.height)/2)+20+AJS.getScrollTop();
if(fl<0){
fl=0;
}
if(_33>fl){
fl=_33;
}
AJS.setTop(this.g_window,fl);
}
this._setHeaderPos();
},onHide:function(){
AJS.removeElement(this.header);
AJS.removeClass(this.g_window,"GB_Gallery");
},onShow:function(){
if(this.use_fx){
AJS.fx.fadeIn(this.header,{to:1});
}else{
AJS.setOpacity(this.header,1);
}
}});
AJS.preloadImages(GB_ROOT_DIR+"g_close.gif");
GB_showFullScreenSet=function(set,_36,_37){
var _38={type:"page",fullscreen:true,center_win:false};
var _39=new GB_Sets(_38,set);
_39.addCallback(_37);
_39.showSet(_36-1);
return false;
};
GB_showImageSet=function(set,_3b,_3c,_3d){
var _3e={type:"image",fullscreen:false,center_win:true,width:300,height:300};
var _3f=new GB_Sets(_3e,set,_3c);
_3f.addCallback(_3d);
_3f.showSet(_3b-1);
return false;
};
GB_Sets=GB_Gallery.extend({init:function(_40,set,_42){
this.timerOn=_42||false;
this.timerDelay=6;
this.timerLoop=0;
this.parent(_40);
if(!this.img_spacer_5){
this.img_spacer_5=this.root_dir+"spacer_5.gif";
}
if(!this.img_spacer_10){
this.img_spacer_10=this.root_dir+"spacer_10.gif";
}
if(!this.img_spacer_20){
this.img_spacer_20=this.root_dir+"spacer_20.gif";
}
if(!this.img_next){
this.img_next=this.root_dir+"next.gif";
}
if(!this.img_prev){
this.img_prev=this.root_dir+"prev.gif";
}
if(!this.img_next_opac){
this.img_next_opac=this.root_dir+"next_opac.gif";
}
if(!this.img_prev_opac){
this.img_prev_opac=this.root_dir+"prev_opac.gif";
}
if(!this.img_play){
this.img_play=this.root_dir+"play.gif";
}
if(!this.img_pause){
this.img_pause=this.root_dir+"pause.gif";
}
if(!this.img_less){
this.img_less=this.root_dir+"less.gif";
}
if(!this.img_more){
this.img_more=this.root_dir+"more.gif";
}
if(!this.img_less_opac){
this.img_less_opac=this.root_dir+"less_opac.gif";
}
if(!this.img_more_opac){
this.img_more_opac=this.root_dir+"more_opac.gif";
}
if(!this.img_speeds){
this.img_speeds=new Array();
for(i=1;i<=12;i++){
this.img_speeds.push(this.root_dir+"speed_"+i+".gif");
}
}
if(!this.img_speeds_opac){
this.img_speeds_opac=new Array();
for(i=1;i<=12;i++){
this.img_speeds_opac.push(this.root_dir+"speed_"+i+"_opac.gif");
}
}
this.current_set=set;
},showSet:function(_43){
this.current_index=_43;
var _44=this.current_set[this.current_index];
this.show(_44.url);
this._setCaption(_44.caption);
this.btn_spacer1=AJS.IMG({src:this.img_spacer_10});
this.btn_spacer2=AJS.IMG({src:this.img_spacer_10});
this.btn_spacer3=AJS.IMG({src:this.img_spacer_20});
this.btn_spacer4=AJS.IMG({src:this.img_spacer_20});
this.btn_spacer5=AJS.IMG({src:this.img_spacer_5});
this.btn_spacer6=AJS.IMG({src:this.img_spacer_5});
this.btn_prev=AJS.IMG({"class":"pointer",src:this.img_prev});
this.btn_next=AJS.IMG({"class":"pointer",src:this.img_next});
this.btn_playPause=AJS.IMG({"class":"pointer",src:this.img_play});
this.btn_less=AJS.IMG({"class":"pointer",src:this.img_less});
this.btn_speeds=new Array();
for(i=1;i<=12;i++){
this.btn_speeds.push(AJS.IMG({"class":"",src:this.img_speeds[i-1]}));
}
this.btn_more=AJS.IMG({"class":"pointer",src:this.img_more});
AJS.AEV(this.btn_prev,"click",AJS.$b(this.switchPrev,this));
AJS.AEV(this.btn_next,"click",AJS.$b(this.switchNext,this));
AJS.AEV(this.btn_playPause,"click",AJS.$b(this.timerPlayPause,this));
AJS.AEV(this.btn_less,"click",AJS.$b(this.timerDown,this));
AJS.AEV(this.btn_more,"click",AJS.$b(this.timerUp,this));
AJS.AEV(window.document,"keypress",AJS.$b(this.GB_keypress,this));
GB_STATUS=AJS.SPAN({"class":"GB_navStatus"});
AJS.ACN(AJS.$("GB_middle"),this.btn_prev,this.btn_spacer1,GB_STATUS,this.btn_spacer2,this.btn_next,this.btn_spacer3,this.btn_playPause,this.btn_spacer4,this.btn_less,this.btn_spacer5,this.btn_speeds[0],this.btn_speeds[1],this.btn_speeds[2],this.btn_speeds[3],this.btn_speeds[4],this.btn_speeds[5],this.btn_speeds[6],this.btn_speeds[7],this.btn_speeds[8],this.btn_speeds[9],this.btn_speeds[10],this.btn_speeds[11],this.btn_spacer6,this.btn_more);
this.updateStatus();
myId=this;
this.timer=setInterval(function(){
myId.autoSwitchNext();
},500);
GB_CURRENT.addCallback(function(){
clearInterval(myId.timer);
});
},updateStatus:function(){
AJS.setHTML(GB_STATUS,(this.current_index+1)+" / "+this.current_set.length);
if(this.current_index==0){
AJS.removeClass(this.btn_prev,"pointer");
this.btn_prev.src=this.img_prev_opac;
}else{
this.btn_prev.src=this.img_prev;
AJS.addClass(this.btn_prev,"pointer");
}
if(this.current_index==this.current_set.length-1){
AJS.removeClass(this.btn_next,"pointer");
this.btn_next.src=this.img_next_opac;
}else{
this.btn_next.src=this.img_next;
AJS.addClass(this.btn_next,"pointer");
}
if(this.timerOn){
this.btn_playPause.src=this.img_pause;
}else{
this.btn_playPause.src=this.img_play;
}
if(this.timerDelay==0||!this.timerOn){
AJS.removeClass(this.btn_less,"pointer");
this.btn_less.src=this.img_less_opac;
}else{
this.btn_less.src=this.img_less;
AJS.addClass(this.btn_less,"pointer");
}
if(this.timerDelay==12||!this.timerOn){
AJS.removeClass(this.btn_more,"pointer");
this.btn_more.src=this.img_more_opac;
}else{
this.btn_more.src=this.img_more;
AJS.addClass(this.btn_more,"pointer");
}
for(i=1;i<=12;i++){
if(this.timerDelay<i||!this.timerOn){
this.btn_speeds[i-1].src=this.img_speeds_opac[i-1];
}else{
this.btn_speeds[i-1].src=this.img_speeds[i-1];
}
}
},_setCaption:function(_45){
AJS.setHTML(AJS.$("GB_caption"),_45);
},updateFrame:function(){
var _46=this.current_set[this.current_index];
this._setCaption(_46.caption);
this.url=_46.url;
this.startLoading();
},timerPlayPause:function(){
this.timerOn=this.timerOn?false:true;
this.updateStatus();
},timerUp:function(){
if(this.timerDelay!=12){
this.timerDelay++;
this.updateStatus();
}
},timerDown:function(){
if(this.timerDelay!=0){
this.timerDelay--;
this.timerLoop=0;
this.updateStatus();
}
},switchPrev:function(){
if(this.current_index!=0){
this.current_index--;
this.updateFrame();
this.updateStatus();
}
},autoSwitchNext:function(){
if(!this.timerOn){
return;
}
this.timerLoop++;
if(this.timerLoop>12-this.timerDelay){
if(this.current_index!=this.current_set.length-1){
this.current_index++;
this.updateFrame();
this.updateStatus();
}else{
this.current_index=0;
this.updateFrame();
this.updateStatus();
}
this.timerLoop=0;
}
},switchNext:function(){
if(this.current_index!=this.current_set.length-1){
this.current_index++;
this.updateFrame();
this.updateStatus();
}
},GB_keypress:function(e){
if((e.key==27)||(e.key==81)||(e.key==113)){
GB_CURRENT.hide();
}else{
if((e.key==52)||(e.key==37)||(e.key==112)||(e.key==80)||(e.key==33)){
this.switchPrev();
}else{
if((e.key==54)||(e.key==39)||(e.key==32)||(e.key==66)||(e.key==98)||(e.key==110)||(e.key==78)||(e.key==34)){
this.switchNext();
}else{
if(e.key==13){
this.timerPlayPause();
}else{
if(e.key==45){
this.timerDown();
}else{
if(e.key==43){
this.timerUp();
}
}
}
}
}
}
}});
AJS.AEV(window,"load",function(){
AJS.preloadImages(GB_ROOT_DIR+"next.gif",GB_ROOT_DIR+"prev.gif",GB_ROOT_DIR+"play.gif",GB_ROOT_DIR+"pause.gif",GB_ROOT_DIR+"g_close.gif",GB_ROOT_DIR+"less.gif",GB_ROOT_DIR+"less_opac.gif",GB_ROOT_DIR+"more.gif",GB_ROOT_DIR+"more_opac.gif",GB_ROOT_DIR+"next_opac.gif",GB_ROOT_DIR+"prev_opac.gif",GB_ROOT_DIR+"spacer_10.gif",GB_ROOT_DIR+"spacer_20.gif",GB_ROOT_DIR+"spacer_5.gif",GB_ROOT_DIR+"speed_1.gif",GB_ROOT_DIR+"speed_10.gif",GB_ROOT_DIR+"speed_10_opac.gif",GB_ROOT_DIR+"speed_11.gif",GB_ROOT_DIR+"speed_11_opac.gif",GB_ROOT_DIR+"speed_12.gif",GB_ROOT_DIR+"speed_12_opac.gif",GB_ROOT_DIR+"speed_1_opac.gif",GB_ROOT_DIR+"speed_2.gif",GB_ROOT_DIR+"speed_2_opac.gif",GB_ROOT_DIR+"speed_3.gif",GB_ROOT_DIR+"speed_3_opac.gif",GB_ROOT_DIR+"speed_4.gif",GB_ROOT_DIR+"speed_4_opac.gif",GB_ROOT_DIR+"speed_5.gif",GB_ROOT_DIR+"speed_5_opac.gif",GB_ROOT_DIR+"speed_6.gif",GB_ROOT_DIR+"speed_6_opac.gif",GB_ROOT_DIR+"speed_7.gif",GB_ROOT_DIR+"speed_7_opac.gif",GB_ROOT_DIR+"speed_8.gif",GB_ROOT_DIR+"speed_8_opac.gif",GB_ROOT_DIR+"speed_9.gif",GB_ROOT_DIR+"speed_9_opac.gif");
});
GB_show=function(_48,url,_4a,_4b,_4c){
var _4d={caption:_48,height:_4a||500,width:_4b||500,fullscreen:false,callback_fn:_4c};
var win=new GB_Window(_4d);
return win.show(url);
};
GB_showCenter=function(_4f,url,_51,_52,_53){
var _54={caption:_4f,center_win:true,height:_51||500,width:_52||500,fullscreen:false,callback_fn:_53};
var win=new GB_Window(_54);
return win.show(url);
};
GB_showFullScreen=function(_56,url,_58){
var _59={caption:_56,fullscreen:true,callback_fn:_58};
var win=new GB_Window(_59);
return win.show(url);
};
GB_Window=GreyBox.extend({init:function(_5b){
this.parent({});
this.img_header=this.root_dir+"header_bg.gif";
this.img_close=this.root_dir+"w_close.gif";
this.show_close_img=true;
AJS.update(this,_5b);
this.addCallback(this.callback_fn);
},initHook:function(){
AJS.addClass(this.g_window,"GB_Window");
this.header=AJS.TABLE({"class":"header"});
this.header.style.backgroundImage="url("+this.img_header+")";
var _5c=AJS.TD({"class":"caption"},this.caption);
var _5d=AJS.TD({"class":"close"});
if(this.show_close_img){
var _5e=AJS.IMG({"src":this.img_close});
var _5f=AJS.SPAN("Close");
var btn=AJS.DIV(_5e,_5f);
AJS.AEV([_5e,_5f],"mouseover",function(){
AJS.addClass(_5f,"on");
});
AJS.AEV([_5e,_5f],"mouseout",function(){
AJS.removeClass(_5f,"on");
});
AJS.AEV([_5e,_5f],"mousedown",function(){
AJS.addClass(_5f,"click");
});
AJS.AEV([_5e,_5f],"mouseup",function(){
AJS.removeClass(_5f,"click");
});
AJS.AEV([_5e,_5f],"click",GB_hide);
AJS.ACN(_5d,btn);
}
tbody_header=AJS.TBODY();
AJS.ACN(tbody_header,AJS.TR(_5c,_5d));
AJS.ACN(this.header,tbody_header);
AJS.ACN(this.top_cnt,this.header);
if(this.fullscreen){
AJS.AEV(window,"scroll",AJS.$b(this.setWindowPosition,this));
}
},setFrameSize:function(){
if(this.fullscreen){
var _61=AJS.getWindowSize();
overlay_h=_61.h;
this.width=Math.round(this.overlay.offsetWidth-(this.overlay.offsetWidth/100)*10);
this.height=Math.round(overlay_h-(overlay_h/100)*10);
}
AJS.setWidth(this.header,this.width+6);
AJS.setWidth(this.iframe,this.width);
AJS.setHeight(this.iframe,this.height);
},setWindowPosition:function(){
var _62=AJS.getWindowSize();
AJS.setLeft(this.g_window,((_62.w-this.width)/2)-13);
if(!this.center_win){
AJS.setTop(this.g_window,AJS.getScrollTop());
}else{
var fl=((_62.h-this.height)/2)-20+AJS.getScrollTop();
if(fl<0){
fl=0;
}
AJS.setTop(this.g_window,fl);
}
}});
AJS.preloadImages(GB_ROOT_DIR+"w_close.gif",GB_ROOT_DIR+"header_bg.gif");


script_loaded=true;
