/* (c) Scientec Internet Applications + Media GmbH - www.scientec.de */

if(document.getElementById("karte") && document.getElementById("links") && document.getElementById("rechts")){
	for(var i=0; i<document.getElementById("karte").getElementsByTagName("a").length;i++){
	  var thisA=document.getElementById("karte").getElementsByTagName("a")[i];
	  if(thisA.id){
		thisA.onmouseover=function(){
		  this.nextSibling.className="m1";
		  document.getElementById(this.id.replace(/d/,"a")).className="over";
		  showThumb(this.id.replace(/d/,""));
		}
		thisA.onmouseout=function(){
		  this.nextSibling.className="m0";
		  document.getElementById(this.id.replace(/d/,"a")).className="out";
		  hideThumb();
		}
		thisA.onclick=function(){
		  var HREF=escape(this.href).replace(/\%25/gi,"%").replace(/\%3A/gi,":");
		  link=window.open(HREF,"link",'');
		  link.focus();
		  return false;
		}
	  }
	}
	
	for(var j=0; j<document.getElementById("inhalt").getElementsByTagName("a").length;j++){
	  var thisA=document.getElementById("inhalt").getElementsByTagName("a")[j];
	  if(thisA.id){
		thisA.onmouseover=function(){
		  document.getElementById(this.id.replace(/a/,"d")).nextSibling.className="m1";
		  showThumb(this.id.replace(/a/,""));
		}
		thisA.onmouseout=function(){
		  document.getElementById(this.id.replace(/a/,"d")).nextSibling.className="m0";
		  hideThumb();
		}
		thisA.onclick=function(){
		  var HREF=escape(this.href).replace(/\%25/gi,"%").replace(/\%3A/gi,":");
		  link=window.open(HREF,"link",'');
		  link.focus();
		  return false;
		}
	  }
	}
}

function showThumb(id){
  var path="http://www.hamburg-intern.de/onTEAM/medien/vorschau/"+id.substring(id.length-2,id.length)+"/"+id+".jpg";
  document.getElementById("preview").style.backgroundImage="url("+path+")";
  document.getElementById("preview").style.display="block";
}
function hideThumb(){
  document.getElementById("preview").style.backgroundImage="";
  document.getElementById("preview").style.display="none";
}
