// JavaScript Document


//Wenn Website eingebette, dann Frame loswerden
if (top.frames.length!==0) { top.location=self.document.location }


window.onload = start;
function start () 
{
	for(i=0;i<document.links.length;i++) {
		var linkhref = document.links[i].href;
		
		var strTest = document.URL;
		
		var pos = linkhref.indexOf (strTest);
		
		if(pos>-1 && document.links[i].parentNode.nodeName=="LI" && strTest!="http://www.hausarztpraxis-schlosscenter.de/"){
			document.links[i].className ="currentPageLink";
		} 
		if(pos>-1 && document.links[i].parentNode.nodeName=="LI" && document.links[i]=="http://www.hausarztpraxis-schlosscenter.de/"){
			document.links[i].className ="currentPageLink";
		} 
	}
}
