var textColor = new Array();

textColor[0] = '#00f0ff';
textColor[1] = '#00ff1f';
textColor[2] = '#e4ff00';
textColor[3] = '#FFFFFF';


function changeTxt(whichColor){
		document.body.style.color = textColor[whichColor];
}

