function switchImage(suffix, switcherSuffix, image, total, display, nodisplay, currentClass, notCurrentClass, notCurrentColor) {
	for(i = 1; i <= total; i++) {
		if(i == image) {
			// image display: inline;
			document.getElementById(suffix + i).style.display = display;
			// switcher class="current"
			document.getElementById(switcherSuffix + i).className = currentClass;
		} else {
			// image display: none;
			document.getElementById(suffix + i).style.display = nodisplay;
			// switcher class="..."
			document.getElementById(switcherSuffix + i).style.color = notCurrentColor;
			document.getElementById(switcherSuffix + i).className = notCurrentClass;
		}
	}
}