function swapClass(id, toClass)
	{
		button = document.getElementById(id);
		button.className = toClass;
		button.style.cursor = "hand";
		button.style.cursor = "pointer";
	}