$(function() {
  $(document).ready(function () {

    $.get('/ayn/login/?next_url=' + $(this).context.location.pathname, null,
     function(html, status){
       $("#login").html(html);
     },
     "html");
  });
});

