function move_arrow(bool, td_id) {
	var arrow;
	if (bool) {
		if (arguments[2]) arrow=arguments[2];
			else arrow="images/" + "11" + td_id + ".png";
		document.getElementById(td_id).src = arrow;
	} else	document.getElementById(td_id).src = "images/00000.png";
}

