function InfoLayer(B,A){this.name=B;this.self=A;document.onmousemove=this.getMousePos}InfoLayer.prototype.showLayer=function(C){var B=document.getElementById(C);this.closeAllLayers(B.id);if(document.all){var A=mouseY}else{var A=mouseY-window.pageYOffset}if(A>220){B.style.top="";B.style.bottom="0"}else{B.style.top="0";B.style.bottom=""}this.displayLayer(B.id)};InfoLayer.prototype.displayLayer=function(B){var A=document.getElementById(B);A.style.display="block";if(!document.all){A.style.opacity=1}else{A.filters.alpha.opacity=100}window.clearTimeout(A.timer)};InfoLayer.prototype.hideLayer=function(B){var A=document.getElementById(B);A.timer=window.setTimeout(this.self+".closeLayer('"+A.id+"')",500)};InfoLayer.prototype.closeLayer=function(B){var A=document.getElementById(B);if(!document.all){if(A.style.opacity==0){window.clearTimeout(A.timer);A.style.display="none"}else{A.style.opacity-=0.1;A.timer=window.setTimeout(this.self+".closeLayer('"+A.id+"')",50)}}else{if(A.filters.alpha.opacity==0){window.clearTimeout(A.timer);A.style.display="none"}else{A.filters.alpha.opacity-=10;A.timer=window.setTimeout(this.self+".closeLayer('"+A.id+"')",50)}}};InfoLayer.prototype.closeAllLayers=function(A){layers=document.getElementsByName("infoLayer");for(i=0;i<layers.length;i++){if(layers[i].id!=A){window.clearTimeout(layers[i].timer);layers[i].style.display="none"}}};InfoLayer.prototype.getMousePos=function(A){if(!A){A=window.event}if(document.all){mouseX=A.clientX;mouseY=A.clientY}else{mouseX=A.pageX;mouseY=A.pageY}};iL=new InfoLayer("infoLayer","iL");