// JavaScript Document

function year()
{
	var d = new Date()
	var y = d.getFullYear()
	document.write('<span id="footer">');
	document.write('&copy; Ceramo ');
	document.write(y);
	document.write('</span>');
}
