function switchClass(targetId, classN) {
	if (document.getElementById){
  		target = document.getElementById(targetId);
                target.className = classN;
	}

}