/* used on all pages */
$(function() {
  
  /* create mail links */
  $(".mailto").click(function() {
    location.href = "mailto:" + $(this).text().replace("(at)","@");
    return false;
  });
});
