var GB_CURRENT=null;GB_hide=function(b){GB_CURRENT.hide(b)};GreyBox=new AJS.Class({init:function(f){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 d=window.location.hostname.indexOf("www");var e=this.src_loader.indexOf("www");if(d!=-1&&e==-1){this.src_loader=this.src_loader.replace("://","://www.")}if(d==-1&&e!=-1){this.src_loader=this.src_loader.replace("://www.","://")}this.show_loading=true;AJS.update(this,f)},addCallback:function(b){if(b){this.callback_fns.push(b)}},show:function(d){GB_CURRENT=this;this.url=d;var c=[AJS.$bytc("object"),AJS.$bytc("select")];AJS.map(AJS.flattenList(c),function(a){a.style.visibility="hidden"});this.createElements();return false},hide:function(d){var c=this;setTimeout(function(){var b=c.callback_fns;if(b!=[]){AJS.map(b,function(e){e()})}c.onHide();if(c.use_fx){var a=c.overlay;AJS.fx.fadeOut(c.overlay,{onComplete:function(){AJS.removeElement(a);a=null},duration:300});AJS.removeElement(c.g_window)}else{AJS.removeElement(c.g_window,c.overlay)}c.removeFrame();AJS.REV(window,"scroll",_GB_setOverlayDimension);AJS.REV(window,"resize",_GB_update);var f=[AJS.$bytc("object"),AJS.$bytc("select")];AJS.map(AJS.flattenList(f),function(e){e.style.visibility="visible"});GB_CURRENT=null;if(c.reload_on_close){window.location.reload()}if(AJS.isFunction(d)){d()}},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 b=this;if(this.use_fx){AJS.fx.fadeIn(this.overlay,{duration:300,to:0.7,onComplete:function(){b.onShow();AJS.showElement(b.g_window);b.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(b){}this.iframe=null},startLoading:function(){this.iframe.src=this.src_loader+"?s="+this.salt++;AJS.showElement(this.iframe)},setOverlayDimension:function(){var c=AJS.getWindowSize();if(AJS.isMozilla()||AJS.isOpera()){AJS.setWidth(this.overlay,"100%")}else{AJS.setWidth(this.overlay,c.w)}var d=Math.max(AJS.getScrollTop()+c.h,AJS.getScrollTop()+this.height);if(d<AJS.getScrollTop()){AJS.setHeight(this.overlay,d)}else{AJS.setHeight(this.overlay,AJS.getScrollTop()+c.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 b={name:"GB_frame","class":"GB_frame",frameBorder:0};if(AJS.isIe()){b.src='javascript:false;document.write("");'}this.iframe=AJS.IFRAME(b);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 b=AJS.$bytc("a");AJS.map(b,function(l){if(l.getAttribute("href")&&l.getAttribute("rel")){var a=l.getAttribute("rel");if(a.indexOf("gb_")==0){var i=a.match(/\w+/)[0];var j=a.match(/\[(.*)\]/)[1];var k=0;var h={caption:l.title||"",url:l.href};if(i=="gb_pageset"||i=="gb_imageset"){if(!GB_SETS[j]){GB_SETS[j]=[]}GB_SETS[j].push(h);k=GB_SETS[j].length}if(i=="gb_pageset"){l.onclick=function(){GB_showFullScreenSet(GB_SETS[j],k);return false}}if(i=="gb_imageset"){l.onclick=function(){GB_showImageSet(GB_SETS[j],k);return false}}if(i=="gb_image"){l.onclick=function(){GB_showImage(h.caption,h.url);return false}}if(i=="gb_page"){l.onclick=function(){var c=j.split(/, ?/);GB_show(h.caption,h.url,parseInt(c[1]),parseInt(c[0]));return false}}if(i=="gb_page_fs"){l.onclick=function(){GB_showFullScreen(h.caption,h.url);return false}}if(i=="gb_page_center"){l.onclick=function(){var c=j.split(/, ?/);GB_showCenter(h.caption,h.url,parseInt(c[1]),parseInt(c[0]));return false}}}}})}AJS.AEV(window,"load",decoGreyboxLinks);GB_showImage=function(g,j,h){var f={width:300,height:300,type:"image",fullscreen:false,center_win:true,caption:g,callback_fn:h};var i=new GB_Gallery(f);return i.show(j)};GB_showPage=function(g,j,h){var f={type:"page",caption:g,callback_fn:h,fullscreen:true,center_win:false};var i=new GB_Gallery(f);return i.show(j)};GB_Gallery=GreyBox.extend({init:function(b){this.parent({});this.img_close=this.root_dir+"g_close.gif";AJS.update(this,b);this.addCallback(this.callback_fn)},initHook:function(){AJS.addClass(this.g_window,"GB_Gallery");var n=AJS.DIV({"class":"inner"});this.header=AJS.DIV({"class":"GB_header"},n);AJS.setOpacity(this.header,0);AJS.getBody().insertBefore(this.header,this.overlay.nextSibling);var l=AJS.TD({id:"GB_caption","class":"caption",width:"40%"},this.caption);var h=AJS.TD({id:"GB_middle","class":"middle",width:"20%"});var k=AJS.IMG({src:this.img_close});AJS.AEV(k,"click",GB_hide);var i=AJS.TD({"class":"close",width:"40%"},k);var m=AJS.TBODY(AJS.TR(l,h,i));var j=AJS.TABLE({cellspacing:"0",cellpadding:0,border:0},m);AJS.ACN(n,j);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 c=this.overlay.offsetWidth;var d=AJS.getWindowSize();if(this.fullscreen){this.width=c-40;this.height=d.h-80}AJS.setWidth(this.iframe,this.width);AJS.setHeight(this.iframe,this.height);AJS.setWidth(this.header,c)},_setHeaderPos:function(){AJS.setTop(this.header,AJS.getScrollTop()+10)},setWindowPosition:function(){var h=this.overlay.offsetWidth;var f=AJS.getWindowSize();AJS.setLeft(this.g_window,((h-50-this.width)/2));var g=AJS.getScrollTop()+55;if(!this.center_win){AJS.setTop(this.g_window,g)}else{var e=((f.h-this.height)/2)+20+AJS.getScrollTop();if(e<0){e=0}if(g>e){e=g}AJS.setTop(this.g_window,e)}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(h,g,i){var f={type:"page",fullscreen:true,center_win:false};var j=new GB_Sets(f,h);j.addCallback(i);j.showSet(g-1);return false};GB_showImageSet=function(h,g,i){var f={type:"image",fullscreen:false,center_win:true,width:300,height:300};var j=new GB_Sets(f,h);j.addCallback(i);j.showSet(g-1);return false};GB_Sets=GB_Gallery.extend({init:function(d,c){this.parent(d);if(!this.img_next){this.img_next=this.root_dir+"next.gif"}if(!this.img_prev){this.img_prev=this.root_dir+"prev.gif"}this.current_set=c},showSet:function(d){this.current_index=d;var c=this.current_set[this.current_index];this.show(c.url);this._setCaption(c.caption);this.btn_prev=AJS.IMG({"class":"left",src:this.img_prev});this.btn_next=AJS.IMG({"class":"right",src:this.img_next});AJS.AEV(this.btn_prev,"click",AJS.$b(this.switchPrev,this));AJS.AEV(this.btn_next,"click",AJS.$b(this.switchNext,this));GB_STATUS=AJS.SPAN({"class":"GB_navStatus"});AJS.ACN(AJS.$("GB_middle"),this.btn_prev,GB_STATUS,this.btn_next);this.updateStatus()},updateStatus:function(){AJS.setHTML(GB_STATUS,(this.current_index+1)+" / "+this.current_set.length);if(this.current_index==0){AJS.addClass(this.btn_prev,"disabled")}else{AJS.removeClass(this.btn_prev,"disabled")}if(this.current_index==this.current_set.length-1){AJS.addClass(this.btn_next,"disabled")}else{AJS.removeClass(this.btn_next,"disabled")}},_setCaption:function(b){AJS.setHTML(AJS.$("GB_caption"),b)},updateFrame:function(){var b=this.current_set[this.current_index];this._setCaption(b.caption);this.url=b.url;this.startLoading()},switchPrev:function(){if(this.current_index!=0){this.current_index--;this.updateFrame();this.updateStatus()}},switchNext:function(){if(this.current_index!=this.current_set.length-1){this.current_index++;this.updateFrame();this.updateStatus()}}});AJS.AEV(window,"load",function(){AJS.preloadImages(GB_ROOT_DIR+"next.gif",GB_ROOT_DIR+"prev.gif")});GB_show=function(h,m,i,l,j){var n={caption:h,height:i||500,width:l||500,fullscreen:false,callback_fn:j};var k=new GB_Window(n);return k.show(m)};GB_showCenter=function(h,m,i,l,j){var n={caption:h,center_win:true,height:i||500,width:l||500,fullscreen:false,callback_fn:j};var k=new GB_Window(n);return k.show(m)};GB_showFullScreen=function(g,j,h){var f={caption:g,fullscreen:true,callback_fn:h};var i=new GB_Window(f);return i.show(j)};GB_Window=GreyBox.extend({init:function(b){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,b);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 f=AJS.TD({"class":"caption"},this.caption);var g=AJS.TD({"class":"close"});if(this.show_close_img){var h=AJS.IMG({src:this.img_close});var i=AJS.SPAN("Close");var j=AJS.DIV(h,i);AJS.AEV([h,i],"mouseover",function(){AJS.addClass(i,"on")});AJS.AEV([h,i],"mouseout",function(){AJS.removeClass(i,"on")});AJS.AEV([h,i],"mousedown",function(){AJS.addClass(i,"click")});AJS.AEV([h,i],"mouseup",function(){AJS.removeClass(i,"click")});AJS.AEV([h,i],"click",GB_hide);AJS.ACN(g,j)}tbody_header=AJS.TBODY();AJS.ACN(tbody_header,AJS.TR(f,g));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 b=AJS.getWindowSize();overlay_h=b.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 d=AJS.getWindowSize();AJS.setLeft(this.g_window,((d.w-this.width)/2)-13);if(!this.center_win){AJS.setTop(this.g_window,AJS.getScrollTop())}else{var c=((d.h-this.height)/2)-20+AJS.getScrollTop();if(c<0){c=0}AJS.setTop(this.g_window,c)}}});AJS.preloadImages(GB_ROOT_DIR+"w_close.gif",GB_ROOT_DIR+"header_bg.gif");script_loaded=true;
