mapID="karteBeo";

window.onload=function(){
	windowNameDefault="campingbodefault"
	setWindow();
	outLinks();
	if(document.getElementById){if(document.getElementById(mapID)){
		oInfoPanel=libDhtml.domElementPlus("li",document.getElementById(mapID));oInfoPanel.className="h3";
		cMapLiHTML=document.getElementById(mapID).getElementsByTagName("LI");cMapLocations=[];
		for(n=0;n<cMapLiHTML.length;n++){
			if(cMapLiHTML[n].hasChildNodes()){
				if(cMapLiHTML[n].childNodes[0]){
					if(cMapLiHTML[n].childNodes[0].nodeType!="3"){
						cMapLocations[n]=new eObj(cMapLiHTML[n].childNodes[0],true);
						cMapLiHTML[n].childNodes[0].title=cMapLocations[n].text?cMapLocations[n].text:cMapLocations[n].innerHTML;
						cMapLocations[n].eventlistenerAdd("mouseover",showMapInfo);
						cMapLocations[n].eventlistenerAdd("mouseout",showMapInfo);
					}
				}
			}
		}
	}}
}

showMapInfo=function(e){
	if(oInfoPanel){
		e=getEvent(e)
		oLink=eventTarget(e);
		oInfoPanel.innerHTML=e.type.toLowerCase()=="mouseover"?(oLink.text?oLink.text:oLink.innerHTML):"";
	}
	return false;
}
