function setTextSize() {
	//alert([Cookie.get("NewtohollandTextSize"),document.cookie])
	if (Cookie.get("NewtohollandTextSize") == "large") {
		$(document.body).addClassName("large")
	}

	Event.observe(
		$('enlarge'),
		'click',
		function() {
			if ($(document.body).hasClassName("large")) {
				$(document.body).removeClassName("large")
				Cookie.erase("NewtohollandTextSize")
			} else {
				$(document.body).addClassName("large")
				Cookie.set("NewtohollandTextSize", "large")
			}
		}
	);
}

