// Put things in here that are jquery-version-agnostic.
// 
jQuery(function($) {
  $(document).ready(function() {
    $('#comment_body').elastic();
    $('.elastic').elastic();

  $("a.link_in_boxy").click(function() {
  var link = $(this).attr('href');
  var title = $(this).attr('title');
    Boxy.load(link,
      {title: title,
       modal: false,
       draggable: true,
       clickToFront: true
    });
    return false;
  });
});
});

