<!--
	
function changeContent(id,shtml) {
   // Führt die HTML-Änderung in den Boxen durch, und highlighted die Images	
   if (document.getElementById || document.all) {
      var el = document.getElementById? document.getElementById(id): document.all[id];
      if (el && typeof el.innerHTML != "undefined") el.innerHTML = shtml;
   }
   
   return false;
}

function highlightReferenz(picture) {
	for (i = 1; i <= 3; i++) {
		document.images["button"+i].src = eval("button" + i + ".src");
	}
	
	// alert(picture);
	
	document.images[picture].src = eval(picture + "a.src");
}

function highlightCaseStudies(picture) {
	for (i = 1; i <= 5; i++) {
		document.images["nr"+i].src = eval("nr" + i + ".src");
	}
	
	// alert(picture);
	
	document.images[picture].src = eval(picture + "a.src");
}

// -->

