
// JavaScript Bildwechsel

function changeImage (source,id) {
	var img = new Image()
	img.src = source;
	img.onload = function() {
		var target = document.getElementById(id);
		target.src = img.src;
		target.height = img.height;
		target.width = img.width;
	} 
}
