$(document).ready(function(){
  $("#email_me").click(function(){
    var email = ["m", "co", "l.", "mai", "@g", "williams", "r.", "j.", "a."];    
    $(this).attr("href", ("mailto:" + email.reverse().join("")));
  });
  
  date = new Date();
  $("#year").text(date.getFullYear());
});