function swapClass(obj, cls)
{
	var t = document.getElementById(obj);
	if (t == null) return;
	t.className = cls;
}

