/*
 * Populates the year value for footers that contain the copyright date.
 * @pre Footer contains: <span id="footerYear"></span>
*/
document.observe("dom:loaded", function() {
	if ($('footerYear')) {
		$('footerYear').innerHTML = (new Date()).getFullYear() + "&nbsp;";
	}
});
