// JavaScript Document
window.onload = function() {
	var bilder = document.getElementById("Inhalt").getElementsByTagName("img");
	for(i=0; i<bilder.length; i++) {
		if(bilder[i].className) {
		bilder[i].onclick = function(){bildGross(this)};
		}
	}
	
	document.getElementById("inhaltsbild_gross").onclick = function() {
					document.getElementById("inhaltsbild_gross").style.display = "none";
					document.getElementById("inhaltsbild_gross_bild").style.display = "none";
	}
	document.getElementById("inhaltsbild_gross_bild").onclick = function() {
					document.getElementById("inhaltsbild_gross").style.display = "none";
					document.getElementById("inhaltsbild_gross_bild").style.display = "none";
	}
}
function hallo() {
	alert("hallo");
}
function bildGross(abcd) {
	var source = abcd.src;
	var breite = abcd.width;
	var hoehe = abcd.height;
	var hoehe2 = (400/breite)*hoehe;
	var bildkasten = document.getElementById("inhaltsbild_gross");
	bildkasten.style.display = "block";
	var BILD = document.getElementById("inhaltsbild_gross_bild");
	BILD.style.display = "block";
	BILD.src = source;
	var browserhoehe = document.documentElement.clientHeight;
	BILD.style.top = (browserhoehe-hoehe2)/2+"px";
}
