function changeClass(itemId) {
	if (document.getElementById) {
		var item2Chg = document.getElementById(itemId);
	} else if (document.all) {
		var item2Chg = document.all[itemId];
	}
	item2Chg.style.color = "#CC3300";
}