/* FONT SHIFT */

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


/* END FONT SHIFT */