function changeCaps() {
	if (document.body.style.textTransform == 'uppercase') {
		document.body.style.textTransform = 'none';
	} else {
		document.body.style.textTransform = 'uppercase';
	}
	return false;
}