function setSec(){
	var cursec = section;
	if(cursec=="Home"){
		document.getElementById("first").id = "aHome";
	}
	if(cursec=="Kontakt" || cursec=="Contact"){
		document.getElementById("last").id = "aKontakt";
	}
	if(cursec=="Unternehmen" || cursec=="Company"){
		document.getElementById("Unternehmen").id = "aUnternehmen";
	}	
	if(cursec=="Philosophie" || cursec=="Philosophy"){
		document.getElementById("Philosophie").id = "aPhilosophie";
	}	
	if(cursec=="Dienstleistungen" || cursec=="Services"){
		document.getElementById("Dienstleistungen").id = "aDienstleistungen";
	}				
}


startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
 setSec();
}
window.onload=startList;


/*additions cms*/
self.name = "page";

function validate(){
	var ref = document.forms['contactform'].elements;
	var theRegEx_notValid = new RegExp("(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)", "gi");
	var theRegEx_isValid = new RegExp("^.+\@[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})$","");
	if (!theRegEx_isValid.test( ref.email.value ))	{	
		alert("Bitte geben Sie eine gültige E-Mail-Adresse an.\nPlease enter a valid eMail address.");
		return false;
	}
	
	return true;
	
}
