function swapIt(id, newclass) { 
// free to use as long as this copyright notice remains intact
// copyright eddie traversa 2002 http://dhtmlnirvana.com/
// etraversa@dhtmlnirvana.com
	if (document.getElementById) {
	document.getElementById(id).className = newclass;
   }
}


