/* Sets text to the current year */

function currentyear(){
	var today = new Date();
	var year = today.getFullYear();
	document.write(year);
}
