function Bildwechsel (id, Bildobjekt) {
	document.getElementById(id).src = Bildobjekt.src;
}

function getInnerWidth () {
	if (self.innerWidth) { 	// all except Explorer
		return self.innerWidth;
	} else if (document.documentElement && document.documentElement.clientHeight) { 	// Explorer 6 Strict Mode
		return document.documentElement.clientWidth;
	} else if (document.body) { // other Explorers
		return document.body.clientWidth;
	}
}