function myClassSwitch(object, newClassName) {
	if (object) {
		object.className=newClassName;
	}
}