/* FONT SHIFT */

/* : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : function
- pass function ( [body copy id], [text class name], [toggle id], [show toggle] )
*/
function changeFont(copyId, textClass, toggleId, doWhat) {
	document.getElementById(copyId).className = textClass;
	
	if (toggleId) { document.getElementById(toggleId).style.display = doWhat; }
}


/* END FONT SHIFT */