// tauscht ein Bild aus (nach newImg)
function swapImg( id, newImg ) {
	
	temp = document.getElementById( id );
	
	if ( temp ) {
		temp.src = newImg;
  	}
	
}
