// JavaScript Document

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", "");
   }
   }
  }
 }
}
window.onload=startList;


// Sprachwechsel
function en() { 

	var vormals = document.URL; 
	var jetzt = vormals.replace(/_de/,"_en"); 
	window.location=jetzt; 
	}

function de() {

 var vormals = document.URL;
 var jetzt = vormals.replace(/_en/,"_de");
 window.location=jetzt;

	}
	
// Sprachwechsel für Flashgalerie-Seiten
function en_proj() { 

	var vormals = document.URL; 
	var jetzt = vormals.replace(/_deut/,"_engl"); 
	window.location=jetzt; 
	}
	function de_proj() {

 var vormals = document.URL;
 var jetzt = vormals.replace(/_engl/,"_deut");
 window.location=jetzt;

	}
