http://code.jquery.com/jquery-latest.min.js
2. Add a HTML/JavaScript Gadget to your template and populate with the following JavaScript.
$(document).ready(function() {
var year = new Date();
var cr = "© " + year.getFullYear();
cr = cr + " <a href='mailto:email@address.com'>Name</a>";
var attr = $("#Attribution1 .widget-content");
attr.html(cr);
});
code formatted here