// copyright Sitebuilders Finland Oy, 2008
// www.sitebuilders.fi  info*aat*sitebuilders.fi

var sLeft;var sTop;window.addEvent("domready",function(){var A=$$("#Gallery a");A.getElement("span").setStyles("opacity:0;visibility:hidden;");show(A[0],1,500,0);A[0].addClass("current");Gallery(A)});function Gallery(B){for(var A=0;A<B.length;A++){B[A].addEvent("mouseover",function(){sLeft=this.getElement("span").getStyle("left");sTop=this.getElement("span").getStyle("top");if(this.hasClass("current")!=true){removeCurrent();this.setStyles("z-index:100;");this.addClass("current");var D=1;var C=500;var E=this.getElement("span").getStyle("opacity");show(this,D,C,E)}});B[A].addEvent("mouseleave",function(){this.getElement("span").setStyles({visibility:"visible","z-index":50,top:sTop,left:sLeft})})}}function show(C,D,A,F){var G=C.getElement("span").getStyle("opacity");var B={duration:A,wait:false};var E=0;C.getElement("span").effect("opacity",B).start(F,D)}function display(C,D,A,E){var F=C.getElement("span").getStyle("opacity");var B={duration:A,wait:false};C.getElement("span").effect("opacity",B).start(F,D)}function removeCurrent(){var F=$$("#Gallery a");for(var A=0;A<F.length;A++){var C=F[A];C.getElement("span").setStyles({"z-index":50,left:sLeft,top:sTop});var D=C.hasClass("current");if(D==true){C.removeClass("current");var E=0;var B=500;show(C,0,B,1)}}};