function changeButton(buttonRow, thisButton, buttonCount) {
	buttonId = 0;
	for (i=1; i <= buttonCount; i++) {
		buttonId = buttonRow + i;
		document.getElementById(buttonId).className="imgmenuoff";
	}
	document.getElementById(thisButton).className="imgmenuon";
}

