$(document).ready (function(){
	$("#largetext").css("display","block");
	$("#largetext").click (function(){
	$("#largetext,#header,#nav").hide(400);
	$("#centercol").css({width:"800px", fontSize:"12pt", border: "0",background:"white" });
	$("#centercol").css("margin","0 auto");
	$("#smalltext").css("display","block");
	$("body").css("backgroundColor","#eeeeee");
	$("#smalltext").click (function(){
		window.location.reload();
		});
	});
function ieprintprep(){
$("#centercol").css("width","640");
$("body").css("backgroundColor","white");
$("#smalltext").css("display","none");
}
window.onbeforeprint=ieprintprep
});
