function copyrightYear() {
	var today = new Date(); // today
	var year = today.getFullYear(); // year
	return (year); //outputs year
}