// change_img():
// wechselt das Bild aus, dass mit id definiert ist.
// img ist die url des neuen Bildes

if(keep_highlight == null){
	var keep_highlight = 0;
}

function change_img(id, img){
	if(keep_highlight == 0){
		if(document.getElementById(id) != null){
			var el = document.getElementById(id);
			el.src = img;		
		}
	}
}

