/*Bildsource Wechsel*/
function changeimg(imgID, newSRC)
{
	var img = document.getElementById(imgID);
	img.src = newSRC;
}
