window.onload = writeCopyRight;
function writeCopyRight(){
	copyright=new Date();
	yYear=copyright.getFullYear();
	document.getElementById("copyright").innerHTML = "Copyright © "+ yYear + " Wright of Thomasville - All Rights Reserved.";
}
