$('#header').ready(function() {
  $('#welcome-message').load('/readers?whoami=true', function(response, status) {
    var welcome = $('#welcome-message');
    if (response != ' ') {
      welcome.prepend('Hello ');
      welcome.append('<a style="color: #996600; font-size:16px; font-weight:100;" href="/logout/"><br/>(LOG OUT)</a>');
    } else {
      welcome.append('<a style="color: #996600; font-size:16px; font-weight:bold;" href="/login/">You are not logged in.</a>');
    }
  });
});
