var now = new Date();

var year = now.getFullYear();

// Inject the date when the body is loaded in the element of id 'day'
$(function()
{
	$('#year').text(year);
});
