/**
 * Bild austauschen
 */
function changeImage(imgId, imgSrc){
	document.getElementById(imgId).src = imgSrc;
}